<!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="https://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;">
    [jbpm-5.4, eclipse] simple work item - ioSpecification is not complete error
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="https://community.jboss.org/people/sv13">sv13</a> in <i>jBPM Development</i> - <a href="https://community.jboss.org/message/818348#818348">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p><span>hi, i am trying to do simple work item from here: </span><a class="jive-link-external-small" href="http://docs.jboss.org/jbpm/v5.4/userguide/ch.domain-specific-processes.html#d0e7389" target="_blank">http://docs.jboss.org/jbpm/v5.4/userguide/ch.domain-specific-processes.html#d0e7389</a></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>my code:</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>.wid file</p><pre class="jive-pre"><code class="jive-code">import org.drools.process.core.datatype.impl.type.StringDataType;
[
&#160; // the Notification work item
&#160; [
&#160;&#160;&#160; "name" : "Notification",
&#160;&#160;&#160; "parameters" : [
&#160;&#160;&#160;&#160;&#160; "Message" : new StringDataType(),
&#160;&#160;&#160;&#160;&#160; "From" : new StringDataType(),
&#160;&#160;&#160;&#160;&#160; "To" : new StringDataType(),
&#160;&#160;&#160;&#160;&#160; "Priority" : new StringDataType(),
&#160;&#160;&#160; ],
&#160;&#160;&#160; "displayName" : "Notification",
&#160;&#160;&#160; "icon" : "icons/notification.gif"
&#160; ]
]
</code></pre><p>then i implemented and registered work item handler with simple</p><pre class="jive-pre"><code class="jive-code jive-java">@Override
<font color="navy"><b>public</b></font> <font color="navy"><b>void</b></font> executeWorkItem(WorkItem workItem, WorkItemManager manager) <font color="navy">{</font>
&#160;&#160;&#160; String from = (String) workItem.getParameter(<font color="red">"From"</font>);
&#160;&#160;&#160; System.out.println(<font color="red">"from "</font> + from);
<font color="navy">}</font>
</code></pre><p>my custom node automatically appeared in eclipse modeler, so i made simple process:</p><p> start &gt; node &gt; end</p><p>and set value of 'From' parameter, but when executing it i get:</p><pre class="jive-pre"><code class="jive-code jive-java">ERROR ExtensibleXmlParser:666 - (<font color="navy"><b>null</b></font>: 24, 31): cvc-complex-type.2.4.b: The content of element <font color="navy">'bpmn2:ioSpecification'</font> is not complete. One of <font color="navy">'{"http://www.omg.org/spec/BPMN/20100524/MODEL":inputSet, "http://www.omg.org/spec/BPMN/20100524/MODEL":outputSet}'</font> is expected.
</code></pre><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><strong>also 'from null' is printed</strong></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>my bpmn file contains only one ioSpecification, and it have inputSet node</p><p>&#160; </p><pre class="jive-pre"><code class="jive-code">&lt;bpmn2:ioSpecification id="_InputOutputSpecification_12"&gt;
&#160;&#160;&#160; &lt;bpmn2:dataInput id="_DataInput_15" name="Message"/&gt;
&#160;&#160;&#160; &lt;bpmn2:dataInput id="_DataInput_16" itemSubjectRef="ItemDefinition_4" name="From"/&gt;
&#160;&#160;&#160; &lt;bpmn2:dataInput id="_DataInput_17" name="To"/&gt;
&#160;&#160;&#160; &lt;bpmn2:dataInput id="_DataInput_18" name="Priority"/&gt;
&#160;&#160;&#160; &lt;bpmn2:inputSet id="_InputSet_12" name="Input Set 12"&gt;
&#160;&#160;&#160;&#160;&#160; &lt;bpmn2:dataInputRefs&gt;_DataInput_15&lt;/bpmn2:dataInputRefs&gt;
&#160;&#160;&#160;&#160;&#160; &lt;bpmn2:dataInputRefs&gt;_DataInput_16&lt;/bpmn2:dataInputRefs&gt;
&#160;&#160;&#160;&#160;&#160; &lt;bpmn2:dataInputRefs&gt;_DataInput_17&lt;/bpmn2:dataInputRefs&gt;
&#160;&#160;&#160;&#160;&#160; &lt;bpmn2:dataInputRefs&gt;_DataInput_18&lt;/bpmn2:dataInputRefs&gt;
&#160;&#160;&#160; &lt;/bpmn2:inputSet&gt;
&#160; &lt;/bpmn2:ioSpecification&gt;</code></pre><p>i am using jbpm 5.4.final</p><p> eclipse BPMN2 Editor 0.2.5.201305082126</p><p> eclipse JBoss jBPM5 Runtime Extension Feature 0.2.5.201305082126</p><p> eclipse JBoss jBPM Core 5.5.0.Final</p><p> eclipse JBoss jBPM Task 5.5.0.Final</p></div>

<div style="background-color: #f4f4f4; padding: 10px; margin-top: 20px;">
    <p style="margin: 0;">Reply to this message by <a href="https://community.jboss.org/message/818348#818348">going to Community</a></p>
        <p style="margin: 0;">Start a new discussion in jBPM Development at <a href="https://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2035">Community</a></p>
</div></td>
                        </tr>
                    </tbody>
                </table>


                </td>
            </tr>
        </tbody>
    </table>

</div>

</body>
</html>