Hi,

I�m using a simple bean representing an user. The BeanSerializer produces
the following elements in the soap message:

<ns1:User xmlns:ns1="http://myservices.test.org/";> 
        <password>test</password> 
        <userName>bob</userName> 
</ns1:User>


But the server (.NET) needs the following:
<ns1:User xmlns:ns1="http://myservices.test.org/";> 
        <ns1:password>test</ns1:password> 
        <ns1:userName>bob</ns1:userName> 
</ns1:User>

How can I tell the BeanSerializer to put the namespace into the subelements?

Thanks,
Erik

Reply via email to