How do i remove the namespace in a parameter? I'm accessing a SOAP Echo
service, using XFire generated code, this is the SOAP request:

<soap:Body>
      <ns1:echo xmlns:ns1="http://....../";>
         <ns1:arg0>Hello</ns1:arg0>
      </ns1:echo>
   </soap:Body>

this reqiest doesn't work but i remove the namespace in the "arg0"
parameter, the service would work. Here's the working SOAP request

      <ns1:echo xmlns:ns1="http://....../";>
         <arg0>Hello</arg0>
      </ns1:echo>

is there a way to remove the namespace from arg0 ?

-- 
View this message in context: 
http://www.nabble.com/Namespace-in-parameters-tf3904177.html#a11069059
Sent from the XFire - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe from this list please visit:

    http://xircles.codehaus.org/manage_email

Reply via email to