Hello,

According to the website, the Rational Software Architect could be used
to generate the XML files that run with the Commons SCXML engine.
However, there appears to be syntactical differences between what is
generated from the software and what actually works on the engine.

The following XML was generated for composite states by the software:

<state id="Region1">
        <initial id="zero">
                <transition event="display.next">
                        <target next="one" />
                </transition>
        </initial>

This does not work (both the transition and the initial state). It must
be changed to this to work:

<state id="Region1">
    <initial>
        <transition target="zero"/>
    </initial>
<state id="zero">
    <transition event="display.next" target="one" />
</state>

Can you explain this discrepancy because I assumed that the Software
Architect adhered to the proper SCXML standards? Were there any settings
changes that you made to the software to generate the syntax-correct
files?

Thanks,
Landon





--
Landon Ouyang
Member Technical Staff
ITT Electronics Systems, Radar Systems - Gilfillan
7821 Orion Ave,
Van Nuys, CA 91406
(818) 901-2982

This e-mail and any files transmitted with it may be proprietary and are 
intended solely for the use of the individual or entity to whom they are 
addressed. If you have received this e-mail in error please notify the sender. 
Please note that any views or opinions presented in this e-mail are solely 
those of the author and do not necessarily represent those of ITT Corporation. 
The recipient should check this e-mail and any attachments for the presence of 
viruses. ITT accepts no liability for any damage caused by any virus 
transmitted by this e-mail.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to