JMS Message Parameters set to "null" if the have any namespace
--------------------------------------------------------------
Key: TUSCANY-3084
URL: https://issues.apache.org/jira/browse/TUSCANY-3084
Project: Tuscany
Issue Type: Bug
Components: Java SCA JMS Binding Extension
Affects Versions: Java-SCA-1.4
Environment: WinXP SP2, JRE 1.6.0_12
Reporter: Arne Schramm
Invoking a Java method via a JMS Binding does not work, if the child elements
of the xml message have any namespaces. These values are then set to "null" or
"0"
Example XML Message:
<method xmlns="http://my.ns">
<arg0>Hello World</arg0>
</method>
Example java method:
public void method(String arg0){...}
in that case, the arg0 will be "null".
if the message is sent like that instead, everything is working fine:
<method>
<arg0>Hello World</arg0>
</method>
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.