Hi everybody,

if have a problem with the configuration of Axis 1.0:

I want the client to send a SOAP message like this:
   <?xml version="1.0" encoding="UTF-8" ?> 
   <soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"; >
      <soapenv:Body>
         ...
      </soapenv:Body> 
   </soapenv:Envelope>


But my Axis client always send the following:
   <?xml version="1.0" encoding="UTF-8" ?> 
   <soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"; 
                     xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
                     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
      <soapenv:Body>
         ...
      </soapenv:Body> 
   </soapenv:Envelope>

Is it possible to configure the client not to send the 
   xmlns:xsd="http://www.w3.org/2001/XMLSchema";, 
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
attributes ? 
If so, can you tell me how ?

Thank you very much,
Thomas

Reply via email to