sampleservice.wsdl

来自「j2me简单实例,j2me教程加源码,希望大家喜欢」· WSDL 代码 · 共 35 行

WSDL
35
字号
<?xml version="1.0" encoding="UTF-8"?><definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="urn:SampleService/wsdl" xmlns:ns2="urn:SampleService/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" name="SampleService" targetNamespace="urn:SampleService/wsdl">
  <types>
    <schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:tns="urn:SampleService/types" xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" targetNamespace="urn:SampleService/types">
      <complexType name="getArticleByID">
        <sequence>
          <element name="int_1" type="int"/></sequence></complexType>
      <complexType name="getArticleByIDResponse">
        <sequence>
          <element name="result" type="tns:Article" nillable="true"/></sequence></complexType>
      <complexType name="Article">
        <sequence>
          <element name="content" type="string" nillable="true"/>
          <element name="id" type="int"/>
          <element name="title" type="string" nillable="true"/></sequence></complexType>
      <element name="getArticleByID" type="tns:getArticleByID"/>
      <element name="getArticleByIDResponse" type="tns:getArticleByIDResponse"/></schema></types>
  <message name="SampleServiceSEI_getArticleByID">
    <part name="parameters" element="ns2:getArticleByID"/></message>
  <message name="SampleServiceSEI_getArticleByIDResponse">
    <part name="result" element="ns2:getArticleByIDResponse"/></message>
  <portType name="SampleServiceSEI">
    <operation name="getArticleByID">
      <input message="tns:SampleServiceSEI_getArticleByID"/>
      <output message="tns:SampleServiceSEI_getArticleByIDResponse"/></operation></portType>
  <binding name="SampleServiceSEIBinding" type="tns:SampleServiceSEI">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
    <operation name="getArticleByID">
      <soap:operation soapAction=""/>
      <input>
        <soap:body use="literal"/></input>
      <output>
        <soap:body use="literal"/></output></operation></binding>
  <service name="SampleService">
    <port name="SampleServiceSEIPort" binding="tns:SampleServiceSEIBinding">
      <soap:address location="http://ERIC:8080/wsapp/SampleService" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"/></port></service></definitions>

⌨️ 快捷键说明

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