Hi,

I got the same error. I changed the file FusionSF.js at line 1710 the
original was:

var fetchAppDef = function appDefUrl, sessionId, onAppDefFetched) {
        var xhr = getXmlHttpRequest();
        xhr.open("GET", mapAgentUrl +
"?OPERATION=GETRESOURCECONTENT&VERSION=1.0.0&LOCALE=en&CLIENTAGENT=MapGuide+Developer&RESOURCEID="
+ appDefUrl + "&FORMAT=text%2Fxml&SESSION="+ sessionId, true); 

I changed to:

var fetchAppDef = function(mapAgentUrl, appDefUrl, sessionId,
onAppDefFetched) {
        var xhr = getXmlHttpRequest();
        xhr.open("GET", mapAgentUrl +
"?OPERATION=GETRESOURCECONTENT&VERSION=1.0.0&LOCALE=en&CLIENTAGENT=MapGuide+Developer&RESOURCEID="
+ appDefUrl + "&FORMAT=text%2Fxml&SESSION="+ sessionId, true); 

and passed the mapAgentUrl as argument at line 447

fetchAppDef(mapAgentUrl, appDefUrl, Fusion.sessionId, onAppDefFetched);

and I am using the FusionSF.js insted Fusion-compressed.js




--
Sent from: http://osgeo-org.1560.x6.nabble.com/MapGuide-Users-f4182607.html
_______________________________________________
mapguide-users mailing list
[email protected]
https://lists.osgeo.org/mailman/listinfo/mapguide-users

Reply via email to