私はSOAPサービスを開発しています。私はtomcatで正常に実行します。しかし、weblogicにデプロイすると、エラーが発生しました。私は、ヘッダからWebサービスへのユーザー名とパスワードを送信していますが、エラーは以下のように発生します。javax.xml.soap.SOAPException:ヘッダーの子要素 'username'は、名前空間が有効である必要があります
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:vw="http://vw.com/">
<soapenv:Header>
<username>operator</username>
<pass>xxxxxx</pass>
</soapenv:Header>
<soapenv:Body>
<vw:createParams>
<!--Optional:-->
<arg0>app1</arg0>
<!--Optional:-->
<arg1>All</arg1>
</vw:createParams>
</soapenv:Body>
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
<ns0:Fault xmlns:ns0="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ns1="http://www.w3.org/2003/05/soap-envelope">
<faultcode>ns0:Server</faultcode>
<faultstring>javax.xml.soap.SOAPException: Header child element 'username' must be namespace qualified!</faultstring>
</ns0:Fault>
</S:Body>
</S:Envelope>
任意のアイデアを?