Hi All
I have attached code with a little part of XML.
The same type of code is working with VB. Now I am facing problems of deriving values of IMAGE tag
Output.xml contains values with Jpeg file
Example like :-
<Image ImageFormat="JPEG" dt:dt="bin.base64" xmlns:dt="urn:schemas-microsoft-com:datatypes">/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoM </Image>
oXML = CreateObject('Microsoft.XMLDOM')
If oXML.Load('C:\Output.xml')
mynode=oxml.selectsinglenode('//Image ')
if ISNULL(mnode)
wait wind 'IMAGE NOT SELECTED'
else
obj_Stream=createobj('ADODB.Stream')
obj_Stream.Type=1
obj_Stream.open
obj_Stream.write(mynode.nodeTypedValue)
obj_Stream.SaveToFile("C:\outfile2.jpeg"

obj_Stream.Close
obj_Stream = NULL
endif
Else
wait wind ("response file not loaded"

EndIf