Hi

I am trying out a CXF sample. I need to ensure that the content in the 
SOAP response is valid as per an XSD.

The response I get now looks like 

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/";>
        <soap:Body>
                <Abcd xmlns:ns2="http://www.example.com/Schemas/myspace";>
                        <ns2:Efgh kjml="1234">
...........


What I really need is as below. The addition being the xmlns, xmlns:xsi 
and xsi:schemaLocation attributes.

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/";>
        <soap:Body>
                <Abcd xmlns:ns2="http://www.avienttech.com/Schemas/myspace
"
                      xmlns=http://www.avienttech.com/Schemas/myspace"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="
http://www.avienttech.com/Schemas/myspace mysample.xsd">
                <ns2:Efgh kjml="1234">
                ...........


Any idea on how I can put in 

1. The default namespace (xmlns) or ensure that the namespace prefix ns2 
is applied on the root element also Eg: <ns2:Abcd ...?
2. How can I specify the  xmlns:xsi and xsi:schemaLocation attributes ?


Thanks
Sreejith






DISCLAIMER: 

"The information in this e-mail and any attachment is intended only for 
the person to whom it is addressed and may contain confidential and/or 
privileged material. If you have received this e-mail in error, kindly 
contact the sender and destroy all copies of the original communication. 
IBS makes no warranty, express or implied, nor guarantees the accuracy, 
adequacy or completeness of the information contained in this email or any 
attachment and is not liable for any errors, defects, omissions, viruses 
or for resultant loss or damage, if any, direct or indirect."




Reply via email to