我必须使用Java开发一个使用JSCH(librairie for SSH)的Web服务。 但是我在调用这个Web服务时遇到错误:
faultcode: soapenv:Server.userException, faultstring: java.lang.reflect.InvocationTargetException
我的Java代码效果很好,但当我把它称为Web服务时,我有这个错误。
这是我的Java代码:
import java.io.InputStream;
import com.jcraft.jsch.Channel;
import com.jcraft.jsch.ChannelExec;
import com.jcraft.jsch.JSch;
import com.jcraft.jsch.Session;
public class SSHTest {
public static void main(String[] args) {
String cmd="pwd";
System.out.println(ssh(cmd));
}
public static String ssh (String command1)
{
String host="10.0.0.20";
String user="student";
String password="xxx";
String res="";
try{
java.util.Properties config = new java.util.Properties();
config.put("StrictHostKeyChecking", "no");
JSch jsch = new JSch();
Session session=jsch.getSession(user, host, 22);
session.setPassword(password);
session.setConfig(config);
session.connect(); // session.connect(30000) : making a connection with timeout.
Channel channel=session.openChannel("exec");
((ChannelExec)channel).setCommand(command1);
channel.setInputStream(null);
((ChannelExec)channel).setErrStream(System.err);
InputStream in=channel.getInputStream();
channel.connect();
byte[] tmp=new byte[1024];
while(true){
while(in.available()>0){
int i=in.read(tmp, 0, 1024);
if(i<0)break;
res += new String(tmp, 0, i);
}
if(channel.isClosed()){
break;
}
try{Thread.sleep(1000);}catch(Exception ee){}
}
channel.disconnect();
session.disconnect();
}catch(Exception e){
e.printStackTrace();
}
return res;
}
}