Where does MSXML IXMLDOMDocument::save save? I mean when it's called with a file name argument.
CComPtr< IXMLDOMDocument > doc;
p->get_doc( &doc );
doc->save( CComVariant( L"C:\\pathto\\mydoc.xml" ) );
Where will "C:\pathto\mydoc.xml" be?
Consider that the XMLDOMDocument is out of process, in this case located on a different physical machine. Will it save it to "C:..." of the calling machine, or the server hosting the COM object?