如何使用Java JAX-RPC添加SOAP Header?
作者:互联网
我有这样的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:
我真的被困在这里了.亲切的,有人帮帮我.
解决方法:
我做了很多研究,发现了我的错误.我没有传递Security名称空间URL.所以代替:
Name headerContextName = soapEnvelope.createName("MFprofileMnt", "ch","");
我把它作为:
Name headerContextName = soapEnvelope.createName("MFprofileMnt", "ch",SOAP_Security_Namespace_URL);
瞧它开始工作,没有名称空间错误.希望这有助于遇到类似问题的其他人.
标签:java,web-services,jax-rpc 来源: https://codeday.me/bug/20190629/1329790.html