我想用java中的apache轴连接到web服务,我有一些错误的参数,但我不知道哪个:
import org.apache.axis.client.Call;
import org.apache.axis.client.Service;
import javax.xml.namespace.QName;
public class Test_Web_Service
{
public static void main(String [] args) throws Exception {
try {
String endpoint = "http://www.w3schools.com/webservices/tempconvert.asmx";
Service service = new Service();
Call call= (Call) service.createCall();
call.setProperty( Call.SOAPACTION_USE_PROPERTY, new Boolean( true ) );
call.setProperty( Call.SOAPACTION_URI_PROPERTY, "http://tempuri.org/CelsiusToFahrenheit");
call.setTargetEndpointAddress( new java.net.URL(endpoint) );
call.setOperationName(new QName("http://tempuri.org/CelsiusToFahrenheit","CelsiusToFahrenheit"));
String ret = (String) call.invoke( new Object[] {"20"} );
System.out.println("Sent '20', got '" + ret + "'");
} catch (Exception e) {
System.err.println(e.toString());
}
}
}
网络服务链接:http://www.w3schools.com/webservices/tempconvert.asmx
在ret变量中,我得到消息Error。这是因为我在QName中有错误的参数。
答案 0 :(得分:1)
这是由于客户端代码和服务之间的阻塞不匹配。服务器无法解码您的请求,并继续使用默认值进行处理
你可以试试这个
call.setOperationName(new QName("http://tempuri.org/","CelsiusToFahrenheit"));
call.addParameter(new QName("http://tempuri.org/","Celsius"),XMLType.XSD_STRING,ParameterMode.IN);
String ret = (String) call.invoke( new Object[] {"20"} );
请注意namespaceURI的变化。