I am a newbie and trying to do a tutorial and deploying the *.bpmn20.xml and the form files. Below is the content of one of the form (I copy from the tutorial):
<h1>Pizza Order Request</h1>
<p>
Pizza Validation Order Request
</p>
<p>
<table>
<tr>
<td>
<label>
Number of pizza order:<br/>
<input type="text" name="numberOfPizzaOrder" value="${numberOfPizzaOrder}" />
<input type="hidden" name="numberOfPizzaOrder_type" value="Integer" />
</label>
</td>
</tr>
<tr>
<td>
<label>
No of pizza:<br/>
<input type="text" name="amount" value="${amount}"/>
<input type="hidden" name="amount_type" value="Integer"/>
</label>
</td>
<tr>
<tr>
<td>
<label>
Type of pizza:<br/>
<input type="text" name="pizza" value="${pizza}"/>
<input type="hidden" name="pizza_type" value="String"/>
</label>
</td>
<tr>
<tr>
<td>
<label>
Is the pizza order valid?<br/>
<input type="radio" name="pizzaOrderToOven" value="true" checked>Yes<br/>
<input type="radio" name="pizzaOrderToOven" value="false">No
<input type="hidden" name="pizzaOrderToOven_type" value="Boolean"/>
</label>
</td>
<tr>
</table>
</p>
While tring to deploy the zip file in the Activiti Explorer it is returning:
unknown type 'Boolean', 'String', and 'Integer'
What am I doing wrong?
Thanks for the help.