Hi:
I have a request it's a XML with the namespace and the schema like this:
-<eu:AddendaEU xsi:schemaLocation=" xmlns:eu="
However I create this
-<eu:AddendaEUndaEU xmlns:xsi=" xmlns:eu=" xsi:schemaLocation="
The XML that I have created it has a extra node. So they tell me that's wrong. If I remove this extra node I have an error. So I want to know what can I do?
This is my code:
Set objDom = CreateObject("Msxml2.DOMDocument.3.0")
ns = "xsi = "
Set objRoot = objDom.createNode(1, "eu:AddendaEU", ns)
objRoot.setAttribute "xsi:schemaLocation"," objRoot.setAttribute "xmlns:eu","objRoot.setAttribute "xmlns:xsi","
Can anybody help me?
I have a request it's a XML with the namespace and the schema like this:
-<eu:AddendaEU xsi:schemaLocation=" xmlns:eu="
However I create this
-<eu:AddendaEUndaEU xmlns:xsi=" xmlns:eu=" xsi:schemaLocation="
The XML that I have created it has a extra node. So they tell me that's wrong. If I remove this extra node I have an error. So I want to know what can I do?
This is my code:
Set objDom = CreateObject("Msxml2.DOMDocument.3.0")
ns = "xsi = "
Set objRoot = objDom.createNode(1, "eu:AddendaEU", ns)
objRoot.setAttribute "xsi:schemaLocation"," objRoot.setAttribute "xmlns:eu","objRoot.setAttribute "xmlns:xsi","
Can anybody help me?