XQuery new namespace added [message #677404] |
Tue, 17 September 2019 06:43 |
|
hakemcag
Messages: 1 Registered: September 2019
|
Junior Member |
|
|
Hello you all,
I have an XML file which I extracted using XQuery. It worked fine, but then the specification changed a little bit and a new namespace is added to the XML file.
This namespace can be ignored, but as much as i tried, i did not succeed.
The namespace ASQMessage and Payload should be ignored.
Anyone an idea about how to accomplish this?
Thanks in advance.
<?xml version="1.0"?>
+<CData xmlns="some_url">
So, between CDATA and </CDATA> it worked fine.
---------------------------------------------------------------------------------------------------------------
{<?xml version="1.0"?>
-<ASQMessage xmlns=some_url/asq/Message>
-<MsgHeader>
-<PartyInfo>
-<From>
<PartyId>CEP:XXXX</PartyId>
</From>
-<To>
<PartyId>ASQ</PartyId>
</To>
</PartyInfo>
-<MsgInfo>
<Service>batch</Service>
<Action>update</Action>
</MsgInfo>
</MsgHeader>
-<Payload base64encoded="false">
+<CData xmlns=some_url/asq/cap/mh/data>
</Payload>
</ASQMessage> }
|
|
|