Index: lams_tool_mindmap/src/flash/AS/ServerMindMap.as =================================================================== diff -u -re28d61401c1f05f1b3db8068f7ad76f161e90f09 -r643162984254c265d82c6c6d5f2ff34c378e1ce4 --- lams_tool_mindmap/src/flash/AS/ServerMindMap.as (.../ServerMindMap.as) (revision e28d61401c1f05f1b3db8068f7ad76f161e90f09) +++ lams_tool_mindmap/src/flash/AS/ServerMindMap.as (.../ServerMindMap.as) (revision 643162984254c265d82c6c6d5f2ff34c378e1ce4) @@ -17,8 +17,8 @@ super(new BaseConcept("", 0, false, false, "", -1), player, dictionary); this.fromXml(originalXml, false); this.loaders = new Array(); - this.pollServer = pollServer.indexOf('?')==-1?pollServer+"?":pollServer+"&"; - this.notifyServer = notifyServer; + this.pollServer = pollServer; + this.notifyServer = RequestTools.continueURL(notifyServer)+"lastActionId="+actionId; this.id = id; this.lastActionId = actionId; this.nextLocalId = 0; @@ -31,7 +31,7 @@ } protected function requestActions():void { this.pollTimer.reset(); - var request:URLRequest = new URLRequest(this.pollServer); + var request:URLRequest = new URLRequest(RequestTools.continueURL(RequestTools.antiCache(this.pollServer))); request.method = URLRequestMethod.GET; var urlVariables:URLVariables = new URLVariables("lastActionID="+this.lastActionId); request.data = urlVariables;