| Author |
update an XML doc
|
Anish Kuti
Greenhorn
Joined: May 12, 2008
Posts: 25
|
|
i want to update XMl doc ..specifically the namespace .
<?xml version="1.0" encoding="UTF-8"?>
<storage:Root xmlns:pic="http://www.pic.com/schema/132/lonm" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.pic.com/schema/132/lonm">
<Employee>
<Name>Arabind</Name>
</Employee>
</Root>
How can I update this xml namespace using JAXP or XMLbean(preferable ) or any dom
xmlns:pic="http://www.pic.com/schema/132/lonm" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.pic.com/schema/132/lonm"
with
xmlns:pic="http://www.pic.com/schema/133/lonm" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.pic.com/schema/133/lonm"
Please help ..
|
 |
 |
|
|
subject: update an XML doc
|
|
|