November 6, 2001 - Web Service WSDL -- Elements
November 6, 2001 Web Service WSDL -- Elements Tips: November 2001
Yehuda Shiran, Ph.D.
|
definitions
element as its root. Any WSDL language element can contain the documentation
element. The WSDL-specific elements are:
-
Types
: Describes the types used bymessage
s. message
: Defines the data passed from one point to another in a call.portType
: Defines a collection ofoperation
s.operation
: Defines a combination ofinput
,output
, andfault
messagesinput
: Amessage
that is sent to the serveroutput
: Amessage
that is sent to the clientfault
: An error value returned as a result of a problem processing amessage
binding
: Describes the protocol being used to carry the Web service communication. Supported protocols are: SOAP, HTTP GET, HTTP POST, and MIMEservice
: Defines a collection ofport
s; eachservice
should map to oneportType
and represent different ways of accessing the operations in thatportType
.