在用java发送给webservice服务器的时候报如下错误:
AxisFault
faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Client
faultSubcode:
faultString: 服务器未能识别 HTTP 头 SOAPAction 的值: 。
faultActor:
faultNode:
faultDetail:
{http://xml.apache.org/axis/}stackTrace:服务器未能识别 HTTP 头 SOAPAction 的值: 。
解决办法:
字符串“http://tempuri.org/UserRegistration”是在WSDL文件中有个节点
wsdl:operation name="UserRegistration">
<soap:operation soapAction="http://tempuri.org/UserRegistration" style="document" />
对照自己的WSDL修改一下。
AxisFault
faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Client
faultSubcode:
faultString: 服务器未能识别 HTTP 头 SOAPAction 的值: 。
faultActor:
faultNode:
faultDetail:
{http://xml.apache.org/axis/}stackTrace:服务器未能识别 HTTP 头 SOAPAction 的值: 。
解决办法:
Call call = (Call)service.createCall();
call.setSOAPActionURI("http://tempuri.org/UserRegistration");
字符串“http://tempuri.org/UserRegistration”是在WSDL文件中有个节点
wsdl:operation name="UserRegistration">
<soap:operation soapAction="http://tempuri.org/UserRegistration" style="document" />
对照自己的WSDL修改一下。