tags:

views:

36

answers:

3

I have a (old) web app that is using Jrun and IIS. I would like to replace JRun with something free and OS. Can you recommend something that I can just install and copy the app jar files over and be up and running?

A: 

I use Jetty. Very easy to use. Not sure if you have EJBs - the version of Jetty I use is just Servlets and JSP.

I've also used Tomcat and JBoss. They work too.

Cheeso
+1  A: 

If you don't need a full J2EE (damn, that must be old software), Connecting IIS with Tomcat using isapi_redirect describes how to front Apache Tomcat with IIS (covers version 7).

If you are running EJBs, I would consider using the (appropriate) version of JBoss and follow the same procedure as above to front JBoss with IIS.

Pascal Thivent
A: 

WebsphereCE from IBM is also open source. It is a scaled down version of the paid version. Some people reported success using it with IIS but you might want to use either Tomcat or Jetty if all you have are servlets and JSPs.

BrainOverflow