<!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;">
Human task editor, example
</h3>
<span style="margin-bottom: 10px;">
created by <a href="https://community.jboss.org/people/young_matthewd">Matthew Young</a> in <i>jBPM</i> - <a href="https://community.jboss.org/message/649472#649472">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">
<div class="jive-rendered-content"><p>Trying to setup JBPM in Eclipse without using the installer....</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>Wanted to rig the JBPM/Drools tools without using the installer (too heavy for my tastes, wanted to be able to suck necessary jars via Ivy rather than having a JBRM RUNTIME among other things).  Using Indigo Eclipse.  Pulled down the Drools/JBPM tools from:</p><p>     <a class="" href="https://community.jboss.org/servlet/JiveServlet/download/15922-7-25925/jbpm-5.0.0-eclipse-all.zip">https://repository.jboss.org/nexus/content/repositories/releases/org/drools/org.drools.updatesite/5.3.1.Final/org.drools.updatesite-5.3.1.Final-assembly.zip</a></p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>And did a local site with Eclipse adding the following (5.3.1.Final):</p><p>    JBoss Drools Core</p><p>    JBoss Drools Guvnor</p><p>    JBoss Drools Task</p><p>    JBoss jBPM Core</p><p>    JBoss jBPM Taks</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>Already had BPMN2 Editor (0.0.1) and the BPMN2 Project Feature (0.7.0) along with Graphiti/Graphitit SDK 0.8.1.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>Setup a normal Java project and pulled in the ProcessTest class and the Evaluation.bpmn files from the JBPM-Installer samples.  Used the following in Ivy:</p><p>     </p><p><dependencies></p><p>                    <dependency org="org.jbpm" name="jbpm-bpmn2" rev="5.2.0.Final" conf="runtime->runtime, master"/></p><p>  <dependency org="org.jbpm" name="jbpm-human-task" rev="5.2.0.Final" conf="runtime->runtime,master"/></p><p>  <dependency org="com.h2database" name="h2" rev="1.3.161" conf="runtime->master"/></p><p>  <dependency org="org.slf4j" name="slf4j-api" rev="1.6.0" conf="runtime->master" /></p><p>  <dependency org="org.slf4j" name="slf4j-log4j12" rev="1.6.0" conf="runtime->master" /></p><p>  <dependency org="log4j" name="log4j" rev="1.2.16" conf="runtime->master" /></p><p>  <dependency org="org.drools" name="drools-core" rev="5.3.1.Final" conf="runtime->master"/></p><p></dependencies></p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>With grabs a bunch of stuff that I fill funnel down later.  Anyways.....when I run the ProcessTest it is suppost to register a Human task (on address 127.0,0.1 and the default port 9123).  But the underlying NIO connector fails when starting the process:</p><p>     java.lang.IllegalArgumentException: Could not connect task client</p><p>        at org.jbpm.process.workitem.wsht.WSHumanTaskHandler.connect(WSHumanTaskHandler.java:76)</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>Why?  No idea.  Log4j logging gives nothing.  Wondering if I am missing a jar (the h2 is there)?</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>This is my first time using Drools/JBPM.  The ProcessTest.java basically setups up a KnowledgeBase and loads the Evaluation.bpmn from the classpath (no problems there).  A session is created from the knowledge base.  The Human Task (new WSHumanTaskHandler) is registered.  A couple of parameters are registered when starting the "com.smaple.evaluation" process.  That's it.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>Another thing is that I don't have a Human Task Editor for bpmn files?  Am I missing a feature/plugin?</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>Thanks in advance / Matthew</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/649472#649472">going to Community</a></p>
        <p style="margin: 0;">Start a new discussion in jBPM at <a href="https://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>