Application server

  • Thread starter Thread starter Chak
  • Start date Start date
C

Chak

This is a dumb question - but in J2EE there is the concept of an Application
server which is started and shut down just like any other server. On the
other hand, a .NET windows application or console application has no such
concept of an application server. What is the difference ?

Thanks.
 
Chak said:
This is a dumb question - but in J2EE there is the concept of an Application
server which is started and shut down just like any other server. On the
other hand, a .NET windows application or console application has no such
concept of an application server. What is the difference ?

You typically run .NET server code either within a Windows Service or
within IIS.
 
Chak said:
This is a dumb question - but in J2EE there is the concept of an
Application server which is started and shut down just like any other
server. On the other hand, a .NET windows application or console
application has no such concept of an application server. What is the
difference ?

Windows is the application server for .NET. The services provided by a J2EE
application server are all provided by the OS or are included in the .NET
framework.

Remember that .NET was designed from the beginning to run enterprise
applications, so runtime containers, object persistence, transaction
support, reliable messaging, etc, were provided for from the outset.

David
 
Back
Top