I've developed a small game in Flash that opens a constant XMLSocket to connect to a .NET server - everything works very well - however, anyone trying to connect to the game from school/work usually can't connect since my port (5055) is blocked by the firewall.
A friend of mine suggested using Squid to open a proxy server to act as a simple HTTP tunneler to simply receive requests on port 80 and transfer them to my server on port 5055 and then return the result to port 80 on the Flash side.
Obviously I want to do this with little (or no) changes on the server side, and simply bypass most firewalls that don't perform any packet scanning.
So does anyone have any experience with this? Will Squid be a good solution for me? Or can you at least suggest a better suggestion?
Thanks! Ron
EDIT: I forgot to mention that the site running the socket server also has IIS running on top of it, and I want to be able to both serve regular HTTP and my special socket programs on port 80.