使用 SAAJ 提供功能性 SOAP 客户端
简介
SOAP,简单对象访问协议,广泛用于 Web 服务通信。在 Java 中实现 SOAP 客户端非常简单,尤其是在 SAAJ(带有 Attachments API for Java 的 SOAP)框架的帮助下。本文介绍了使用 SAAJ 创建的 SOAP 客户端的工作示例,并提供了使用该框架的指南。
面向 SOAP 客户端的 SAAJ
SAAJ 提供了一套全面的 API用于处理 SOAP 消息。它使开发人员能够直接创建、发送和接收 SOAP 消息,从而提供与 Web 服务交互的灵活性。 SAAJ 是标准 Java SE 的一部分,使其可随时用于开发目的。
工作 SOAP 客户端示例
以下代码片段展示了使用 SAAJ 的功能 SOAP 客户端:
import javax.xml.soap.*; public class SOAPClientSAAJ { // SAAJ - SOAP Client Testing public static void main(String args[]) { // SOAP Endpoint URL and SOAP Action String soapEndpointUrl = "http://www.webservicex.net/uszip.asmx"; String soapAction = "http://www.webserviceX.NET/GetInfoByCity"; callSoapWebService(soapEndpointUrl, soapAction); } private static void createSoapEnvelope(SOAPMessage soapMessage) throws SOAPException { // Namespace and URI String myNamespace = "myNamespace"; String myNamespaceURI = "http://www.webserviceX.NET"; // SOAP Envelope SOAPPart soapPart = soapMessage.getSOAPPart(); SOAPEnvelope envelope = soapPart.getEnvelope(); envelope.addNamespaceDeclaration(myNamespace, myNamespaceURI); // SOAP Body SOAPBody soapBody = envelope.getBody(); SOAPElement soapBodyElem = soapBody.addChildElement("GetInfoByCity", myNamespace); SOAPElement soapBodyElem1 = soapBodyElem.addChildElement("USCity", myNamespace); soapBodyElem1.addTextNode("New York"); } private static void callSoapWebService(String soapEndpointUrl, String soapAction) { try { // Create SOAP Connection SOAPConnectionFactory soapConnectionFactory = SOAPConnectionFactory.newInstance(); SOAPConnection soapConnection = soapConnectionFactory.createConnection(); // SOAP Message and SOAP Request SOAPMessage soapRequest = createSOAPRequest(soapAction); // Send SOAP Message and Receive Response SOAPMessage soapResponse = soapConnection.call(soapRequest, soapEndpointUrl); // Print Response soapResponse.writeTo(System.out); // Close Connection soapConnection.close(); } catch (Exception e) { e.printStackTrace(); } } private static SOAPMessage createSOAPRequest(String soapAction) throws Exception { // Message Factory and SOAP Message MessageFactory messageFactory = MessageFactory.newInstance(); SOAPMessage soapMessage = messageFactory.createMessage(); // Create Soap Envelope createSoapEnvelope(soapMessage); // Set MIME Headers and Soap Action MimeHeaders headers = soapMessage.getMimeHeaders(); headers.addHeader("SOAPAction", soapAction); // Save Changes and Print Request soapMessage.saveChanges(); soapMessage.writeTo(System.out); return soapMessage; } }
运行示例
要运行此示例,请将其放在名为 SOAPClientSAAJ.java 的文件中,并使用 Java 编译器对其进行编译。执行编译后的类,它将调用代码中指定的 Web 服务来检索有关城市“纽约”的信息。响应将打印在控制台上。
结论
这篇综合文章提供了有关使用 SAAJ 框架在 Java 中实现 SOAP 客户端的指南。展示调用 Web 服务的 SOAP 客户端的工作示例可用作构建您自己的基于 SOAP 的解决方案的参考。利用 SAAJ 的功能,开发人员可以创建强大的 SOAP 客户端,与各种 Web 服务无缝交互。
以上是如何使用 SAAJ 在 Java 中创建功能性 SOAP 客户端?的详细内容。更多信息请关注PHP中文网其他相关文章!