I am working with a document style service. Originally it was a rpc service, where I couldn't see this xmlns attribute in the params.
I get the java stubs from wsdl file, and when I test it I get this:
 
[...]
<soapenv:Body>
  <SubmitReq xmlns="urn:test">
   <Recipients xmlns="">
    <To>
     <RFC2822Address>[EMAIL PROTECTED]</RFC2822Address>
    </To>
   </Recipients>
   <ChannelList xmlns="">
   [...]
  </SubmitReq>
</soapenv:Body>
 
I get the correct xmlns in the operation name, but what is the problem with the subelements? the ones that hang on the operation tag have the attribute (but empty), the others (the descendants) haven´t.
In fact, I don´t want the xmlns in the subelements. How can I do it?
 
Thanks in advance.
 

Reply via email to