开发流程:
================================
一.先写schema或者wsdl文件
1.在src下创建META-INF/wsdl文件夹
2.新建wsdl并编写文件
(1)编写type
(2)编写message
(3)编写portType:指定接口和方法
(4)编写binding,指定编码样式
(5)编写service
mywsdl.wsdl
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://www.example.org/mywsdl/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="MyServiceImplService" targetNamespace="http://www.example.org/mywsdl/"> <wsdl:types> <xsd:schema targetNamespace="http://www.example.org/mywsdl/"> <xsd:element name="add" type="tns:add" /> <xsd:element name="addResponse" type="tns:addResponse" /> <xsd:element name="divide" type="tns:divide" /> <xsd:element name="divideResponse" type="tns:divideResponse" /> <xsd:element name="licenseInfo" type="xsd:string" /> <xsd:complexType name="add"> <xsd:sequence> <xsd:element name="a" type="xsd:int" /> <xsd:element name="b" type="xsd:int" /> </xsd:sequence> </xsd:complexType> <xsd:complexType name="addResponse"> <xsd:sequence> <xsd:element name="addResult" type="xsd:int" /> </xsd:sequence> </xsd:complexType> <xsd:complexType name="divide"> <xsd:sequence> <xsd:element name="c" type="xsd:int" /> <xsd:element name="d" type="xsd:int" /> </xsd:sequence> </xsd:complexType> <xsd:complexType name="divideResponse"> <xsd:sequence> <xsd:element name="divideResult" type="xsd:int" /> </xsd:sequence> </xsd:complexType> </xsd:schema> </wsdl:types> <wsdl:message name="add"> <wsdl:part name="add" element="tns:add" /> </wsdl:message> <wsdl:message name="addResponse"> <wsdl:part name="addResponse" element="tns:addResponse" /> </wsdl:message> <wsdl:message name="divide"> <wsdl:part name="divide" element="tns:divide" /> </wsdl:message> <wsdl:message name="divideResponse"> <wsdl:part name="divideResponse" element="tns:divideResponse" /> </wsdl:message> <!-- 建立头信息 --> <wsdl:message name="licenseInfo"> <wsdl:part name="licenseInfo" element="tns:licenseInfo" /> </wsdl:message> <wsdl:portType name="IMyService"> <wsdl:operation name="add"> <wsdl:input message="tns:add" /> <wsdl:output message="tns:addResponse" /> </wsdl:operation> <wsdl:operation name="divide"> <wsdl:input message="tns:divide" /> <wsdl:output message="tns:divideResponse" /> </wsdl:operation> </wsdl:portType> <wsdl:binding name="myServiceSOAP" type="tns:IMyService"> <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" /> <wsdl:operation name="add"> <wsdl:input> <soap:body use="literal" /> <!-- 添加头信息 --> <soap:header use="literal" part="licenseInfo" message="tns:licenseInfo" /> </wsdl:input> <wsdl:output> <soap:body use="literal" /> </wsdl:output> </wsdl:operation> <wsdl:operation name="divide"> <wsdl:input> <soap:body use="literal" /> </wsdl:input> <wsdl:output> <soap:body use="literal" /> </wsdl:output> </wsdl:operation> </wsdl:binding> <!-- 这个name必须和本文件的命名空间名称一致 --> <wsdl:service name="MyServiceImplService"> <wsdl:port binding="tns:myServiceSOAP" name="MyServiceImplPort"> <soap:address location="http://localhost:9999/ms" /> </wsdl:port> </wsdl:service> </wsdl:definitions>
二. 使用wsimport,根据这个文件生成接口(IMyService.java)
IMyService.java
package org.example.mywsdl; import javax.jws.WebMethod; import javax.jws.WebParam; import javax.jws.WebResult; import javax.jws.WebService; import javax.xml.ws.RequestWrapper; import javax.xml.ws.ResponseWrapper; /** * This class was generated by the JAX-WS RI. * JAX-WS RI 2.1.6 in JDK 6 * Generated source version: 2.1 * */ @WebService(name = "IMyService", targetNamespace = "http://www.example.org/mywsdl/") public interface IMyService { /** * * @param b * @param a * @return * returns int */ @WebMethod @WebResult(name = "addResult", targetNamespace = "") @RequestWrapper(localName = "add", targetNamespace = "http://www.example.org/mywsdl/", className = "org.example.mywsdl.Add") @ResponseWrapper(localName = "addResponse", targetNamespace = "http://www.example.org/mywsdl/", className = "org.example.mywsdl.AddResponse") public int add( @WebParam(name = "a", targetNamespace = "") int a, @WebParam(name = "b", targetNamespace = "") int b, @WebParam(name = "licenseInfo", header = true) String licenseInfo); /** * * @param d * @param c * @return * returns int */ @WebMethod @WebResult(name = "divideResult", targetNamespace = "") @RequestWrapper(localName = "divide", targetNamespace = "http://www.example.org/mywsdl/", className = "org.example.mywsdl.Divide") @ResponseWrapper(localName = "divideResponse", targetNamespace = "http://www.example.org/mywsdl/", className = "org.example.mywsdl.DivideResponse") public int divide( @WebParam(name = "c", targetNamespace = "") int c, @WebParam(name = "d", targetNamespace = "") int d); }
三.编写实现类实现接口(在实现类上指定wsdlLocation)
MyServiceImpl.java
package org.example.mywsdl; import javax.jws.WebService; @WebService(endpointInterface = "org.example.mywsdl.IMyService", targetNamespace = "http://www.example.org/mywsdl/", wsdlLocation = "META-INF/wsdl/mywsdl.wsdl") public class MyServiceImpl implements IMyService { @Override public int add(int a, int b, String licenseInfo) { System.out.println(licenseInfo); System.out.println(a + b); return a + b; } @Override public int divide(int c, int d) { System.out.println(c / d); return c / d; } }
四.添加头信息;
mywsdl.wsdl和IMyService.java文件中已经添加
五.发布服务
MyService.java
package org.example.mywsdl; import javax.xml.ws.Endpoint; public class MyService { public static void main(String[] args) { Endpoint.publish("http://localhost:9999/ms", new MyServiceImpl()); } }
六.使用wsimport,根据发布的服务生成客户端代码
七.创建客户端
新建一个java项目,把生成的所有java文件拷贝到src下面,新建并编写客户端代码
MyClient.java
package org.example.mywsdl; import java.io.IOException; import java.net.URL; import javax.xml.namespace.QName; import javax.xml.soap.MessageFactory; import javax.xml.soap.SOAPBody; import javax.xml.soap.SOAPBodyElement; import javax.xml.soap.SOAPEnvelope; import javax.xml.soap.SOAPException; import javax.xml.soap.SOAPHeader; import javax.xml.soap.SOAPMessage; import javax.xml.ws.Dispatch; import javax.xml.ws.Service; import org.w3c.dom.Document; public class MyClient { public static void main(String[] args) { try { // 创建服务 String ns = "http://www.example.org/mywsdl/"; URL url = new URL("http://localhost:9999/ms"); QName qname = new QName(ns, "MyServiceImplService"); Service service = Service.create(url, qname); // 创建Dispatch QName pname = new QName(ns, "MyServiceImplPort"); Dispatch<SOAPMessage> dispatch = service.createDispatch(pname, SOAPMessage.class, Service.Mode.MESSAGE); // 创建SOAP的body消息 SOAPMessage message = MessageFactory.newInstance().createMessage(); SOAPEnvelope envelope = message.getSOAPPart().getEnvelope(); SOAPHeader header = envelope.getHeader(); if (header == null) { header = envelope.addHeader(); } SOAPBody body = envelope.getBody(); QName hname = new QName(ns, "licenseInfo", "ns"); header.addHeaderElement(hname).setValue("123456789"); QName bname = new QName(ns, "add", "ns"); SOAPBodyElement element = body.addBodyElement(bname); element.addChildElement("a").setValue("12"); element.addChildElement("b").setValue("13"); message.writeTo(System.out); System.out.println("\n invoking..."); // 通过dispatch传递消息,返回响应消息 SOAPMessage response = dispatch.invoke(message); response.writeTo(System.out); System.out.println(); // 将响应的消息转换为dom对象 Document doc = response.getSOAPPart().getEnvelope().getBody().extractContentAsDocument(); System.out.println(doc.getElementsByTagName("addResult").item(0).getTextContent()); } catch (SOAPException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } } }
运行该程序
客户端打印结果:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Header><ns:licenseInfo xmlns:ns="http://www.example.org/mywsdl/">123456789</ns:licenseInfo></SOAP-ENV:Header><SOAP-ENV:Body><ns:add xmlns:ns="http://www.example.org/mywsdl/"><a>12</a><b>13</b></ns:add></SOAP-ENV:Body></SOAP-ENV:Envelope>
invoking...
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Header/><S:Body><ns2:addResponse xmlns:ns2="http://www.example.org/mywsdl/"><addResult>25</addResult></ns2:addResponse></S:Body></S:Envelope>
25
服务端打印结果:
123456789
25
从打印结果可以看到,发送的消息中包含头信息,并且头信息发送到了服务端
相关推荐
在"基于WSDL契约优先的Web Services"开发中,我们首先定义服务的WSDL契约,然后根据这个契约生成服务器端和客户端的代码。 1. **WSDL契约优先**: WSDL契约优先的方法意味着首先编写服务的接口描述(WSDL文件),...
在契约优先的开发模式中,我们首先定义WSDL文件,也就是先确定服务的接口,包括方法名、参数类型和返回值类型。然后,基于这个契约,我们可以生成服务端和客户端的代码,确保服务提供者和消费者之间的交互符合预先...
WSDL文件是服务提供者和消费者之间的契约,确保两者之间的通信能够顺利进行。 **1. WSDL的基本结构** WSDL文档由以下几个主要部分组成: - **服务(Service)**:定义服务的访问点,即客户端可以通过哪些URL来...
在IT行业中,Web服务是应用程序之间进行通信的一种标准方法,而...总之,gSOAP是C和C++开发人员在处理WSDL和SOAP协议时的一个强大工具。通过正确使用gSOAP,可以有效地构建和调用Web服务,大大简化了跨平台的通信任务。
4. **SOAP接口开发过程**: - **定义服务接口**:首先,你需要定义一个服务接口,通常是一个Java接口或抽象类,定义了服务提供的操作。 - **创建服务实现**:实现上述接口,提供实际的服务逻辑。 - **生成WSDL**...
在我们的实例中,"CXF契约优先开发方式之客户端实现(client)"是基于CXF的客户端实现,它利用maven作为构建工具。Maven具有强大的插件系统,其中就包括CXF的插件,能够自动根据WSDL生成客户端的代理类。以下是如何...
WebServicesContractFirstSOAP 我通过 SOAP 的契约优先 Web 服务示例 创建 XSD 创建 WSDL 运行“mvn generate:sources”(将生成对象) 创建客户端 运行“mvn码头:运行”
理解WSDL4J的工作原理和使用方法对于开发和消费基于WSDL的Web服务至关重要。 ### WSDL4J简介 1. **WSDL4J作用**:WSDL4J提供了一套API,允许开发者读取、创建和修改WSDL文档。它支持WSDL 1.1规范,并且可以与SOAP和...
【基于Axis2开发的Web Service与SOAP的相关资料】 在IT行业中,Web Service是一种基于标准的、松耦合的、跨平台的信息交换方式,它允许不同的系统之间通过网络进行通信。而SOAP(Simple Object Access Protocol)是...
Web服务使用SOAP(简单对象访问协议)通过HTTP协议传输数据,这使得跨平台通信变得可能。在C#中,我们通常使用.NET Framework提供的System.Web.Services命名空间来与WebService进行交互。 在C#中调用WebService主要...
通过Java 2 WSDL,我们可以基于已经定义好的Java接口自动创建服务契约,使得客户端能够理解和调用服务。 3. **CXF的Wsdl2Java工具**:CXF提供了一个名为`wsdl2java`的命令行工具,可以将WSDL文档转换为Java源代码,...
契约优先的开发模式是指先定义服务的接口契约(即WSDL),然后再根据契约实现服务。这种模式有助于确保服务提供者和消费者之间的兼容性,因为它明确了双方应遵循的通信规则。 WSLD是一个XML文档,它描述了Web服务的...
WSDL通常与SOAP(Simple Object Access Protocol)一起使用,SOAP是一种基于XML的协议,用于在Web上交换结构化信息。在调用WSDL接口发送短信时,请求和响应都是以SOAP消息的形式进行的。 3. **短信服务的工作原理*...
WSDL是一种基于XML的规范,用于描述Web服务及其接口。它提供了服务提供者和服务消费者之间的契约,定义了服务的存在、服务如何被调用以及服务所期望的消息格式。WSDL文件通常由服务开发者编写,它包含了服务的地址、...
在开发SOAP应用时,理解XML基础知识是非常重要的,因为SOAP完全基于XML。同时,对HTTP和SMTP协议的理解也有助于更好地利用SOAP进行网络通信。此外,了解WSDL和UDDI(Universal Description, Discovery, and ...
在契约优先的开发流程中,开发者首先创建 WSDL 文件,该文件定义了服务接口、操作、输入和输出消息结构。WSDL 文件作为服务的公开合同,确保客户端和服务提供者之间的互操作性。Spring-WS 可以根据这个 WSDL 自动...
5. **开发流程**:使用SOAP工具开发Web服务一般包括以下步骤:设计服务接口(WSDL),实现服务逻辑,部署服务,创建客户端代码,然后进行测试和调试。 6. **优势**:SOAP工具的主要优点是其标准化和形式化,确保了...
SOA是一种软件设计范式,它强调将独立的功能封装为服务,这些服务可以通过网络进行交互和组合,以实现更复杂的业务流程。这种架构模式允许不同系统间的互操作性,提高灵活性和重用性。在SOA中,服务是业务功能的原子...