使用J2EE构建服务 - 编程入门网
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-06-14
="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:tns="http://oracle.j2ee.ws/ejb/Hello/types"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<complexType name="sayHello">
<message name="HelloServiceInf_sayHello">
<part name="parameters"
element="ns1:sayHelloElement"/>
</message>
<message name="HelloServiceInf_sayHelloResponse">
<part name="parameters"
element="ns1:sayHelloResponseElement"/>
</message>
<portType name="HelloServiceInf">
<operation name="sayHello">
<input message="tns:HelloServiceInf_sayHello"/>
<output message="tns:HelloServiceInf_sayHelloResponse"/>
</operation>
</portType>
<sequence>
<element name="String_1" nillable="true" type="string"/>
</sequence>
</complexType>
<complexType name="sayHelloResponse">
<sequence>
<element name="result" nillable="true" type="string"/>
</sequence>
</complexType>
<element name="sayHelloElement" type="tns:sayHello"/>
<element name="sayHelloResponseElement"
type="tns:sayHelloResponse"/>
</schema>
</types>
<binding name="HttpSoap11Binding" type="tns:HelloServiceInf">
<soap:binding style="document"
transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="sayHello">
<soap:operation
soapAction="http://oracle.j2ee.ws/ejb/Hello:sayHello"/>
<input>
<soap:body use="literal" parts="parameters"/>
</input>
<output>
<soap:body use="literal" parts="parameters"/>
</output>
</operation>
</binding>
<service name="HelloService">
<port name="HttpSoap11" binding="tns:HttpSoap11Binding">
<soap:address location="REPLACE_WITH_ACTUAL_URL"/>
</port>
</service>
</definitions>
使用J2EE构建服务(3)时间:2011-10-07 onjava Debu Panda如果你观察这个WSDL,你会注意到它有一个对于HelloService web service的完整的描述,包括端口 ,操作和消息类型。WSDL是web service和它的客户之间的合约,并且它能够帮助自动生成客户代理。 Web services平台的另外两项关键技术是SOAP,被用来调用web service的协议,和UDDI,它提供了用 来定位web services 的注册器。 对于这些技术的支持已经完全被集成到J2EE平台中 |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于使用J2EE构建服务 - 编程入门网的所有评论