Re: [xml-dev] Namespace declaration using DOM

From
Christian Nentwich <>
To
pradeepbhat <>
Date
2002-06-24T12:52:24Z
ID
<>
Thread
Re: [xml-dev] Namespace declaration using DOM
> <RootElement xmlns:c="http://pradeepbhat.com">
> <c:name>pradeep</c:name>
> <RootElement>
> My problem is how to put the xml name space declaration in RootElement.
> Some one plz help;

root.setAttribute("xmlns:c","http://pradeepbhat.com");

Christian Nentwich