我使用wsimport.exe为soap客户端生成了类。
我的请求应该是
POST /posaservice/servicemanager.asmx HTTP/1.1
Host: ****
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.pininteract.com/BalanceInquiry"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Header>
<AuthenticationHeader xmlns="http://www.pininteract.com">
<userId>VALUE</userId>
<password>VALUE</password>
</AuthenticationHeader>
</soap:Header>
<soap:Body>
<BalanceInquiry xmlns="http://www.pininteract.com" />
</soap:Body>
</soap:Envelope>
但我不知道如何将参数传递给Authentication Header部分。 目前我的代码看起来像
val client = new ServiceManager().getServiceManagerSoap()
var res = client.balanceInquiry()
println(res)
我生成了其他类的AuthenticationHeader,但我不知道如何使用它。
答案 0 :(得分:0)
实际上经过stackoverflow搜索后,我找到了解决问题的方法 How do I add a SOAP Header using Java JAX-WS
答案 1 :(得分:0)
我找不到比使用JAX-WS更好的解决方案。
您可以使用此方法发送任何标头。
wsimport -keep -verbose -XadditionalHeaders https:// yourWebService? WSDL
当您使用“XadditionalHeaders”生成WebService客户端时,这将生成Stub / Port方法,其中Header作为方法参数之一,您可以像任何参数一样进行设置。
Info sysInfoOne = siOne.doGetSystemInfo(YourParam); 变成
Info sysInfoOne = siOne.doGetSystemInfo(YourParam,YourAnyTypeOfHeader); 参考 - JAXWS规范。
这就是开发人员喜欢做的事情,而不是编辑/发送XML。
我尝试的其他方法是 - 添加JAX-WS客户端处理程序,并使用SAAJ客户端,两者都有效。