我正在使用Spring + SOAP + JAXB + XSD开发soap应用程序
我想自定义soap标题
我现有的回复
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header/>
<SOAP-ENV:Body>
<ns2:StudentResponse xmlns:ns2="http://studentinfo.com/">
</ns2:StudentResponse>
我的预期回复
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:stu="http://studentinfo.com/">
<SOAP-ENV:Header/>
<SOAP-ENV:Body>
<ns2:StudentResponse xmlns:ns2="http://studentinfo.com/">
</ns2:StudentResponse>
请注意 xmlns:stu =“http://studentinfo.com/”位于我的soap envelop标题中,您能否建议如何添加?我正在使用SOAP UI测试soap,它无法使用断言验证请求和响应头。
请告知
由于