ticket-impl.wsdl

来自「jbpm-bpel-1.1.Beta3 JBoss jBPM Starters」· WSDL 代码 · 共 32 行

WSDL
32
字号
<?xml version="1.0" encoding="UTF-8"?>
<definitions targetNamespace="urn:samples:ticket" 
  xsi:schemaLocation="http://schemas.xmlsoap.org/wsdl/ http://schemas.xmlsoap.org/wsdl/"
  xmlns:tns="urn:samples:ticket" 
  xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns="http://schemas.xmlsoap.org/wsdl/">

  <import namespace="urn:samples:ticket" location="ticket.wsdl" />

  <binding name="TicketIssuerBinding" type="tns:TicketIssuer">

    <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />

    <operation name="createTicket">
      <soap:operation soapAction="urn:samples:ticket:action:createTicket" />
      <input>
        <soap:body use="literal" namespace="urn:samples:ticket" />
      </input>
      <output>
        <soap:body use="literal" namespace="urn:samples:ticket" />
      </output>
    </operation>

  </binding>

  <service name="TicketService">
    <port name="TicketIssuerPort" binding="tns:TicketIssuerBinding">
      <soap:address location="REPLACE_WITH_ACTUAL_URI" />
    </port>
  </service>

</definitions>

⌨️ 快捷键说明

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