Share via


allowedTasks Element

Contains the Microsoft Biztalk Server 2004 Human Workflow Services (HWS) tasks enabled for the form.

Type

  xsd:complexType

Child Elements

Element Description
task Contains the information for an individual task.

Attributes

None.

Definition

  <xsd:element name="allowedTasks">
  <xsd:complexType>
    <xsd:sequence>
      <xsd:element ref="xsf:task" minOccurs="1" maxOccurs="20"/>
    </xsd:sequence>
  </xsd:complexType>
  <xsd:unique name="hws_taskID_unique">
    <xsd:selector xpath="./xsf:task"/>
    <xsd:field xpath="@taskTypeID"/>
  </xsd:unique>
</xsd:element>

Remarks

The allowedTasks element is an optional element of the hwsWorkflow element.

Each task to be enabled for the form must have a corresponding task element in the allowedTasks section of the form definition file (.xsf).

Note   If this element or attribute is in the form definition file (.xsf), InfoPath Forms Services will prevent the form template from being deployed to the server as a browser-compatible form.

Example

The following is an example of the allowedTasks element:

  <xsf:hwsWorkflow taskpaneVisible="yes">
   <xsf:location url="http://www.contoso.com/hwsservice/hwsservice.asmx" />
   <xsf:allowedActions>
      <xsf:action name="approval" actionTypeID="123" 
         canInitiateWorkflow="yes" caption="Get Approval" />
      <xsf:action name="delegate" actionTypeID="234"   
         canInitiateWorkflow="no" caption="Delegate" />
   </xsf:allowedActions>
   <xsf:allowedTasks>
      <xsf:task name="getManagerApproval" taskTypeID="435" 
         caption="Send Response" />
      <xsf:task name="getVPApproval" taskTypeID="436"  
         caption ="Send Response" />
      <xsf:task name="delegateToManager" taskTypeID="420" 
         caption="Respond" />
   </xsf:allowedTasks>
</xsf:hwsWorkflow>

<xsf:hwsAdapter name="Start Approval"
wsdlUrl="http://www.contoso.com/hwsservice/hwsservice.asmx?WSDL" submitAllowed="yes" queryAllowed="no"> <xsf:hwsOperation type="addActionToNewActivityFlow" typeID="{guid}" serviceUrl="http://www.contoso.com/hwsservice/hwsservice.asmx"> <xsf:input source="HWSMessage1.xml"> <xsf:partFragment match="/ns1:HWSMessage/ActionSection/param1" replaceWith="/my:myFields/my:param1" /> <xsf:partFragment match="/ns1:HWSMessage/ActionSection/param2" replaceWith="/a:some/b:thing" dataObject="Aux1"/> </xsf:input> </xsf:hwsOperation> </xsf:hwsAdapter>