I am planning a web service to be written in C ++. The goal is to be able to select more or less any web server to manage the service. For this to become true, I obviously have to choose a standardized interface between web servers and applications.
The known methods that I have heard of are as follows:
Now, since I have absolutely no experience using these interfaces, I really don't know what to choose. However, I have some requirements.
- should be fast enough (from what I heard it pretty much eliminates CGI)
- easy to use in a clean C / C ++ environment (e.g. libraries must be available)
- should provide HTTP 1.1 support (dunno, if that matters)
Thanks for any suggestions :)
Milan source
share