|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
Java的B/s开发是通常是javaweb开发,又叫J2EE开发,J2SE是手机开发。C#的C/s和B/s开发是说.net和Asp开发。。u在这里说明一点;资深一点的Java和C#程序员都明白一点
在本文中,我将先容怎样在NetBeans6中创立Web服务。在今后的文章中,我将会商怎样在挪用Web服务操纵之前处置SOAP动静。
在本例中,我将分离利用JAX-WS2.1与NetBeans6.0。
Web服务形貌言语(WSDL)
开辟Web服务有很多体例。个中之一即是创立WSDL。起首,您必需懂得Web服务的应有感化。您必要思索各Web服务操纵的输出和输入。在本文的例子中,我们只创立了一个操纵,称号为“getcalculateValues“。输出包含两个数字,了局为两数之和。
我们将创立以下两个文件:
webservices.wsdl
<?xmlversion="1.0"encoding="UTF-8"standalone="yes"?>
<definitionsxmlns:ns1="soapwebservices.jdevelop.eu"xmlns:xsd="http://www.w3.org/2001/XMLSchema"xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"xmlns="http://schemas.xmlsoap.org/wsdl/"xmlns:ns="http://schemas.xmlsoap.org/soap/encoding/"name="SOAPWebServices"targetNamespace="soapwebservices.jdevelop.eu">
<types>
<xsd:schema>
<xsd:importnamespace="soapwebservices.jdevelop.eu"schemaLocation="webservices.xsd"/>
</xsd:schema>
</types>
<messagename="calculateValues">
<partname="calculateValues"element="ns1:calculateValues"/>
</message>
<messagename="calculateValuesResponse">
<partname="calculateValuesResponse"element="ns1:calculateValuesResponse"/>
</message>
<portTypename="SOAPWebServices">
<operationname="getCalculateValues">
<inputmessage="ns1:calculateValues"/>
<outputmessage="ns1:calculateValuesResponse"/>
</operation>
</portType>
<bindingname="SOAPWebServicesPortBinding"type="ns1:SOAPWebServices">
<soap:bindingstyle="document"transport="http://schemas.xmlsoap.org/soap/http"/>
<operationname="getCalculateValues">
<soap:operationsoapAction="urn:http://blog.jdevelop.eu/services/getCalculateValues"/>
<input>
<soap:bodyuse="literal"/>
</input>
<output>
<soap:bodyuse="literal"/>
</output>
</operation>
</binding>
<servicename="SOAPService">
<portname="WebServices"binding="ns1:SOAPWebServicesPortBinding">
<soap:addresslocation="http://blog.jdevelop.eu:80/services"/>
</port>
</service>
</definitions>
<p>
诸如RMI,EJB等一些技术并不是你说的那么复杂,而是它们把一些复杂的工具封装成不复杂的工具了,理解这些工具是需要些时间。我问你,.net里有这些工具吗?要简单多少?。 |
|