Sorry, the raw binary socket doesn't support TLS in this version of the Player. We're hoping to get that added in a later version. FDS does support secure RTMP if that might work for you. Matt
________________________________ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of micklerlop Sent: Saturday, April 14, 2007 2:29 PM To: [EMAIL PROTECTED] Subject: [flexcoders] Socker over TLS I'm trying to communicate to a server using a socket connection but I'm not sure how to make it use TLS. I can get connected using the code below. socket.connect("myserver.com", 443); However, it seems to be using SSLv2 and v3 according to ethereal. When I do the following socket.writeUTFBytes("GET /something HTTP/1.0\r\n\r\n"); socket.flush(); It never dispatched a socketData event. My guess is that I communicate with the server properly using TLS, I will an expected result. Can anybody advice? TIA

