[JBoss jBPM] - give back value of a previous task
by antitrust1982
Hello,
Do you know how get back the variable of an ended task?
for example:
| <task-node name="CreationDevis">
| <task swimlane="Assurimo">
| <controller>
| <variable name="Article" />
| <variable name="Nombre"/>
| <variable name="Prix"/>
| <variable name="Commentaire"/>
| </controller>
| </task>
| <transition name="Envoi" to="ValidationClient"></transition>
| </task-node>
|
| <task-node name="ValidationClient">
| <task swimlane="FONCIA">
| <controller>
| <variable name="Article" />
| <variable name="Nombre"/>
| <variable name="Prix"/>
| <variable name="Commentaire"/>
| <variable name="CauseDuRefus"/>
| </controller>
| </task>
| <transition name="Refus" to="CreationDevis"></transition>
| <transition name="Acceptation" to="TransfertDonnees"></transition>
| </task-node>
|
I fill the variable of my first task, then I pass to the next one by "end()" methode. How can give back the values of the previous task variable in my next task for pre-filling of the field.
thank you for you help
antitrust1982
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3977433#3977433
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3977433
19 years, 7 months
[JBossWS] - jboss does not recognize part accessor with null namespace i
by Adeel
I am invoking a rpc/lit service on apache axis from jboss. I get the following error:
Caused by: org.jboss.ws.WSException: Content root name does not match element name: getPersonInfoReturn != {http://typespackage}getPersonInfoReturn
at org.jboss.ws.soap.SOAPContentElement.expandToDOM(SOAPContentElement.java:818)
at org.jboss.ws.soap.SOAPContentElement.getChildNodes(SOAPContentElement.java:719)
at org.jboss.util.xml.DOMWriter.printInternal(DOMWriter.java:211)
at org.jboss.util.xml.DOMWriter.printInternal(DOMWriter.java:270)
at org.jboss.util.xml.DOMWriter.printInternal(DOMWriter.java:270)
at org.jboss.util.xml.DOMWriter.printInternal(DOMWriter.java:270)
at org.jboss.util.xml.DOMWriter.print(DOMWriter.java:186)
at org.jboss.util.xml.DOMWriter.printNode(DOMWriter.java:135)
at org.jboss.ws.soap.SOAPConnectionImpl.call(SOAPConnectionImpl.java:193)
The request message jboss is sending is:
<env:Body>
<ns1:getPersonInfo xmlns:ns1='http://typespackage'>
<in0 xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
123
12
adeel
</in0>
</ns1:getPersonInfo>
</env:Body>
Response message from axis is:
<soapenv:Body>
123
12
adeel
</soapenv:Body>
Is there some problem with the response message?
Furthermore, as per the WS-I Basic Profile R2735: An ENVELOPE described with an rpc-literal binding MUST place the part accessor elements for parameters and return value in no namespace. Plz See http://ws-i.org/Profiles/BasicProfile-1.1-2004-06-11.html#R2712
Isn't the request sent by jboss and the response sent by axis voilating WS-I BP?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3977431#3977431
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3977431
19 years, 7 months