我们了解您的问题归结为如何从Java调用SOAP(JAX-WS)Web服务并获取其返回对象。在这种情况下,您有两种可能的方法:
- 通过生成Java类
wsimport
并使用它们;要么
- 创建一个SOAP客户端,该客户端:
- 将服务的参数序列化为XML;
- 通过HTTP操作调用Web方法;和
- 将返回的XML响应解析回一个对象。
关于第一种方法(使用wsimport
):
我看到您已经拥有服务(实体或其他)业务类,并且事实是wsimport
生成了一组全新的类(某种程度上是您已经拥有的类的副本)。
但是,在这种情况下,恐怕您只能:
- 调整(编辑)
wsimport
生成的代码以使其使用您的业务类(这很困难,而且不值得这样做-每次WSDL更改时都要记住,您必须重新生成和重新适应代码);要么
- 放弃并使用
wsimport
生成的类。(在该解决方案中,您的业务代码可以将生成的类作为另一个架构层的服务“使用”。)
关于第二种方法(创建您的自定义SOAP客户端):
为了实施第二种方法,您必须:
- 拨打电话:
- 使用SAAJ(带有Java的带有附件API的SOAP)框架(请参阅下面的内容,它随Java SE 1.6或更高版本一起提供)进行调用;要么
- 您也可以通过
java.net.HttpUrlconnection
(和一些java.io
处理)做到这一点。
- 将对象与XML相互转换:
- 使用OXM(对象到XML映射)框架(例如JAXB)将XML从对象序列化/反序列化到对象
- 或者,如果需要,请手动创建/解析XML(如果接收到的对象与发送的对象只有一点点差异,这可能是最好的解决方案)。
使用classic创建SOAP客户端java.net.HttpUrlConnection
并不困难(但也不是那么简单),您可以在此链接中找到非常好的起始代码。
我建议您使用SAAJ框架:
带有Java附件API的SOAP(SAAJ)主要用于直接处理任何Web Service API幕后发生的SOAP请求/响应消息。它允许开发人员直接发送和接收肥皂消息,而不是使用JAX-WS。
参见下面使用SAAJ的SOAP Web服务调用的工作示例(运行它!)。它称为此Web服务。
import javax.xml.soap.*;
public class SOAPClientSAAJ {
// SAAJ - SOAP Client Testing
public static void main(String args[]) {
/*
The example below requests from the Web Service at:
https://www.w3schools.com/xml/tempconvert.asmx?op=CelsiusToFahrenheit
To call other WS, change the parameters below, which are:
- the SOAP Endpoint URL (that is, where the service is responding from)
- the SOAP Action
Also change the contents of the method createSoapEnvelope() in this class. It constructs
the inner part of the SOAP envelope that is actually sent.
*/
String soapEndpointUrl = "https://www.w3schools.com/xml/tempconvert.asmx";
String soapAction = "https://www.w3schools.com/xml/CelsiusToFahrenheit";
callSoapWebService(soapEndpointUrl, soapAction);
}
private static void createSoapEnvelope(SOAPMessage soapMessage) throws SOAPException {
SOAPPart soapPart = soapMessage.getSOAPPart();
String myNamespace = "myNamespace";
String myNamespaceURI = "https://www.w3schools.com/xml/";
// SOAP Envelope
SOAPEnvelope envelope = soapPart.getEnvelope();
envelope.addNamespaceDeclaration(myNamespace, myNamespaceURI);
/*
Constructed SOAP Request Message:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:myNamespace="https://www.w3schools.com/xml/">
<SOAP-ENV:Header/>
<SOAP-ENV:Body>
<myNamespace:CelsiusToFahrenheit>
<myNamespace:Celsius>100</myNamespace:Celsius>
</myNamespace:CelsiusToFahrenheit>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
*/
// SOAP Body
SOAPBody soapBody = envelope.getBody();
SOAPElement soapBodyElem = soapBody.addChildElement("CelsiusToFahrenheit", myNamespace);
SOAPElement soapBodyElem1 = soapBodyElem.addChildElement("Celsius", myNamespace);
soapBodyElem1.addTextNode("100");
}
private static void callSoapWebService(String soapEndpointUrl, String soapAction) {
try {
// Create SOAP Connection
SOAPConnectionFactory soapConnectionFactory = SOAPConnectionFactory.newInstance();
SOAPConnection soapConnection = soapConnectionFactory.createConnection();
// Send SOAP Message to SOAP Server
SOAPMessage soapResponse = soapConnection.call(createSOAPRequest(soapAction), soapEndpointUrl);
// Print the SOAP Response
System.out.println("Response SOAP Message:");
soapResponse.writeTo(System.out);
System.out.println();
soapConnection.close();
} catch (Exception e) {
System.err.println("\nError occurred while sending SOAP Request to Server!\nMake sure you have the correct endpoint URL and SOAPAction!\n");
e.printStackTrace();
}
}
private static SOAPMessage createSOAPRequest(String soapAction) throws Exception {
MessageFactory messageFactory = MessageFactory.newInstance();
SOAPMessage soapMessage = messageFactory.createMessage();
createSoapEnvelope(soapMessage);
MimeHeaders headers = soapMessage.getMimeHeaders();
headers.addHeader("SOAPAction", soapAction);
soapMessage.saveChanges();
/* Print the request message, just for debugging purposes */
System.out.println("Request SOAP Message:");
soapMessage.writeTo(System.out);
System.out.println("\n");
return soapMessage;
}
}
关于使用JAXB进行序列化/反序列化,很容易找到关于它的信息。您可以从这里开始:http : //www.mkyong.com/java/jaxb-hello-world-example/。