<!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: new WorkItem for launch an external application
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="http://community.jboss.org/people/melc">Chris Melas</a> in <i>jBPM</i> - <a href="http://community.jboss.org/message/604685#604685">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p>Hello,</p><p>Yes a service task is the way to go.</p><p>In order to create a custom (domain specific) service task you need to do what is described below,</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><a class="jive-link-blog-small" href="http://community.jboss.org/people/bpmn2user/blog/2011/03/28/jbpm5--work-itemdomain-specific-process-hello-process-example">http://community.jboss.org/people/bpmn2user/blog/2011/03/28/jbpm5--work-itemdomain-specific-process-hello-process-example</a></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>If you want to use your work item handler with the gwt-server and the console ( or your own console that uses the server) you can register the work item handler (instead of step 5 of the instruction of the above link)&#160; within the&#160; CustomWorkItemHandlers.conf located inside gwt-console-server's META-INF directory (also mentioned nicely in <a class="jive-link-blog-small" href="http://community.jboss.org/people/bpmn2user/blog/2011/03/30/jbpm5-example--human-task-forms-with-variables--workitems">http://community.jboss.org/people/bpmn2user/blog/2011/03/30/jbpm5-example--human-task-forms-with-variables--workitems</a>).</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>p.s. i'm not sure about this, that's what i've done, in order not to (possibly) lose the functionality of log and email in step 1 of the first link (<a class="jive-link-blog-small" href="http://community.jboss.org/people/bpmn2user/blog/2011/03/28/jbpm5--work-itemdomain-specific-process-hello-process-example">jbpm5--work-itemdomain-specific-process-hello-process-example</a>) you&#160; could add to the CustomWorkItem.conf the configuration for log and email as well (as found in drools-core-xxxx.jar -&gt; META-INF/WorkDefinitions.conf), i.e.</p><p><em style="font-size: 12px; font-family: 'Lucida Sans', 'Lucida Sans Unicode', 'Lucida Grande', Verdana, Arial, Helvetica, sans-serif;">import org.drools.process.core.datatype.impl.type.ObjectDataType;</em></p><p>import org.drools.process.core.datatype.impl.type.StringDataType;</p><p>[</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160; [</p><p>&#160;&#160;&#160; "name" : "Email",</p><p>&#160;&#160;&#160; "parameters" : [</p><p>&#160;&#160;&#160; "From" : new StringDataType(),</p><p>&#160;&#160;&#160; "To" : new StringDataType(),</p><p>&#160;&#160;&#160; "Subject" : new StringDataType(),</p><p>&#160;&#160;&#160; "Body" : new StringDataType()</p><p>&#160;&#160;&#160; ],</p><p>&#160;&#160;&#160; "displayName" : "Email",</p><p>&#160;&#160;&#160; "icon" : "icons/import_statement.gif",</p><p>&#160;&#160;&#160; "customEditor" : "org.drools.eclipse.flow.common.editor.editpart.work.EmailCustomEditor"</p><p>&#160; ],</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160; [</p><p>&#160;&#160;&#160; "name" : "Log",</p><p>&#160;&#160;&#160; "parameters" : [</p><p>&#160;&#160;&#160;&#160;&#160; "Message" : new StringDataType()</p><p>&#160;&#160;&#160; ],</p><p>&#160;&#160;&#160; "displayName" : "Log",</p><p>&#160;&#160;&#160; "icon" : "icons/open.gif",</p><p>&#160;&#160;&#160; "customEditor" : "org.drools.eclipse.flow.common.editor.editpart.work.SampleCustomEditor"</p><p>&#160; ],</p><p><span style="font-size: 12px; color: #000080;"><em style="font-size: 12px; font-family: 'Lucida Sans', 'Lucida Sans Unicode', 'Lucida Grande', Verdana, Arial, Helvetica, sans-serif;"> [</em></span></p><p><span style="font-size: 12px; color: #000080;"><em style="font-size: 12px; font-family: 'Lucida Sans', 'Lucida Sans Unicode', 'Lucida Grande', Verdana, Arial, Helvetica, sans-serif;">&#160;&#160;&#160; "name" : "HelloProcessExtension",</em></span></p><p><span style="font-size: 12px; color: #000080;"><em style="font-size: 12px; font-family: 'Lucida Sans', 'Lucida Sans Unicode', 'Lucida Grande', Verdana, Arial, Helvetica, sans-serif;">&#160;&#160;&#160;&#160; "icon" : "icons/action.gif",</em></span></p><p><span style="font-size: 12px; color: #000080;"><em style="font-size: 12px; font-family: 'Lucida Sans', 'Lucida Sans Unicode', 'Lucida Grande', Verdana, Arial, Helvetica, sans-serif;">&#160;&#160;&#160; "displayName" : "HelloProcessExtension"</em></span></p><p><span style="font-size: 12px; color: #000080;"><em style="font-size: 12px; font-family: 'Lucida Sans', 'Lucida Sans Unicode', 'Lucida Grande', Verdana, Arial, Helvetica, sans-serif;">&#160; ]</em></span></p><p><span style="font-size: 12px; color: #000080;"><em style="font-size: 12px; font-family: 'Lucida Sans', 'Lucida Sans Unicode', 'Lucida Grande', Verdana, Arial, Helvetica, sans-serif;">]<br/></em></span></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/604685#604685">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>