vote up 2 vote down star

Hi all,

I've written a Flash (Flex) client connecting to a back-end server to exchange data.

I've also written my server from scratch, and it serves two purposes:

(1) Web (HTTP) Server- By default listens on port 80

(2) Socket/Application- Server - By default listens on port 443

Just FYI, both servers run in the same process space, for convenience reasons. They are not expected to handle massive loads, so I'm fine with that.

As soon as the Flash client is served to the browser from the HTTP socket, the client attempts to open an XMLSocket to the Socket/Application server.

I now want to implement HTTP tunneling, so that my client can connect to the Application server even if the user is behind a firewall. I do not want any external servers involved (proxies etc.) - simply use the servers I already have.

My questions:

(1) Is it better to use port 443 for that? (does it better fool firewalls?)

(2) As far as I can see, what I am required to do, is just ensure that my actual application data is simply encapsulated in an HTTP structure (preceded by a dummy HTTP header), both from the client and server sides. Is that so or am I missing anything here?

(3) Do I need to keep hiding/encapsulating my data every message I send through the socket, or can I just encapsulate the first message when opening the connection?

Thanks in advance guys! Fuzz

flag
Why not combine both on port 80? There are a number of HTTP based RPC technologies out there such as XMLRPS, REST or even SOAP ... why not use one of those? Just define different urls for web requests and application requests – Gregory Mostizky Jul 26 at 13:04
You've written your server from scratch? Operating system and all? I somehow doubt it. – Sneakyness Jul 26 at 13:05
Errm, I'm pretty sure he meant the web-server. Not the hardware or O/S.. – cwap Jul 26 at 13:30
As Meeh wrote, I meant the web-server. I have no intentions of implementing an operating system. I did that since I needed a slick, small and flexible web server for my needs. It will run on an embedded device, so I did not want any heavy processes running there. – Fuzzy Jul 27 at 12:34
Gregory - yes, that is indeed one of the options (running both on the same port). I can implement that in no time, the question is is this the right approach, or will I be better off tunneling on a different port (specifically 443 which is associated with HTTPS). – Fuzzy Jul 27 at 12:35
show 1 more comment

1 Answer

vote up 2 vote down

Don't reinvent the wheel - use remoting via AMF protocol. AMF an HTTP-based binary format that performs serialization between ActionScript (MXML) and server side languages. Technically, this is HTTP tunneling. Adobe offers BlazeDS (open source) and LCDS (commercial) implementations of AMF for AS/Java, but there are third-party implementations of AMF for AS/PHP, AS/Python, AS/Ruby, AS/.Net.

BTW, AMF is an open source format.

link|flag
Thanks Yakov, I'll read about it, although I have a feeling this will involve running another proxy/server/process, which I have no intention to do. My web server runs in an embedded environment. There is a reason I wrote it from scratch, and that is in order to have full control over it, with minimal overhead. Another server/service is unacceptable in my case I'm afraid. – Fuzzy Jul 27 at 12:32
OK, I've read about AMF, BladeDS and LCDS. Essentially this is an killer overshoot for me as it provides something I don't need (object remoting, since I use my own XML content for communications and don't send too many objects just simple commands/replies), but more importantly this does not seem to replace HTTP tunneling at all. The whole idea about tunneling is that it bypasses firewalls. I could not find any evidence that your proposed technologies answer that need. – Fuzzy Jul 27 at 12:57
To the best of my knowledge, during the last 8 years no firewalls restrict AMF (binary) content. Your Flex app talks to a BlazeDS/LCDS servlet over the port 80 or 443. You don't need to use proxy unless your flex app needs to connect to a 3rd party server that doesn't have a crossdomain.xml with proper permissions. – Yakov Fain Jul 28 at 23:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.