<!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;"> </p><p>my code:</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>.wid file</p><pre class="jive-pre"><code class="jive-code">import org.drools.process.core.datatype.impl.type.StringDataType;
[
  // the Notification work item
  [
    "name" : "Notification",
    "parameters" : [
      "Message" : new StringDataType(),
      "From" : new StringDataType(),
      "To" : new StringDataType(),
      "Priority" : new StringDataType(),
    ],
    "displayName" : "Notification",
    "icon" : "icons/notification.gif"
  ]
]
</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>
    String from = (String) workItem.getParameter(<font color="red">"From"</font>);
    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 > node > 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;"> </p><p><strong>also 'from null' is printed</strong></p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>my bpmn file contains only one ioSpecification, and it have inputSet node</p><p>  </p><pre class="jive-pre"><code class="jive-code"><bpmn2:ioSpecification id="_InputOutputSpecification_12">
    <bpmn2:dataInput id="_DataInput_15" name="Message"/>
    <bpmn2:dataInput id="_DataInput_16" itemSubjectRef="ItemDefinition_4" name="From"/>
    <bpmn2:dataInput id="_DataInput_17" name="To"/>
    <bpmn2:dataInput id="_DataInput_18" name="Priority"/>
    <bpmn2:inputSet id="_InputSet_12" name="Input Set 12">
      <bpmn2:dataInputRefs>_DataInput_15</bpmn2:dataInputRefs>
      <bpmn2:dataInputRefs>_DataInput_16</bpmn2:dataInputRefs>
      <bpmn2:dataInputRefs>_DataInput_17</bpmn2:dataInputRefs>
      <bpmn2:dataInputRefs>_DataInput_18</bpmn2:dataInputRefs>
    </bpmn2:inputSet>
  </bpmn2:ioSpecification></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>