Hello !
When trying to begin a dialog with V1.0.3 (basic dialog manager) with the
"dialog:" prefix in an action, I get:
java.lang.IllegalArgumentException: You have requested a transition outcome
named "dialog:Dienststellensuche" from a state named "Dienststellenliste" in a
dialog named "Dienststellensuche", but no transition definition can be found.
Double check the spelling of the transition outcome name.
Any hints?
jsp:
<h:commandLink id="logon" action="dialog:Dienststellensuche">
<h:outputText value="start"/>
</h:commandLink>
dialog-config.xml:
<dialogs>
<dialog name="Dienststellensuche" start="Suchparameter Form">
<view name="Suchparameter Form" viewId="Dienststellensuche.jsp"
>
<transition outcome="suchen"
target="Dienststellenliste" />
</view>
<view name="Dienststellenliste" viewId="Dienststellenliste.jsp"
>
<transition outcome="ok" target="Ende" />
</view>
<end name="Ende" />
</dialog>
</dialogs>
Jan K.