当我通过JAX-WS创建soap请求时,生成的XML字符串如下所示。
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
Some header infos....
</SOAP-ENV:Header>
<soap:Body>
Nice body part.
</soap:Body>
</soap:Envelope>
看起来很奇怪因为Header标签与其他标签不同。 这是正确的JAX-WS ??