我正在尝试使用从WSDL文件生成的java客户端调用Web服务。需要在<soap:Header>
内添加<soap:Envelope>
。
当我在eclipse中生成客户端并调用该服务时,请求消息是,
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:tem="http://tempuri.org/">
<soap:Body>
<tem:GetEntityXml>
<!--Optional:-->
<tem:entityGuid>f949d2fe-d5a2-4115-a920-e85343adcf1a</tem:entityGuid>
</tem:GetEntityXml>
</soap:Body>
</soap:Envelope>
我想这样,
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:tem="http://tempuri.org/">
<soap:Header xmlns:wsa="http://www.w3.org/2005/08/addressing">
<wsa:Action>http://tempuri.org/xxx/HelloWorld</wsa:Action><wsa:To>https://xxx/yyy.svc</wsa:To>
</soap:Header>
<soap:Body>
<tem:GetEntityXml>
<!--Optional:-->
<tem:entityGuid>f949d2fe-d5a2-4115-a920-e85343adcf1a</tem:entityGuid>
</tem:GetEntityXml>
</soap:Body>
</soap:Envelope>
我尝试在_call.invoke()
方法之前修改SOAP信封。
org.apache.axis.message.SOAPHeaderElement she=new org.apache.axis.message.SOAPHeaderElement("http://www.w3.org/2005/08/addressing",null);
she.addNamespaceDeclaration("wsa","http://www.w3.org/2005/08/addressing");
SOAPElement node=she.addChildElement("Action","wsa");
node.addTextNode("http://tempuri.org/xxx/HelloWorld");
System.out.println("2");
SOAPElement node2=she.addChildElement("To","wsa");
node2.addTextNode("https://xxx/yyy.svc");
_call.getMessageContext().getCurrentMessage().getSOAPEnvelope().addHeader(she);;
System.out.println(she);
_call.addHeader(she);
由于我对网络服务很新,所以每个建议都是最受欢迎的。
请帮我根据需要创建和设置标题。