Does the java beans serializer/deserializer handle
complex types? Imagine I have an XML with the
following structure:


<account>
  <number>49584</number>
  <type>DDA</type>
  <money>
    <amount>494.34</amount>
    <currency>EUR</currency>
  </money>
</account>


If I use this structure as input to a
'setAccountBalance' method in a SOAP body does the
java beans serializer/deserializer know how to handle
it and transform it into a Java object and pass it as
an argument to a class's method?

I have several schemas with nested elements (complex
types) which I intend to use either in the SOAP header
or SOAP body.

Is this possible without having to write my own
serializer/deserializer for each schema?


Many thanks for any help,


Nuno Guerreiro


__________________________________________________
Do You Yahoo!?
Send FREE Valentine eCards with Yahoo! Greetings!
http://greetings.yahoo.com

Reply via email to