EJB 3.1 中的 Web 服务:从标准到实现
1. WSDL 中的关键元素
WSDL(Web Services Description Language)文档是描述 Web 服务的重要工具,其中除了 <portType> 和 <message> 元素外,还定义了 <binding> 和 <service> 元素。JAX - WS 会利用这些元素生成用于发送和接收消息的编组和网络通信代码。
- <binding> 元素 :描述了发送和接收消息所使用的编码类型以及承载 SOAP 消息的协议。例如,对于 TravelAgent 端口类型的 <binding> 定义如下:
<!-- binding element tells us which protocols and encoding styles are used -->
<binding name="TravelAgentBinding" type="titan:TravelAgent">
<soap:binding style="rpc"
transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="ma
超级会员免费看
订阅专栏 解锁全文
27

被折叠的 条评论
为什么被折叠?



