ant elder wrote:
I'm now confused after the emails in this thread. The sample _does_
work, in both 1.x and 2.x, with that wsdl, the simple Java interface,
and the previous version of Ode, and that seems ok to me. What do you
mean "the problem is the tmpVar value"?
...ant
Ant,
It is my belief that if this sample works on any release, it works "by chance" with one problem
masking another.
In your other email response to an earlier post of mine, you said:
> The response looks like:
>
> <TestPart>
> <hello
xmlns="http://tuscany.apache.org/implementation/bpel/example/helloworld.wsdl">Hello
> World</hello>
> </TestPart>
This is actually incorrect. Go look at the WSDL again. The structure of the response message
should be:
<TestPart>
<hello>
<message>
Hello World
</message>
</hello>
</TestPart>
so that whole <message> level of XML is missing from the response - but the
test works!!
It should fail.
Yours, Mike.