I have some modules that use local webservices . The URL's for the webservices are defined as 'relative' paths.
eg: this.ws = new mx.rpc.soap.WebService(); this.ws.wsdl = "services/myservice/myservice.wsdl"; this.ws.endpointURI = "services/myservice/myService.php"; After installing the hotfix 2 , they have stopped working .. :( . The reason , I believe , is the path that is being used .. It now seems that the path is the path where the module was loaded from and not the path the 'parent' was loaded from. prior to hotfix I see the following in my apache log.. GET /app/services/myservice/myservice.wsdl 200 - after hotfix I see GET /app/modules/services/myservice/myservice.wsdl 404 - Is this a bug ?

