Save AS XMLDOM

CarlesTACarlesTA Member Posts: 11
edited 2014-01-12 in NAV Three Tier
Hi folk
I'm using object XMLDom and method Save like this with Nav 2009 RTC


CREATE(objDom);

objXmlProcessingInstruction:=objDom.createProcessingInstruction('xml', 'version="1.0" encoding="utf-8"');
objDom.appendChild ( objXmlProcessingInstruction);
...

objDom.save('c:\temp\test.xml');


But I would like to promp the user the path to save the XML file.
Is there any object or a STREAM to bypass the path to the save method ?

thanks!

Carles

Comments

Sign In or Register to comment.