Lalith Jayaweera wrote:

> Thanks ,
>
>         I'm a student of a University,I need to study SERVLETs very much to
> Do my Final Year project,
>
> Therefore I don't wan't to learn or have a full functional WEBSERVER if it does
> not relevant to the SERVLET development.
>
> Does it mean that I can do anything using which the
> servlets are capable of only having JDK1.2 + JSWDK 1.0.(Without having JWS)
>
> That's what I need really, coz am doing a project not a business any means, My
> intention is to learn the THE POWER OF SERVLETS through my final year project.
>
> I don't want to have a BIG webserver and slow down my work.
>
> Please help me I DO REALLY HAVE A PROBLEM WITH THIS.
>
> lalith
>

Lalith,

For learning about servlets, I would expect that JDK + JSWDK is probably all you
need.  As downloaded, JSWDK can do the things you listed, and it can serve static
pages as well, so you don't need a web server in addition just for that.  This is
one major difference between the JSWDK server and the one that was in JSDK 2.1.

The things that JSWDK cannot do for you (versus a more powerful web server or
servlet engine) are things more often required for production applications, not
student projects.  Among these things:

* Server-provided security (username/password authentication),
  although you can certainly do this yourself in servlet+JSP based
  applications.

* Web server access logs (for hit tracking and so on)

* Scalability to large numbers of simultaneous accesses

* Load balancing or other distribution techniques.

* Automatic reloading of servlet classes when you change them
  (you have to restart the server).

By the way, on the topic of server-side includes, Luc correctly pointed out that
you can do includes the "JSP way" with no extra software.  However, because you
can run any servlets (not just ones you write), you could easily add a servlet
that supports the <servlet> style includes, or "*.shtml" files.  There are several
open source packages of servlets like this -- for that matter, writing a
server-side-include servlet yourself should certainly be within your grasp by the
time you finish your studies.

Craig McClanahan

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to