English 中文(简体)
WSDL - <ports>
  • 时间:2024-12-22

WSDL - <ports> Element


Previous Page Next Page  

A <port> 内容通过规定一个具有约束力的单一地址来界定个人终点。

The grammar to specified a port -

<wsdl:definitions .... >
   <wsdl:service .... > *
      <wsdl:port name = "nmtoken" binding = "qname"> *
         <-- extensibipty element (1) -->
      </wsdl:port>
   </wsdl:service>
</wsdl:definitions>

    港口部分有两个特性: 姓名 约束

    <->称属性为《世界可持续发展论坛文件》中界定的所有港口提供了独一无二的名称。

    具有约束力的属性是指使用WSDL定义的联系规则的约束。

    具有约束力的免责内容用于具体说明港口的地址信息。

    港口MUST NOT指明了不止一个地址。

    港口MUST NOT具体说明除处理信息以外的任何具有约束力的信息。

这里是《例》一章中的一项法典。

<service name = "Hello_Service">
   <documentation>WSDL File for HelloService</documentation>
   <port binding = "tns:Hello_Binding" name = "Hello_Port">
      <soap:address
         location = "http://www.examples.com/SayHello/">
   </port>
</service>
Advertisements