You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Ice2scream (JIRA)" <ji...@apache.org> on 2012/05/03 11:14:57 UTC

[jira] [Created] (SCXML-165) Warning with nested parallel tags on XML

Ice2scream created SCXML-165:
--------------------------------

             Summary: Warning with nested parallel tags on XML
                 Key: SCXML-165
                 URL: https://issues.apache.org/jira/browse/SCXML-165
             Project: Commons SCXML
          Issue Type: Bug
            Reporter: Ice2scream
            Priority: Minor
             Fix For: 0.10




--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (SCXML-165) Warning with nested parallel tags on XML

Posted by "Ice2scream (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SCXML-165?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ice2scream updated SCXML-165:
-----------------------------

          Description: 
I get this warning message when I try to load the XML file attached to this JIRA

WARN SCXMLParser:1716 - Ignoring element <parallel> in namespace "http://www.w3.org/2005/07/scxml" at file:../SuperController.xml:20:29 and digester match "scxml/parallel/parallel"
{code:xml} 
<scxml xmlns="http://www.w3.org/2005/07/scxml" xmlns:cs="http://commons.apache.org/scxml"
	version="1.0" initialstate="off">

	<state id="off">
		<transition event="wakeup" target="controller" />
	</state>

	<parallel id="engine">
		<state id="controller">
			<initial>
				<transition target="controller.ready" />
			</initial>

			<state id="controller.ready">
				<transition event="start_controller" target="machine1" />
			</state>

		</state>

		<parallel id="machines">
			<state id="machine1">
				<transition event="start_machine2" target="machine2" />
			</state>

			<state id="machine2">
			</state>
		</parallel>
	</parallel>
</scxml>
{code} 
    Affects Version/s: 0.9
    
> Warning with nested parallel tags on XML
> ----------------------------------------
>
>                 Key: SCXML-165
>                 URL: https://issues.apache.org/jira/browse/SCXML-165
>             Project: Commons SCXML
>          Issue Type: Bug
>    Affects Versions: 0.9
>            Reporter: Ice2scream
>            Priority: Minor
>             Fix For: 0.10
>
>
> I get this warning message when I try to load the XML file attached to this JIRA
> WARN SCXMLParser:1716 - Ignoring element <parallel> in namespace "http://www.w3.org/2005/07/scxml" at file:../SuperController.xml:20:29 and digester match "scxml/parallel/parallel"
> {code:xml} 
> <scxml xmlns="http://www.w3.org/2005/07/scxml" xmlns:cs="http://commons.apache.org/scxml"
> 	version="1.0" initialstate="off">
> 	<state id="off">
> 		<transition event="wakeup" target="controller" />
> 	</state>
> 	<parallel id="engine">
> 		<state id="controller">
> 			<initial>
> 				<transition target="controller.ready" />
> 			</initial>
> 			<state id="controller.ready">
> 				<transition event="start_controller" target="machine1" />
> 			</state>
> 		</state>
> 		<parallel id="machines">
> 			<state id="machine1">
> 				<transition event="start_machine2" target="machine2" />
> 			</state>
> 			<state id="machine2">
> 			</state>
> 		</parallel>
> 	</parallel>
> </scxml>
> {code} 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira