Hi, I have a project, which has a server listening on port 9999. Originally the client is a flash program, which uses XML to communicate with the server. Now I want to write a web client to it(html). I want to make the modification as little as possible in the server side.
I am thinking using pure html + ajax. The problem I am facing is:
1) Can I send xml from the client side and wait for the response? If so, which is the most efficient way to develop it?
2) I think all the xml sent from client is embedded in HTTP request but my server didn't know HTTP at all. Do I need to modify my server to be a CGI program?
Is there any good framework for me to start with?