4

私はこのようなSOAPリクエストを持っています:

    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ch="urn://mfots.com/xmlmessaging/CH" xmlns:oas="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
<soapenv:Header>
<ch:MFprofileMnt>
<ch:myID>1458</ch:myID>
<ch:bigID>raptool</ch:bigID>
<ch:matID>5689</ch:matID>
</ch:MFprofileMnt>

今、私は次のようにJavaでリクエストを作成しました:

        Name headerContextName = soapEnvelope.createName("MFprofileMnt", "ch","");
        SOAPHeaderElement soapHeaderElement = soapHeader.addHeaderElement(headerContextName);
        // mustUnderstand attribute is used to indicate
        // whether the header entry is mandatory or optional for the
        // recipient to process.
        soapHeaderElement.setMustUnderstand(true);
        //Now set the attribute children
        // create the first child element and set the value
        SOAPElement element1 = soapHeaderElement.addChildElement("myID", "ch");
        element1.setValue("1458");
        //create the second child element and set the value
        SOAPElement element2 = soapHeaderElement.addChildElement("bigID", "ch");
        element2.setValue("raptool");
        //create the third child element and set the value
        SOAPElement element3 = soapHeaderElement.addChildElement("matID", "ch");
        element3.setValue("5689");

ただし、プログラムを実行すると、次のエラーが発生し続けます。

org.w3c.dom.DOMException: NAMESPACE_ERR: An attempt is made to create or change an object in a way which is incorrect with regard to namespaces.
faultActor: null
faultDetail:

私は本当にここで立ち往生しています。親切に、誰かがここで私を助けてくれます。

4

1 に答える 1

3

私はそれについて多くの調査を行い、私の間違いを発見しました。セキュリティ名前空間の URL を渡していませんでした。代わりに:

Name headerContextName = soapEnvelope.createName("MFprofileMnt", "ch","");

私はそれを次のように与えました:

Name headerContextName = soapEnvelope.createName("MFprofileMnt", "ch",SOAP_Security_Namespace_URL);

そして出来上がり、動作を開始し、名前空間エラーはありませんでした。これが、同様の問題に遭遇した他の人に役立つことを願っています。

于 2012-12-27T10:03:51.857 に答える