Spring+SOAP+JAXB+XSDを使って石鹸アプリを開発しています
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 エンベロープ ヘッダーにあることに注意してください。これを追加する方法を教えてください。SOAP UI を使用して SOAP をテストしていますが、アサーションを使用して要求ヘッダーと応答ヘッダーを検証できません。
お知らせ下さい
ありがとう