1

使用 SoapUI,我构建了以下 XML 信封并将其封装在一个字符串中。

ProcessJournal 是一个没有参数的方法,它返回一个字符串。

String soapText = "<Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:upd=\"http://webservices.vm.vmc/UpdateCMA/\">" +
                    "<Header/>" +
                     "<Body>" +
                       "<upd:ProcessJournal/>" +
                     "</Body>" +
                  "</Envelope>";

现在...我只想调用上面定义的 Web 服务。并找到了一些示例代码

                // Create SoapMessage
                MessageFactory msgFactory     = MessageFactory.newInstance();
                SOAPMessage message           = msgFactory.createMessage();
                SOAPPart soapPart             = message.getSOAPPart();

                // Load the SOAP text into a stream source
                byte[] buffer                 = soapText.getBytes();
                ByteArrayInputStream stream   = new ByteArrayInputStream(buffer);
                StreamSource source           = new StreamSource(stream);

                // Set contents of message 
                soapPart.setContent(source);

                // -- DONE
                message.writeTo(System.out);


                //Try accessing the SOAPBody
                SOAPBody soapBody = message.getSOAPBody();

问题是,在 message.getSOAPBody();,我得到一个错误

XML-22103: (Fatal Error) DOMResult can not be this kind of node.
Apr 16, 2013 12:05:06 PM com.sun.xml.internal.messaging.saaj.soap.EnvelopeFactory createEnvelope
SEVERE: SAAJ0511: Unable to create envelope from given source

我找到的所有各种示例在执行 getSOAPBody() 时最终都会出现相同类型的错误。

4

2 回答 2

1

看起来问题出在您的 soapText 中的命名空间前缀。我能够毫无错误地执行您的示例,并且无需手动设置任何 TransformerFactory 只需修改您的 soapText 如下:

String soapText = 
     "<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:upd=\"http://webservices.vm.vmc/UpdateCMA/\">" +
        "<soapenv:Header/>" +
        "<soapenv:Body>" +
          "<upd:ProcessJournal/>" +
        "</soapenv:Body>" +
     "</soapenv:Envelope>";

请注意在所有 Soap 元素中添加的soapenv:前缀与您的 Soap 服务命名空间中的upd前缀形成对比。

于 2014-01-24T16:00:59.057 回答
1

我不知道你是否找到了解决这个问题的方法。我最近刚刚看到完全相同的错误,这是由于未设置 TransformerFactory。

我使用了来自 Saxon 库的 TransformerFactory - 可以在此处获得它的 jar 。

然后我设置了一个引用 Saxon TransformerFactory 的系统属性:

System.setProperty("javax.xml.transform.TransformerFactory",    
        "net.sf.saxon.TransformerFactoryImpl");

当我重新运行我的代码时,错误就消失了。

以上只是设置 TransformerFactory 的一种方式。我在这里找到了许多其他方法可以做到这一点:stackoverflow.com/questions/11314604/

于 2013-05-10T08:01:47.310 回答