helloworldws.wsdl

来自「为大家提供了《精通EJB》(第三版)一书的源代码」· WSDL 代码 · 共 23 行

WSDL
23
字号
<?xml version="1.0" encoding="UTF-8"?>

<definitions name="HelloWorldWS" targetNamespace="urn:examples" xmlns:tns="urn:examples" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
  <types/>
  <message name="HelloInterface_hello"/>
  <message name="HelloInterface_helloResponse">
    <part name="result" type="xsd:string"/></message>
  <portType name="HelloInterface">
    <operation name="hello">
      <input message="tns:HelloInterface_hello"/>
      <output message="tns:HelloInterface_helloResponse"/></operation></portType>
  <binding name="HelloInterfaceBinding" type="tns:HelloInterface">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc"/>
    <operation name="hello">
      <soap:operation soapAction=""/>
      <input>
        <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="urn:examples"/></input>
      <output>
        <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="urn:examples"/></output></operation></binding>
  <service name="HelloWorldWS">
    <port name="HelloInterfacePort" binding="tns:HelloInterfaceBinding">
      <soap:address location="REPLACE_WITH_ACTUAL_URL"/></port></service></definitions>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?