Hi all,

My xml request looks like :

<?xml version="1.0" encoding="UTF-8"?>
<Envelope xmlns="
http://schemas.xmlsoap.org/soap/envelope/">   
        <Body>         
                <EL1 generic="2.0" xmlns="urn:uddi-org:api_v2">
                        <EL2 xmlns="urn:uddi-org:repl">abcd</EL2>      
                </EL1>
        </Body>
</Envelope>

This is parsed by SAXParser(xerces 1.4.3)

In my code of startElement method, for both EL1 and EL2, the namespace obtained is the same as EL1(i.e., the root element), even though for EL2, different namespace is used. How do I get the EL2 namespace?

Regards,

Kakoli

Reply via email to