FMS connection to external https server
Hello and sorry, if this question is already been asked/answered. All I can find is this discussion (http://forums.adobe.com/thread/773705?tstart=30), but there is no answer to my case.
Our company is developing an application, which connects to https server when a client is joining/leaving the server. Here is a part of main.asc file:
application.onConnect = function(client, meetingId, mettingAttendeeId){
if(mettingAttendeeId){
trace('User client : "'+this.name+'" connected');
application.meetingId = meetingId;
client.mettingAttendeeId = mettingAttendeeId;
(new LoadVars()).send("https://www.domain.com/wsdev/AddMeetingAction.aspx?type=login&meetingId="+application.meetingId+"&mettingAttendeeId="+client.mettingAttendeeId);
}else{
trace('Player client : "'+this.name+'" connected');
}
Same is for application.onDisconnect.
The problem is, there are no packets coming for the https server. I have tried with https://www.domain.com:10000 - no difference. When I change to url to http://www.domain.com, even of port 443, there is no problem, the packets arrive.
I have checked the SSL Section of Server.xml (I will paste it, if needed), but I can not find any errors there. Even if the sertificate is wrong, I can not see any packets to the https port.
Can you please tell me what am I doing wrong? I have tried with 3.3.3, then upgraded to 3.3.5 - it's the same, still no traffic on https port.
Regards,
