submitAllowed Attribute (webServiceAdapter Element)

Microsoft Office InfoPath

submitAllowed Attribute (webServiceAdapter Element)

Specifies whether data can be submitted to the data source through the submit method of the data adapter object.

Type

      xsf:xdYesNo
    

Remarks

The submitAllowed attribute is an optional attribute of the webServiceAdapter element.

Allowed values are "yes" and "no". The default value is "no".

Example

The following is an example of the submitAllowed attribute as it is used in the webServiceAdapter element:

    <xsf:query>
   <xsf:webServiceAdapter 
      wsdlUrl="http://localhost/infopathwebservicesample/infopathwebservicesample.asmx?WSDL" 
      queryAllowed="yes" 
      submitAllowed="no">
      <xsf:operation 
         name="getOrders" 
         soapAction="http://tempuri.org/getOrders" 
         serviceUrl="http://localhost/infopathwebservicesample/infopathwebservicesample.asmx">
         <xsf:input 
            source="Submit.xml">
         </xsf:input>
      </xsf:operation>
   </xsf:webServiceAdapter>
</xsf:query>