I'm looking for a little insight as to how the JMS default data binding
should work when text/xml messages are in force.
The JMS spec says that when there is a single operation parameter then the
message body is the XML serialization of that single parameter. It goes on
to say that when there are multiple parameters the message body is encoded
using the document wrapped style. So would you expect the following:
Single parameter
<name>Fred Bloggs</name>
Multiple parameter
<getPersonGreetings>
<firstName>Fred</firstName>
<lastName>Bloggs</lastName>
</getPersonGreetings>
What happens if someone adds an implementation.wsdl to a reference/service
that is not doc/lit/wrapped?
Regards
Simon