Web service是一個平臺獨立的,低耦合的,自包含的、基於可編程的web的應用程序,可以使用開放的XML(標準通用標記語言下的一個子集)標準來描述、發佈、發現、協調和配置這些應用程序,用於開發分佈式的互操做的應用程序。Web Service技術, 能使得運行在不一樣機器上的不一樣應用無須藉助附加的、專門的第三方軟件或硬件, 就可相互交換數據或集成。依據Web Service規範實施的應用之間, 不管它們所使用的語言、 平臺或內部協議是什麼, 均可以相互交換數據。Web Service是自描述、 自包含的可用網絡模塊, 能夠執行具體的業務功能。Web Service也很容易部署, 由於它們基於一些常規的產業標準以及已有的一些技術,諸如標準通用標記語言下的子集XML、HTTP。Web Service減小了應用接口的花費。Web Service爲整個企業甚至多個組織之間的業務流程的集成提供了一個通用機制。java
(詳情可參考webservice的百度百科) web
Web Service平臺須要一套協議來實現分佈式應用程序的建立。任何平臺都有它的數據表示方法和類型系統。要實現互操做性,Web Service平臺必須提供一套標準的類型系統,用於溝通不一樣平臺、編程語言和組件模型中的不一樣類型系統。這些協議有:編程
XML和XSD網絡
可擴展的標記語言(標準通用標記語言下的一個子集)是Web Service平臺中表示數據的基本格式。除了易於創建和易於分析外,XML主要的優勢在於它既與平臺無關,又與廠商無關。XML是由萬維網協會(W3C)建立,W3C制定的XML SchemaXSD 定義了一套標準的數據類型,並給出了一種語言來擴展這套數據類型。app
Web Service平臺是用XSD來做爲數據類型系統的。當你用某種語言如VB. NET或C# 來構造一個Web Service時,爲了符合Web Service標準,全部你使用的數據類型都必須被轉換爲XSD類型。如想讓它使用在不一樣平臺和不一樣軟件的不一樣組織間傳遞,還須要用某種東西將它包裝起來。這種東西就是一種協議,如 SOAP。框架
SOAP編程語言
SOAP即簡單對象訪問協議(Simple Object Access Protocol),它是用於交換XML(標準通用標記語言下的一個子集)編碼信息的輕量級協議。它有三個主要方面:XML-envelope爲描述信息內容和如何處理內容定義了框架,將程序對象編碼成爲XML對象的規則,執行遠程過程調用(RPC)的約定。SOAP能夠運行在任何其餘傳輸協議上。例如,你可使用 SMTP,即因特網電子郵件協議來傳遞SOAP消息,這但是頗有誘惑力的。在傳輸層之間的頭是不一樣的,但XML有效負載保持相同。分佈式
Web Service 但願實現不一樣的系統之間可以用「軟件-軟件對話」的方式相互調用,打破了軟件應用、網站和各類設備之間的格格不入的狀態,實現「基於Web無縫集成」的目標。ide
WSDL函數
Web Service描述語言WSDL 就是用機器能閱讀的方式提供的一個正式描述文檔而基於XML(標準通用標記語言下的一個子集)的語言,用於描述Web Service及其函數、參數和返回值。由於是基於XML的,因此WSDL既是機器可閱讀的,又是人可閱讀的。
UDDI
UDDI 的目的是爲電子商務創建標準;UDDI是一套基於Web的、分佈式的、爲Web Service提供的、信息註冊中心的實現標準規範,同時也包含一組使企業能將自身提供的Web Service註冊,以使別的企業可以發現的訪問協議的實現標準。
Web服務爲Internet上應用程序之間的交互提供了方便
Web服務也減輕了企業級應用中出現的異構系統的整合危機
Web服務的優點包括:
.NET: 不一樣應用程序間共享數據與數據交換
他們的特色是其開放性,跨平臺性,開放性正是Web services的基礎。
1.使用JAX-WS發佈和調用web服務
(JAX-WS--->web服務標準,jdk中的一個組件,集成了JAXB,本質上實際上是Scoket編程)
01.發佈本身的ws服務
源碼介紹:
HelloService.java
package cn.myservice;
import javax.jws.WebService;
import javax.xml.ws.Endpoint;
public class HelloService {
public void say(String name){
System.out.println("Hello"+name);
}
public static void main(String[] args) {
Endpoint.publish("http://localhost:50000/hello", new HelloService());
System.out.println("server is listening ....");
}
}
運行效果:
如今咱們的局域網上均可以訪問我發佈的(http://localhost:50000/hello)這個服務了
效果:
02.書寫代碼調用
其中咱們myservice包中的類咱們是不須要本身去寫的,咱們可使用jdk中的wsimport.exe利用咱們cmd命令給咱們生成(固然是在保證咱們的jdk安裝,環境變量配置成功的狀況下)
操做以下:
這時,咱們來看看咱們的c盤根目錄:
源碼介紹:
1.HelloService.java
package cn.myservice;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebService;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.ws.Action;
import javax.xml.ws.RequestWrapper;
import javax.xml.ws.ResponseWrapper;
/**
* This class was generated by the JAX-WS RI.
* JAX-WS RI 2.2.9-b130926.1035
* Generated source version: 2.2
*
*/
@WebService(name = "HelloService", targetNamespace = "http://myservice.cn/")
@XmlSeeAlso({
ObjectFactory.class
})
public interface HelloService {
/**
*
* @param arg0
*/
@WebMethod
@RequestWrapper(localName = "say", targetNamespace = "http://myservice.cn/", className = "cn.myservice.Say")
@ResponseWrapper(localName = "sayResponse", targetNamespace = "http://myservice.cn/", className = "cn.myservice.SayResponse")
@Action(input = "http://myservice.cn/HelloService/sayRequest", output = "http://myservice.cn/HelloService/sayResponse")
public void say(
@WebParam(name = "arg0", targetNamespace = "")
String arg0);
}
2.HelloServiceService.java
package cn.myservice;
import java.net.MalformedURLException;
import java.net.URL;
import javax.xml.namespace.QName;
import javax.xml.ws.Service;
import javax.xml.ws.WebEndpoint;
import javax.xml.ws.WebServiceClient;
import javax.xml.ws.WebServiceException;
import javax.xml.ws.WebServiceFeature;
/**
* This class was generated by the JAX-WS RI.
* JAX-WS RI 2.2.9-b130926.1035
* Generated source version: 2.2
*
*/
@WebServiceClient(name = "HelloServiceService", targetNamespace = "http://myservice.cn/", wsdlLocation = "http://localhost:50000/hello?wsdl")
public class HelloServiceService
extends Service
{
private final static URL HELLOSERVICESERVICE_WSDL_LOCATION;
private final static WebServiceException HELLOSERVICESERVICE_EXCEPTION;
private final static QName HELLOSERVICESERVICE_QNAME = new QName("http://myservice.cn/", "HelloServiceService");
static {
URL url = null;
WebServiceException e = null;
try {
url = new URL("http://localhost:50000/hello?wsdl");
} catch (MalformedURLException ex) {
e = new WebServiceException(ex);
}
HELLOSERVICESERVICE_WSDL_LOCATION = url;
HELLOSERVICESERVICE_EXCEPTION = e;
}
public HelloServiceService() {
super(__getWsdlLocation(), HELLOSERVICESERVICE_QNAME);
}
public HelloServiceService(WebServiceFeature... features) {
super(__getWsdlLocation(), HELLOSERVICESERVICE_QNAME, features);
}
public HelloServiceService(URL wsdlLocation) {
super(wsdlLocation, HELLOSERVICESERVICE_QNAME);
}
public HelloServiceService(URL wsdlLocation, WebServiceFeature... features) {
super(wsdlLocation, HELLOSERVICESERVICE_QNAME, features);
}
public HelloServiceService(URL wsdlLocation, QName serviceName) {
super(wsdlLocation, serviceName);
}
public HelloServiceService(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
super(wsdlLocation, serviceName, features);
}
/**
*
* @return
* returns HelloService
*/
@WebEndpoint(name = "HelloServicePort")
public HelloService getHelloServicePort() {
return super.getPort(new QName("http://myservice.cn/", "HelloServicePort"), HelloService.class);
}
/**
*
* @param features
* A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
* @return
* returns HelloService
*/
@WebEndpoint(name = "HelloServicePort")
public HelloService getHelloServicePort(WebServiceFeature... features) {
return super.getPort(new QName("http://myservice.cn/", "HelloServicePort"), HelloService.class, features);
}
private static URL __getWsdlLocation() {
if (HELLOSERVICESERVICE_EXCEPTION!= null) {
throw HELLOSERVICESERVICE_EXCEPTION;
}
return HELLOSERVICESERVICE_WSDL_LOCATION;
}
}
3.ObjectFactory.java
package cn.myservice;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlElementDecl;
import javax.xml.bind.annotation.XmlRegistry;
import javax.xml.namespace.QName;
/**
* This object contains factory methods for each
* Java content interface and Java element interface
* generated in the cn.myservice package.
* <p>An ObjectFactory allows you to programatically
* construct new instances of the Java representation
* for XML content. The Java representation of XML
* content can consist of schema derived interfaces
* and classes representing the binding of schema
* type definitions, element declarations and model
* groups. Factory methods for each of these are
* provided in this class.
*
*/
@XmlRegistry
public class ObjectFactory {
private final static QName _SayResponse_QNAME = new QName("http://myservice.cn/", "sayResponse");
private final static QName _Say_QNAME = new QName("http://myservice.cn/", "say");
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: cn.myservice
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link SayResponse }
*
*/
public SayResponse createSayResponse() {
return new SayResponse();
}
/**
* Create an instance of {@link Say }
*
*/
public Say createSay() {
return new Say();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link SayResponse }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://myservice.cn/", name = "sayResponse")
public JAXBElement<SayResponse> createSayResponse(SayResponse value) {
return new JAXBElement<SayResponse>(_SayResponse_QNAME, SayResponse.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link Say }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://myservice.cn/", name = "say")
public JAXBElement<Say> createSay(Say value) {
return new JAXBElement<Say>(_Say_QNAME, Say.class, null, value);
}
}
4.Say.java
package cn.myservice;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* <p>say complex type的 Java 類。
*
* <p>如下模式片斷指定包含在此類中的預期內容。
*
* <pre>
* <complexType name="say">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="arg0" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "say", propOrder = {
"arg0"
})
public class Say {
protected String arg0;
/**
* 獲取arg0屬性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public String getArg0() {
return arg0;
}
/**
* 設置arg0屬性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setArg0(String value) {
this.arg0 = value;
}
}
5.SayResponse.java
package cn.myservice;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* <p>sayResponse complex type的 Java 類。
*
* <p>如下模式片斷指定包含在此類中的預期內容。
*
* <pre>
* <complexType name="sayResponse">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "sayResponse")
public class SayResponse {
}
6.MyTest.java(測試類)
package cn.test;
import cn.myservice.HelloService;
import cn.myservice.HelloServiceService;
public class MyTest {
public static void main(String[] args) {
HelloServiceService service = new HelloServiceService();
HelloService port = service.getHelloServicePort();
port.say("坤坤");
}
}
7.運行效果