gpt4 book ai didi

java - 从 Java 中的 SOAP 消息中获取字符串

转载 作者:数据小太阳 更新时间:2023-10-29 01:54:48 25 4
gpt4 key购买 nike

如何从 SOAP 消息中获取特定部分并获取它们的值?

例如,如果 .wsdl 消息是这样的:

<wsdl:message name="theRequest">
<wsdl:part name="username" type="xsd:string"/>
<wsdl:part name="password" type="xsd:string"/>
<wsdl:part name="someMsg" type="xsd:string"/>
</wsdl:message>

我想获取 someMsg 值并将其保存到一个字符串变量中。

我在看这个:Get SoapBody Element value ,但真正了解的不多。如果有人可以提供解释或任何类型的指南,我们将不胜感激!

最佳答案

创建客户端来处理 SOAP 消息和 web 服务 的正常方法是;从 .xsd 模式生成 bean,从 .wsdl 生成所有 stub 以调用 web 服务(在本例中为 Java 例如可以使用 JAXWSJAXB)。

另请注意,通常 .wsdl 定义服务,但如果您询问如何解析请求,最好显示 .xsd

当然,您可以直接调用 web 服务apache http 客户端 左右进行 POST,然后处理响应...但请注意,这不是推荐的处理来自 SOAP Web 服务的大量请求和响应的方法,因为这样您就必须手动解析每个响应才能开展业务。假设这是你的情况,你可以做类似的事情来处理你的 SOAP 消息(我使用 javax.xml.soap.SOAPMessage 因为你似乎想使用这个根据您在问题中放置的链接进行分类)。

例如,如果您收到如下 SOAP 消息:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<theRequest>
<username>user</username>
<password>password</password>
<someMsg>sooomeMessage</someMsg>
</theRequest>
</soapenv:Body>
</soapenv:Envelope>

你可以这样做:

import java.io.FileInputStream;
import javax.xml.soap.MessageFactory;
import javax.xml.soap.MimeHeaders;
import javax.xml.soap.SOAPBody;
import javax.xml.soap.SOAPMessage;

import org.w3c.dom.Node;
import org.w3c.dom.NodeList;

public class SOAPMessageTest {

public static void main(String[] args) throws Exception {

// create message factory
MessageFactory mf = MessageFactory.newInstance();
// headers for a SOAP message
MimeHeaders header = new MimeHeaders();
header.addHeader("Content-Type", "text/xml");

// inputStream with your SOAP content... for the
// test I use a fileInputStream pointing to a file
// which contains the request showed below
FileInputStream fis = new FileInputStream("/path/yourSOAPReq.xml");

// create the SOAPMessage
SOAPMessage soapMessage = mf.createMessage(header,fis);
// get the body
SOAPBody soapBody = soapMessage.getSOAPBody();
// find your node based on tag name
NodeList nodes = soapBody.getElementsByTagName("someMsg");

// check if the node exists and get the value
String someMsgContent = null;
Node node = nodes.item(0);
someMsgContent = node != null ? node.getTextContent() : "";

System.out.println(someMsgContent);
}

}

根据评论进行编辑:

它在 Java 8 中也适用于我,现在我唯一的猜测是 FileInputStream 发生了一些事情。您能否尝试使用相同的代码,但从 String 而不是 File 获取请求。

import java.io.ByteArrayInputStream;
import java.io.InputStream;

import javax.xml.soap.MessageFactory;
import javax.xml.soap.MimeHeaders;
import javax.xml.soap.SOAPBody;
import javax.xml.soap.SOAPMessage;

import org.w3c.dom.Node;
import org.w3c.dom.NodeList;

public class SOAPMessageTest {

public static void main(String[] args) throws Exception {

// create message factory
MessageFactory mf = MessageFactory.newInstance();
// headers for a SOAP message
MimeHeaders header = new MimeHeaders();
header.addHeader("Content-Type", "text/xml");

String request = "<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\">"+
"<soapenv:Body>"+
"<theRequest>"+
"<username>user</username>"+
"<password>password</password>"+
"<someMsg>sooomeMessage</someMsg>"+
"</theRequest>"+
"</soapenv:Body>"+
"</soapenv:Envelope>";
InputStream is = new ByteArrayInputStream(request.getBytes());

// create the SOAPMessage
SOAPMessage soapMessage = mf.createMessage(header,is);
// get the body
SOAPBody soapBody = soapMessage.getSOAPBody();
// find your node based on tag name
NodeList nodes = soapBody.getElementsByTagName("someMsg");
System.out.println(nodes.getClass().getName());
// check if the node exists and get the value
String someMsgContent = null;
Node node = nodes.item(0);
someMsgContent = node != null ? node.getTextContent() : "";

System.out.println(someMsgContent);
}
}

希望对你有帮助

关于java - 从 Java 中的 SOAP 消息中获取字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37349144/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com