wsdl怎么写( 二 )


为简单起见,我们就先以刚才做定义的那个方法为例,看看,如何根据wsdl文件,自动生成Web Service的服务器端 。
我们New一个Web Service
在Web Service type中选择“Top down Java Bean Web Service”
在Service definition中找到刚才写的那个manager.wsdl文件
Web Service对话框,将服务类型的滑块调到“Develop service”处
接下来,就next –> next –-> finish就行 。它会自动生成Web Service服务端的接口和类,在类中,可找到我们定义的方法
20
我们只要修改方法plus的方法体,以实现我们要实现的功能即行 。
5. java 如何生成wsdl文件 原则上,你可以先把JAVA生成.net的文件,然后根据以下其中一个方法,转变为WSDL
在.NET中有三种方式生成WSDL:
1.在Web Service的URL后面加上WDSL需求,如下:
/MobilePhoneService-interface"
xmlns="/MobilePhoneService"
xmlns:xsd="http://www.w3.org/1999/XMLSchema">
<portType name="MobilePhoneService_port">
<operation name="getListOfModels ">
。.
。.
</operation>
<operation name="getPrice">
。.
。.
</operation>
</portType>
</definitions>

wsdl怎么写

文章插图