8

这两条肥皂信息有效吗?不同的部分是命名空间属性 xmlns="http://www.sigvalue.com/acc"。第一个soap是一个示例,第二个由java代码生成以制作相同的soap消息。

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
  <GetNGPList xmlns="http://www.sigvalue.com/acc">
  <UserData>
    <senderId>string</senderId>
    <channelId>string</channelId>
    <timeStamp>dateTime</timeStamp>
  </UserData>
  <zipCode>string</zipCode>
</GetNGPList>
 </soap:Body>
</soap:Envelope>

.

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetNGPList>
  <UserData xmlns="http://www.sigvalue.com/acc">
    <senderId>string</senderId>
    <channelId>string</channelId>
    <timeStamp>dateTime</timeStamp>
  </UserData xmlns="http://www.sigvalue.com/acc">
  <zipCode>string</zipCode>
</GetNGPList>
</soap:Body>
</soap:Envelope>

如果第二个肥皂无效,我怎样才能使它与第一个相同?GetNGPList.addNamespaceDeclaration("xmlns"," http://www.sigvalue.com/acc "); 这条线没有按预期工作。这是JAVA代码:

    MessageFactory messageFactory = MessageFactory.newInstance();
    SOAPMessage soapMessage = messageFactory.createMessage();

    SOAPPart soapPart = soapMessage.getSOAPPart();


    // SOAP Envelope
    SOAPEnvelope envelope = soapPart.getEnvelope();
    envelope.addNamespaceDeclaration("xsi", gXSIServerURI);
    envelope.addNamespaceDeclaration("xsd", gXSDServerURI);

        // SOAP Body
    SOAPBody soapBody = envelope.getBody();
    SOAPElement GetNGPList =  soapBody.addChildElement("GetNGPList");
    GetNGPList.addNamespaceDeclaration("xmlns","http://www.sigvalue.com/acc");

    SOAPElement UserData = GetNGPList.addChildElement("UserData");
    SOAPElement senderId = UserData.addChildElement("senderId");
    SOAPElement channelId = UserData.addChildElement("channelId");
    SOAPElement timeStamp = UserData.addChildElement("timeStamp");
    senderId.addTextNode("string");
    channelId.addTextNode("string");
    timeStamp.addTextNode("dateTime");

    SOAPElement zipCode = GetNGPList.addChildElement("zipCode");
    zipCode.addTextNode("string"); 


    MimeHeaders headers = soapMessage.getMimeHeaders();
    headers.addHeader("SOAPAction",  "sample");

    soapMessage.saveChanges();

    /* Print the request message */
    //System.out.print("Request SOAP Message = ");
    soapMessage.writeTo(System.out);
4

2 回答 2

11

要将命名空间设置为默认命名空间,只需使用空字符串 ( "") 作为前缀名称

SOAPElement GetNGPList =
       soapBody.addChildElement("GetNGPList", "", "http://www.sigvalue.com/acc");
                                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

上面的代码将适用xmlns="http://www.sigvalue.com/acc"GetNGPList.

你的代码,改编:

// SOAP Body
SOAPBody soapBody = envelope.getBody();
SOAPElement GetNGPList =
       soapBody.addChildElement("GetNGPList", "", "http://www.sigvalue.com/acc");

SOAPElement UserData = GetNGPList.addChildElement("UserData");
...

像往常一样,当您在 中省略命名空间前缀声明时addChildElement(),子节点会从其父节点继承其命名空间。

上面的代码将生成您需要的内容:

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
                   xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <SOAP-ENV:Header />
    <SOAP-ENV:Body>
        <GetNGPList xmlns="http://www.sigvalue.com/acc">
            <UserData>
                <senderId>string</senderId>
...
于 2013-07-10T18:16:42.127 回答
0

您可以删除此行:

GetNGPList.addNamespaceDeclaration("xmlns","http://www.sigvalue.com/acc");

并添加这一行

envelope.addNamespaceDeclaration("","http://www.sigvalue.com/acc");

几点注意事项:

  • 我建议使用框架来处理 Web 服务,Apache CXF 可以为你做很多棘手的工作: http: //cxf.apache.org/

  • 确保遵循正常的命名标准,这样更容易阅读代码。变量GetNGPList应该是getNGPList

于 2013-07-10T17:59:57.057 回答