私は次のようなURLを持っています
http://steepgraph5-pc/sgs/Client/Innovator.xml
その URL から Innovator.xml を XmlDocument にロードし、次のようなパスを含むノードを取得します
C:\\Program Files (x86)\\Aras\\Innovator\\InnovatorServerConfig.xml
InnovatorServerConfig.xml を新しい XmlDocumnet にロードする必要がありますが、このパスはサーバーに対してローカルであり、クライアントからロードする必要があります。私はc#を使用しています
C# コードは次のようになります。
XmlDocument document = new XmlDocument();
document.Load("http://steepgraph5-pc/sgs/Client/Innovator.xml");
string path=document.SelectSingleNode("/ConfigFilePath/@value").Value;
XmlDocument ServerConfigdocument = new XmlDocument();
ServerConfigdocument.Load(path);