handlertestservice.wsdl

来自「< J2EE应用开发详解>>一书全部的源代码. 本书基于J」· WSDL 代码 · 共 24 行

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

<definitions name="HandlerTestService" targetNamespace="urn:Handler" xmlns:tns="urn:Handler" 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="HandlerTest_echoHello">
    <part name="String_1" type="xsd:string"/></message>
  <message name="HandlerTest_echoHelloResponse">
    <part name="result" type="xsd:string"/></message>
  <portType name="HandlerTest">
    <operation name="echoHello" parameterOrder="String_1">
      <input message="tns:HandlerTest_echoHello"/>
      <output message="tns:HandlerTest_echoHelloResponse"/></operation></portType>
  <binding name="HandlerTestBinding" type="tns:HandlerTest">
    <operation name="echoHello">
      <input>
        <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="urn:Handler"/></input>
      <output>
        <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="urn:Handler"/></output>
      <soap:operation soapAction=""/></operation>
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc"/></binding>
  <service name="HandlerTestService">
    <port name="HandlerTestPort" binding="tns:HandlerTestBinding">
      <soap:address location="REPLACE_WITH_ACTUAL_URL"/></port></service></definitions>

⌨️ 快捷键说明

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