Hej jonathan I have done a telephony state machine, and commons scxml was a perfect choice for handling the logic. Custom actions and custom tags are the same thing.
register your action like this. List<CustomAction> actions .... actions.add(new CustomAction(NAME_SPACE, "menu", MenuAction.class)); SCXMLParser.parse(document, errHandler, actions); And menu action is a class that have getters and setters for choices maxtime and value. <ms:menu choices="'123" maxtime="30s" value="main-menu.wav'" /> If you need anymore help don't be afraid to ask Regards Jocke 2010/12/13 jonathan augenstine <[email protected]>: > I am investigating using the SCXML to implement a telephony state machine. > I need to be able to add custom tags and actions. I see examples of adding > custom actions, but no examples of adding custom tags. Can someone point me > in the direction of how to accomplish that task? > > Jonathan > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
