Hello,
I have a Web application running on an IIS server, which is instantiating a combo control and loading it with data from an XML file:
myCombo.loadXML("http://web-dev/getdirectionslist.xml", doAfterLoading);
Both the web application and the XML file are sited on pdweb-dev. The application runs successfully and populated the combo control.
However, if I move the XML file to another IIS server here, called web-test, and change the code to:
myCombo.loadXML("http://web-test/getdirectionslist.xml", doAfterLoading);
… the combo control no longer populates from the XML file. Our network administrator assures me the problem is not security-related.
The DHTMLX documentation at:
docs.dhtmlx.com/doku.php?id=dhtm … bo_loadxml
does not indicate the application and XML files must be sited on the same server. So my question is, why isn’t the application combo control loading the XM file successfully?
Any help would be greatly appreciated! Thank you.