My manager wants me to know why we should have an application server in our web app. Currently, our web app talks directly to SQL Server.
What are some of the pros and cons of having an application server (generally speaking)
--SY
My manager wants me to know why we should have an application server in our web app. Currently, our web app talks directly to SQL Server.
What are some of the pros and cons of having an application server (generally speaking)
--SY
Application server, why?
Larry Menard
joeller
Hi!
Thanks for asking! I'm a member of the ASP.NET team, and was just popping over here to see what was going on. The best place to ask ASP.NET questions is over on the ASP.NET forums at
http://www.asp.net/welcome.aspx tabindex=1&tabid=39The short answer to your question is that application servers allow you to create an abstraction layer from your data, protecting it from people going straight into the database and screwing around with things. It also makes it easier for developing future applications as you can just code against the application layer, instead of having to re-code the application layer and the UI layer.
HTH,
PEte
ja123ee