当程序员坐到电脑前,想要使用Web service的时候,其的工具(如Visual Studio)无法给其提供任何帮助,因为这些工具根本就不了解Web service。
解决方法是:
用机器能阅读的方式提供一陪棚个正式的描述文档.Web service描闷游述语言(WSDL)
就是这样一个基于XML的语言,用于描述Web service及其函数、参数和返回值.因为是基于XML的,所以WSDL既是机器可阅读的,又是人可阅读的。
这将是一个很大的好处.一些最新的开发工具 既能根据你的Web service生成WSDL文档,又能导入WSDL文档,生成调用相芦罩则应Web service的代码。
WSDL用来提供对服务的描述 ,它的主要构成要素有五个:
1)Types:定义WSDL定义中所用到的数据类型,即XML Schema Types。
2)Message :对一组消息的输入和输出参数的定义。
webservice的发布一般都是使用WSDL(web service descriptive language)文件的样式来发布的,在WSDL文件里面,包含这个webservice暴纯好举露在外面可供使用的接口。注意,以下的代码并没有经过真正的测试,只是说明这些情况,不同版本的Axis相差很大,最好以apache网站上的例子为准,这里仅仅用于说明其基本用法。
1,直接AXIS调用远程的web service,直接调用模式如下:
import java.util.Date
import java.text.DateFormat
import org.apache.axis.client.Call
import org.apache.axis.client.Service
import javax.xml.namespace.QName
import java.lang.Integer
import javax.xml.rpc.ParameterMode
public class caClient {
public static void main(String[] args) {
try {
String endpoint = "http://localhost:8080/ca3/services/caSynrochnized?wsdl"
//直接引用远程的wsdl文件
//袜睁以下都是套路
Service service = new Service()
Call call = (Call) service.createCall()
call.setTargetEndpointAddress(endpoint)
call.setOperationName("addUser")//WSDL里面描述的接口名称
call.addParameter("userName", org.apache.axis.encoding.XMLType.XSD_DATE,
javax.xml.rpc.ParameterMode.IN)//接口的参数
call.setReturnType(org.apache.axis.encoding.XMLType.XSD_STRING)//设置返回类型
String temp = "测试人员"
String result = (String)call.invoke(new Object[]{temp})
//给方法传递参数,并且调用方做碧法
System.out.println("result is "+result)
}
catch (Exception e) {
System.err.println(e.toString())
}
}
}
2,直接SOAP调用远程的webservice ,这种模式很少用,但是网络上有人贴出来,也转过来 :
import org.apache.soap.util.xml.*
import org.apache.soap.*
import org.apache.soap.rpc.*
import java.io.*
import java.net.*
import java.util.Vector
public class caService{
public static String getService(String user) {
URL url = null
try {
url=new URL("http://192.168.0.100:8080/ca3/services/caSynrochnized")
} catch (MalformedURLException mue) {
return mue.getMessage()
}
// This is the main SOAP object
Call soapCall = new Call()
// Use SOAP encoding
soapCall.setEncodingStyleURI(Constants.NS_URI_SOAP_ENC)
// This is the remote object we're asking for the price
soapCall.setTargetObjectURI("urn:xmethods-caSynrochnized")
// This is the name of the method on the above object
soapCall.setMethodName("getUser")
// We need to send the ISBN number as an input parameter to the method
Vector soapParams = new Vector()
// name, type, value, encoding style
Parameter isbnParam = new Parameter("userName", String.class, user, null)
soapParams.addElement(isbnParam)
soapCall.setParams(soapParams)
try {
// Invoke the remote method on the object
Response soapResponse = soapCall.invoke(url,"")
// Check to see if there is an error, return "N/A"
if (soapResponse.generatedFault()) {
Fault fault = soapResponse.getFault()
String f = fault.getFaultString()
return f
} else {
// read result
Parameter soapResult = soapResponse.getReturnValue ()
// get a string from the result
return soapResult.getValue().toString()
}
} catch (SOAPException se) {
return se.getMessage()
}
}
}
你好:这个有点抽象,你可以了解下,主要是为了方便配置远程接口。\x0d\x0a\x0d\x0a传统上,我们把计算机后台程序(Daemon)提供的功能,称为"服务"(service)。比如,让一个杀毒软件在后台运行,它会自动监控系统,那么这种自动监控就是一个"服务"。通俗地说,"服务"就是计算机可以提供的某一种功能。\x0d\x0a根据来源的不同,"服务"又可以分成两种:一种是"本地服务"(使巧粗用同一台机器提供的服务,不需要网络),另一种是"网络服务"(使用另一台计算机提供的服务,必须通过网络才能完成)。\x0d\x0a举例来说,我现在有一批图片,需要把它们的大小缩小一半。那么,我们可以把"缩放图片"看成是一种服务。你可以使用"本地服务",在自己计算机上用软件缩小图片,也可以使用"网络服务",将图片上传到某个网站,让服务器替你缩小图片,完成后再通过网络送回给你。这就好比,一件事你可以自己做,也可以交给另一个人去做。肚子饿了,你可以自己做饭,也可以打电话去订一份比萨,让店家替你做好送上门。肢碰\x0d\x0a"网络服务"(Web Service)的本质,就是通过网络调用其他网站的资源。\x0d\x0a举例来说,去年我写过一个"四川大地震图片墙",它能动态显示关于四川地震的最新图片。但是,所有的图片都不是储存在我的服务器上,而是来自flickr.com。我只是发出一个动态请求,要求flickr.com向我提供图片。这种情况下,flickr.com提供的就孝饥镇是一种Web service。如果我把图片都存放在本地服务器,不调用flickr.com,那么我就是在使用"本地服务"。\x0d\x0a所以,Web service让你的网站可以使用其他网站的资源,比如在网页上显示天气、地图、twitter上的最新动态等等。\x0d\x0a\x0d\x0aWSDL(Web Service Description Language)Web服务器描述语言是用XML文档来描述Web服务的标准,是Web服务的接口定义语言,由Ariba、Intel、IBM、MS等共同提出,通过WSDL,可描述Web服务的三个基本属性:\x0d\x0a·服务做些什么——服务所提供的 *** 作(方法)\x0d\x0a·如何访问服务——和服务交互的数据格式以及必要协议\x0d\x0a·服务位于何处——协议相关的地址,如URL欢迎分享,转载请注明来源:内存溢出
评论列表(0条)