RE: [scxml] Regarding usage of fireEvent method

2010-08-03 Thread Prem Chand Majeti
: RE: [scxml] Regarding usage of fireEvent method This seems correct, but it's not possible to debug without knowing the results of your if-statement. The problem may be located in there, and be independent of the usage of commons-scxml. Three ways to debug: 1) Change first() so that you have

RE: [scxml] Regarding usage of fireEvent method

2010-08-03 Thread Prem Chand Majeti
: [scxml] Regarding usage of fireEvent method On Mon, Aug 2, 2010 at 1:40 AM, Prem Chand Majeti prem.maj...@aricent.com wrote: Hi, I'm trying to implement simple FSM in java. Here is my scxml :- scxml xmlns=http://www.w3.org/2005/07/scxml; version=1.0 initialstate=first state id=first

RE: [scxml] Regarding usage of fireEvent method

2010-08-02 Thread Christopher Dragert
, 2010 1:40 AM To: user@commons.apache.org Subject: [scxml] Regarding usage of fireEvent method Hi, I'm trying to implement simple FSM in java. Here is my scxml :- scxml xmlns=http://www.w3.org/2005/07/scxml; version=1.0 initialstate=first state id=first transition event

Re: [scxml] Regarding usage of fireEvent method

2010-08-02 Thread Rahul Akolkar
On Mon, Aug 2, 2010 at 1:40 AM, Prem Chand Majeti prem.maj...@aricent.com wrote: Hi, I'm trying to implement simple FSM in java. Here is my scxml :- scxml xmlns=http://www.w3.org/2005/07/scxml;       version=1.0 initialstate=first    state id=first            transition event=event1

[scxml] Regarding usage of fireEvent method

2010-08-01 Thread Prem Chand Majeti
Hi, I'm trying to implement simple FSM in java. Here is my scxml :- scxml xmlns=http://www.w3.org/2005/07/scxml; version=1.0 initialstate=first state id=first transition event=event1 target=second / transition event=event2 target=last / /state state