[JBoss Seam] - Re: outputlink order problem
by nicolasb
sadly no answer...
i guess i have i basic lack of understanding of basic seam principles.
the scenario is quite simple i have page which displays a single entry (and maybe associated entries) retrieved from a page parameter. basic push/pull approach with the pages.xml and a action.
up to this point it works but i don't seem to be able to continue from here.
every time i try to submit a from and run another method it behaves strangly or won't even show an error message.
this is a simple pattern one would find in a blog. static url to display the blogentry and the possibility to add a comment. (which the example in seam doesn't provide)
there is an example in seam which provides the basic functionality I'm looking for its th contact list. sadly it tries to demonstrate the simplicity of the application framework.
can anyone explain to my the basic approach do i have to use a conversation etc.. ???
thx 4 any help
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4049683#4049683
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4049683
18 years, 10 months
[JBoss jBPM] - Re: Questions about eMails in jBPM
by Riket44
I found and modified emails of those users.
Now, i wanted to recover the email of the first user (the person who fill the form in the start state) in the second task node.
| <start-state name="Envoyer la demande">
| <task name="Envoyer form">
| <controller>
| <variable name="Produit" access="read,write,required" ></variable>
| <variable name="Quantite" access="read,write,required" ></variable>
| </controller>
| </task>
| <transition name="Envoi" to="Recevoir la demande"></transition>
| </start-state>
|
| <task-node name="Recevoir la demande">
| <task name="Recevoir form" swimlane="Manager">
| <controller>
| <variable name="Produit" access="read" ></variable>
| <variable name="Quantite" access="read" ></variable>
| </controller>
| </task>
| <transition name="Accepter" to="Maj Comptes">
| <action name="action" class="com.demande.action.DemandeMaterielHandler">
| <indic>oui</indic>
| </action>
| </transition>
| <transition name="Rejeter" to="Fin">
| <action name="action" class="com.demande.action.DemandeMaterielHandler">
| <indic>non</indic>
| </action>
| </transition>
| </task-node>
|
I wanted to know if it was possible to get the email of the user of the start state, in the ActionHandler as I do with oui to do a thing like : ??? .
I don't know if you understand what I mean, but thank you for your help.
Regards,
Richard T.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4049680#4049680
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4049680
18 years, 10 months