<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<body link="#355491" alink="#4262a1" vlink="#355491" style="background: #e2e2e2; margin: 0; padding: 20px;">
<div>
        <table cellpadding="0" bgcolor="#FFFFFF" border="0" cellspacing="0" style="border: 1px solid #dadada; margin-bottom: 30px; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                <tbody>
                        <tr>
                                <td>
                                        <table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" style="border: solid 2px #ccc; background: #dadada; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                                                <tbody>
                                                        <tr>
                                                                <td bgcolor="#000000" valign="middle" height="58px" style="border-bottom: 1px solid #ccc; padding: 20px; -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 5px; -webkit-border-top-left-radius: 5px;">
                                                                        <h1 style="color: #333333; font: bold 22px Arial, Helvetica, sans-serif; margin: 0; display: block !important;">
                                                                        <!-- To have a header image/logo replace the name below with your img tag -->
                                                                        <!-- Email clients will render the images when the message is read so any image -->
                                                                        <!-- must be made available on a public server, so that all recipients can load the image. -->
                                                                        <a href="http://community.jboss.org/index.jspa" style="text-decoration: none; color: #E1E1E1">JBoss Community</a></h1>
                                                                </td>
                                                        </tr>
                                                        <tr>
                                                                <td bgcolor="#FFFFFF" style="font: normal 12px Arial, Helvetica, sans-serif; color:#333333; padding: 20px; -moz-border-radius-bottomleft: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px;"><h3 style="margin: 10px 0 5px; font-size: 17px; font-weight: normal;">
Re: Jbpm 5 user form variables
</h3>
<span style="margin-bottom: 10px;">
created by <a href="http://community.jboss.org/people/salaboy21">Mauricio Salatino</a> in <i>jBPM</i> - <a href="http://community.jboss.org/message/573854#573854">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">
<div class="jive-rendered-content"><p>Hi, the variables that you want to access inside the the Human task needs to be inserted in the content field</p><p><dataInputAssociation><br/>        <targetRef>_5_ContentInput</targetRef><br/>        <assignment><br/>          <from xs:type="tFormalExpression">#{doctor.id}, #{ambulance.id},  #{patient.id}, #{patient.name}, #{patient.age}, #{patient.gender}, #{emergency.location}, #{emergency.type}</from><br/>          <to xs:type="tFormalExpression">_5_ContentInput</to><br/>        </assignment><br/>      </dataInputAssociation></p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>I have something like that in my process and then from your client side (Human Task Client UI):</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>client.start(taskSum.getId(), "control_operator", null);<br/>        BlockingGetTaskResponseHandler handlerT = new BlockingGetTaskResponseHandler();<br/>        client.getTask(taskSum.getId(), handlerT);<br/>        Task task2 = handlerT.getTask();<br/>        TaskData taskData = task2.getTaskData();<br/>        <br/>        System.out.println("TaskData = "+taskData);<br/>        BlockingGetContentResponseHandler handlerC = new BlockingGetContentResponseHandler();<br/>        client.getContent(taskData.getDocumentContentId(), handlerC);<br/>        Content content = handlerC.getContent();<br/>        <br/>        System.out.println("Content= "+content);<br/>        ByteArrayInputStream bais = new ByteArrayInputStream(content.getContent());<br/>        <br/>    ObjectInputStream ois = new ObjectInputStream(bais);<br/>        String taskinfo =(String) ois.readObject(); <br/>        System.out.println("TASKINFO = "+taskinfo);<br/>        //#{doctor.id}, #{ambulance.id},  #{patient.id}, #{patient.name}, #{patient.age}, #{patient.gender}, #{emergency.location}, #{emergency.type}<br/>        String[] values= taskinfo.split(",");<br/>        <br/>        Assert.assertEquals(8 , values.length);</p></div>
<div style="background-color: #f4f4f4; padding: 10px; margin-top: 20px;">
<p style="margin: 0;">Reply to this message by <a href="http://community.jboss.org/message/573854#573854">going to Community</a></p>
        <p style="margin: 0;">Start a new discussion in jBPM at <a href="http://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2034">Community</a></p>
</div></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>