[Design of JBoss jBPM] - How to add custom node?
by anas
Dears,
I'm trying to add a custom node to my application,
by putting the jbpm.cfg.xml and node-types.xml on the class path,
and adding this line to the node-types.xml
<node-type element="custom-node" class="test.MyNode" />
MyNode.java class extends Node class
package test;
import org.jbpm.graph.node.State;
public class MyNode extends State {
public MyNode() {
System.err.println("hellooo it is my node");
}
}
in the processdefinition.xml I changed the node to <custom-node>....</custom-node>
but the problem is the graph damaged and when i'm trying to instanciate this process definition i got an exception?
can any body help me plz??
and if you have a reffrence that discuss by examples how to add custom (nodes, actions,.....) plz send it to me because i searched alot on that by i didn't found anything.
thanks
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117277#4117277
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117277
18 years, 3 months
[Design of Messaging on JBoss (Messaging/JBoss)] - Re: NPE booting Embedded JBoss from trunk
by pete.muir@jboss.org
"timfox" wrote : Can someone explain what this "embedded configuration" is?
http://wiki.jboss.org/wiki/Wiki.jsp?page=EmbeddedJBoss
We use it in Seam for
1) allowing deployment of EJB3 apps to Tomcat
2) Integration testing environment
timfox wrote : The only JBM configurations I am aware of that we need to support are: JBAS 4.3 and JBAS 5.0.....
|
| Is this a new requirement? If so, I know nothing about it :)
Well currently JMS stuff doesn't work in Embedded JBoss beta3 snapshots (it does in beta2). Whilst JMS support isn't critical from my (Seam team's) perspective, it certainly would be better if it worked ;) Much more important from my perspective is to get a beta3 release out there so that we can release the next Seam version.
clebert.suconic(a)jboss.com wrote : There is something starting up services out of order on this configuration you or someone created. I/We don't have much information about that... so I don't know much how to help there.
Ok, so what information are you after? Tell me what information Ales or I can provide and we will try to help.
I'm pretty much shooting in the dark here, so even a hint about *what* service isn't started which is needed would probably get us further down the road to success.
As this is probably more AS integration than messaging perhaps Scott is able to help more :)
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117222#4117222
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117222
18 years, 3 months