2.2.41 operation

The operation element specifies the Web service operation method that MUST be used by the Web service data adapter for querying and submitting data.

Parent Elements

webServiceAdapter

Child Elements

input

Attributes:

name: The name of the Web service method.

serviceUrl: The URL of the Web service to which the request is sent.

soapAction: The SOAP action of the Web service that is used for the operation. The specified value MUST match the value specified by the SOAPAction HTTP header field, as specified in [SOAP1.2/2], in the SOAP request message sent to the Web service.

The following W3C XML Schema ([XMLSCHEMA1] section 2.1) fragment specifies the contents of this element.

 <xsd:element name="operation">
   <xsd:complexType>
     <xsd:choice>
       <xsd:element ref="xsf:input" minOccurs="0"/>
     </xsd:choice>
     <xsd:attribute name="name" type="xsd:string" use="required"/>
     <xsd:attribute name="soapAction" type="xsd:string" use="required"/>
     <xsd:attribute name="serviceUrl" type="xsd:string" use="required"/>
   </xsd:complexType>
 </xsd:element>