
Signature
This signature intentionally left blank.
>>>I'm confused by all the Java web frameworks out there.
>>>
[quoted text clipped - 18 lines]
> (To OP) Once you have something simple going, then evaluate the
> frameworks. That way you understand what the frameworks really do.
I'm in the same boat as the OP. I've read a bit about JSP, and even less
about servelets, and I'd like to get my feet wet. The machine I use to
develop at home runs Windows XP. Is there an easy way package I can get to
quickly get a server up and running to play around with?
I've heard getting JSP and Apache working together is sometimes a real
pain.
- Oliver
zero - 10 Jan 2006 22:53 GMT
> I'm in the same boat as the OP. I've read a bit about JSP, and
> even less
[quoted text clipped - 7 lines]
>
> - Oliver
Apache Tomcat is the reference implementation for Servlets/JSPs, so I don't
think that should cause problems. Maybe you heard about IIS and Apache?
On my development machine I have IIS 5.1 on XP Pro SP2 working together
with Apache Tomcat 5.5 for Servlets and JSPs - it works side by side with
ASP.NET and PHP without any problems. Before people jump on me about
safety issues, let me again stress this is a development & testing machine.
You don't really need IIS btw, Tomcat has everything you need to get
started. So I suggest you just download it, get a book or online tutorial
about Servlets/JSP, and jump right in. I think you'll find it's not that
complicated.

Signature
Beware the False Authority Syndrome
David Segall - 11 Jan 2006 14:58 GMT
>>>>I'm confused by all the Java web frameworks out there.
>>>>
[quoted text clipped - 23 lines]
>develop at home runs Windows XP. Is there an easy way package I can get to
>quickly get a server up and running to play around with?
Sun suggest, and give away, Studio Creator.
<http://developers.sun.com/prodtech/javatools/jscreator/ea/jsc2/index.html>.
It includes a testing server and DBMS.
> I've heard getting JSP and Apache working together is sometimes a real
>pain.
There is probably no need to do this. A server that can serve JSP
pages can also serve HTML pages. Using two different cooperating
servers is sometimes recommended for speed and may be required if you
want to use server-side processing other than Servlets (e.g. PHP or
Perl).
In order to install Tomcat or Sun's Application Server
<http://java.sun.com/javaee/glassfish/> as a web server all you need
to do is to change the port it listens on to 80.