• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Which Web Server?

 
Ranch Hand
Posts: 89
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I want to play around alittle with JSP, what I need to know, is what web server should I use?
I want:
- easy of installation
- support JSP
- secure
- run on windows 98
- prefer written in java, but not neccassary
- Free
I want basicilly a simple server to hosts a webpage and play with JSP, but secure.
I have looked at vqServer, which looks good, but has not been updated for more than one year.
Any ideas?
Thanks,
Dean
 
Ranch Hand
Posts: 152
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Apache's Tomcat is the reference implementation for
JSP 1.2. It's open source, written in Java, widely used,
and well supported.
http://jakarta.apache.org
HTH,
Joe
 
Dean Reedy
Ranch Hand
Posts: 89
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is Tomcat the server or a server plu in?
 
Dean Reedy
Ranch Hand
Posts: 89
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Plugin?

Do I have to install apache and than Tomcat?
 
Ranch Hand
Posts: 144
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You install apache first, then Tomcat.
Tell you what, I've got a "secret" web page with documentation on how to set up apache and Tomcat on Win 2k that's left over from a consulting gig I did last year. Go take a look at www.brouelette.com/sabo and d-load the two files there. That should get you set up with apache and tomcat enough to at least start playing with it.
Hope it helps.
Greg
 
Author and all-around good cowpoke
Posts: 13078
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
NO! You do NOT have to install an Apache web server! Tomcat works just fine as a complete server and servlet/JSP engine. It may not have the high performance for serving static pages that Apache does, but it is perfect for playing around with JSP, and much simpler.
Bill
 
Dean Reedy
Ranch Hand
Posts: 89
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Great information! Thanks everyone.

What would the highlevel differences be between the Apache Server and Tomcat than?
How do they work together?
What can thgey each do on their own?
To me it sounds as if they both are doing some of the same tasks.
Thanks,
Dean
 
Sheriff
Posts: 4313
Android IntelliJ IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Also, check out the HP Application Server 8.0, It can act as a standalone Web Server with JSP (and even EJB capabilities, if you want them) or can work in combination with a traditional web server.
Best part is, its totally free! -- It also comes with a snazzy deployment tool called RadPak as well as a slew of trailmaps to get you up to speed.
You can also get a copy of the HPAS CD in the current issue of the JDJ (and last month's issue as well).
 
reply
    Bookmark Topic Watch Topic
  • New Topic