This content has been marked as final.
Show 4 replies
-
1. Re: Parse Messages between Actions
beve Sep 23, 2010 4:54 AM (in response to phillip.schulte)Hi,
try specifying 'get-order-response' instead of 'org.jboss.soa.esb.message.get-order-response' as the named location in your EJBProcessor configuration.
Regards,
/Daniel
-
2. Re: Parse Messages between Actions
phillip.schulte Sep 23, 2010 5:03 AM (in response to beve)Hi,
okay I think I know what you mean but could you post some code to clarify your statement? That would be greatly appreciated!
regards
Phillip
-
3. Re: Parse Messages between Actions
beve Sep 23, 2010 5:09 AM (in response to phillip.schulte)Try changing your EJBProcessor configuration to this:
<action class="org.jboss.soa.esb.actions.EJBProcessor" name="callPersist"> <property name="ejb3" value="true" /> <property name="jndi-name" value="garuda-core/ObjShipmentManagerBean/remote-de.eskalon.kn.garuda.api.ObjShipmentManager" /> <property name="initial-context-factory" value="org.jnp.interfaces.NamingContextFactory" /> <property name="provider-url" value="localhost:1099" /> <property name="method" value="persistObjShipment" /> <property name="ejb-params"> <arg0 type="de.eskalon.kn.garuda.database.domain.ObjShipment">get-order-response</arg0> </property> </action>
Regards,
/Daniel
-
4. Re: Parse Messages between Actions
phillip.schulte Sep 23, 2010 5:14 AM (in response to beve)That did the trick. Thank you very much!