Harman Patil (Editor)

Comparison of application servers

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

Application servers are system software upon which web applications or desktop applications run. Application servers consist of web server connectors, computer programming languages, runtime libraries, database connectors, and the administration code needed to deploy, configure, manage, and connect these components on a web host. An application server runs behind a web Server (e.g. Apache or Microsoft Internet Information Services (IIS)) and (almost always) in front of an SQL database (e.g. PostgreSQL, MySQL, or Oracle). Web applications are computer code which run atop application servers and are written in the language(s) the application server supports and call the runtime libraries and components the application server offers.

Contents

Many application servers exist. The choice impacts the cost, performance, reliability, scalability, and maintainability of a web application.

Proprietary application servers provide system services in a well-defined but proprietary manner. The application developers develop programs according to the specification of the application server. Dependence on a particular vendor is the drawback of this approach.

An opposite but analogous case is the Java EE platform. Java EE application servers provide system services in a well-defined, open, industry standard. The application developers develop programs according to the Java EE specification and not according to the application server. A Java EE application developed according to Java EE standard can be deployed in any Java EE application server making it vendor independent.

This article compares the features and functionality of application servers, grouped by the hosting environment that is offered by that particular application server.

BASIC

  • Run BASIC - An all-in-one BASIC scriptable application server, can automatically manage session and state
  • C

  • Lwan - Small-footprint, highly-scalable web server.
  • C++

  • Tuxedo - Based on the ATMI standard, is one of the original application servers.
  • Tntnet - Includes a template engine which allows embedding C++ code in HTML pages. Templates are compiled before run-time, and thus very fast. Multi-threaded, supports object lifetime via scoped variables.
  • CPPSERV - C++ servlet container.
  • Wt - A web toolkit similar to Qt permitting GUI-application-like web development with built-in Ajax abilities.
  • POCO C++ Libraries - A set of open source class libraries including Poco.Net.HTTPServer.html
  • CppCMS
  • uWSGI
  • Enduro/X - A middleware platform for distributed transaction processing, based on XATMI and XA standards, open source
  • Go

  • Enduro/X ASG - Application server for Go. This provides XATMI and XA facilities for Golang. Go application can be built by normal Go executable files which in turn provides stateless services, which can be load balanced, clustered and reloaded on they fly with out service interruption by means of administrative work only. Framework provides distributed transaction processing facility for Go.
  • Haskell

  • Happstack
  • JavaScript

  • Broadvision - Server-side JavaScript AS. One of the early entrants in the market during the eCommerce dot-com bubble, they have vertical solution packages catering to the eCommerce industry.
  • Wakanda Server - Server-side JavaScript application server integrating a NoSQL database engine (WakandaDB), a dedicated HTTP server, user, and group management and an optional client-side JavaScript framework.
  • Node.js - implements Google's V8 engine as a standalone (outside the browser) asynchronous Javascript interpreter. A vigorous open-source developer community on GitHub has implemented many supporting products, notably npm for package management and Connect and Express app server layers.
  • Phusion Passenger
  • LPC

  • Dworkin's Game Driver (DGD)
  • Microsoft

    Microsoft positions their middle-tier applications and services infrastructure in the Windows Server operating system and the .NET Framework technologies in the role of an application server:

  • Internet Information Services web server
  • Windows Server AppFabric
  • .NET Framework (Windows Communication Foundation, Web Services, .NET Remoting, Microsoft Message Queuing (MSMQ), ASP.NET, ADO.NET)
  • Distributed Transactions, COM+
  • Active Directory Lightweight Directory Service (ADLDS), Active Directory Federation Services (ADFS), Authorization Manager
  • Third-party

  • Mono - Developed by Novell, Inc., licensed under GPL
  • Base4 - An open source project
  • TNAPS Application Server - Freeware, developed by TN, LLC
  • Objective-C

  • GNUstepWeb - WebObjects 4.5 compatible, licensed under LGPL
  • Python

  • CherryPy
  • Django-cms - By Divio AG
  • Google App Engine
  • Gunicorn
  • mod_python
  • mod_wsgi
  • Phusion Passenger
  • Paste
  • Tornado
  • Twisted
  • Web2py
  • Zope - By Zope, Inc.
  • Zato
  • Perl

  • Catalyst
  • Dancer
  • Mojolicious
  • Plack
  • mod_perl
  • PHP

  • PHP-FPM
  • Quercus
  • Zend Server
  • appserver.io
  • Ruby

  • Mongrel
  • Phusion Passenger
  • Smalltalk

  • Seaside - A continuations based web application server
  • Tcl

  • AOLserver - Released as NaviServer before being bought by AOL in 1995
  • References

    Comparison of application servers Wikipedia


    Similar Topics