Link to home
Start Free TrialLog in
Avatar of aratani
aratani

asked on

Building an application that services HTTP requests

I want to build an application that can take HTTP get and post requests and process them and send a result back in an XML format.

I would like suggestions on how do I go about doing this? I want to run my own server for handling the requests and sending them to appropriate classes for handling the requests, and come back with a response.

I need some information on this asap.

Thanks

AJ
Avatar of Mick Barry
Mick Barry
Flag of Australia image

there are a variety of http server implementation available
eg. http://jetty.mortbay.com/jetty/index.html
ASKER CERTIFIED SOLUTION
Avatar of Mick Barry
Mick Barry
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of aratani
aratani

ASKER

I also want to understand the concept behind implementing a HTTP server. Can you explain any particular implementation? I was wondering about also using other languages than Java. How would I build in a different language like C/C++? My question is more aimed at the concept behind the implementation instead of an actual implementation.

I want to see how to do it in an overall way, and figure out what implementation I want to use then.