Hi there, We had a http website and we had replaced all the webservices with remote objects using fluorine fx for .NET. It was working fine until we recently secured the website and it is now HTTPS enabled. After this change, fluorine services are failing completely. It doesn't even open the console.
Here's the piece of code that calls fluorine service: var url:String = 'https://some.website.name.com/SFE/GateWay.aspx'; var channel:SecureAMFChannel = new SecureAMFChannel("my-secure-amf", url); //var channel = new AMFChannel("my-amf", url); var channelSet:ChannelSet = new ChannelSet(); channelSet.addChannel(channel); ro = new RemoteObject("fluorine"); ro.channelSet = channelSet; ro.source = "FluroineFxSFEService.PerformanceDetail"; ro.showBusyCursor = true; ro.addEventListener("fault",onServiceFault); ro.GetTerritoryPerformanceTable.addEventListener("result",GetTerritoryPerformanceTable_resultHandler); //call the service ro.GetTerritoryPerformanceTable('portal',1,4,"MONTH","ALL PRODUCTS","DOLLARS","014A|00|NATIONAL",''); And this is the fault event message that I get: faultCode:Client.Error.MessageSend faultString:'Send failed' faultDetail:'Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Status 404: url: 'https://sfe.au.imshealth.com/SFE/GateWay.aspx'' I tried using both AMFChannel as well as SecureAMFChannel. Both failed. Has anybody come across this issue? Appreciate your help... Cheers!
