Is IIS a web server or an application server?
Or is it both?
What is the difference between (or similarity between) Web and Application servers in .Net?
Thanks!
Update: On further investigation, concluded the following: It all depends on the protocol used for 'serving'
Web server: Only HTTP, and App server: any, including HTTP.
Not sure if IIS has other protocols that deviate much from HTTP, (and if it doesnt,) maybe in a stricter sense, is only a Web Server! (http://technet.microsoft.com/en-us/library/cc268242.aspx)
Application servers, by definition, should be able to serve (any) 'application'; not just browsers. (web services being a problematic area in this context)
Correct the above if wrong... thanks again.