Hi!
On Wed, 29 Jul 1998, Brian Pedersen wrote:
> > > > import java.servlet.*;
> > > > import java.servlet.http.*;
>
> Shouldn't this read javax.servlet.* ? Servlets are NOT a part of core in
> ^
> 1.1. If you set your classpath to point to jsdk then this will m
>
> What are the diference between:
>
> import java.servlet.XXX
> and
> import javax.serlet.XXX
There is no class javax.serlet.xxx ??
;-))
Jaosn T
Thanks a lot It compile!
I am very happy !
What are the diference between:
import java.servlet.XXX
and
import javax.serlet.XXX
Thanks
A Canales
PD Now I try to work with this simple Servlet... any hint???
>
ilto:[EMAIL PROTECTED]]
> > > Sent: Wednesday, July 29, 1998 5:07 AM
> > > To: Doug Welzel
> > > Subject: Re: Servlets on Linux
> > >
> > >
> > >
> > > I follow your instructions as you (and many more guys) send me.
> > >
At 11:51 29/07/98 -0500, you wrote:
>
> I just do it and in my case not work :-(
Try changing:
import java.servlet.*;
import java.servlet.http.*;
to:
import javax.servlet.*;
import javax.servlet.http.*;
Dave W.
--
David Wilkinson
I just do it and in my case not work :-(
Thanks
AC
On Wed, 29 Jul 1998, Robert Ritchy wrote:
> Try adding the following to your classpath
>
> /usr/local/java/lib/jsdk.jar
>
> instead of just:
>
> /usr/local/java/lib
>
> > > -Original Message-
> > > From: Alejandro Canales [mailto:[EMAIL PROTECTED]]
> > > Sent: Wednesday, July 29, 1998 5:07 AM
> > > To: Doug Welzel
> > > Subject: Re: Servlets on Linux
> > >
> > >
> > >
> >
; To: Doug Welzel
> > Subject: Re: Servlets on Linux
> >
> >
> >
> > I follow your instructions as you (and many more guys) send me.
> > I got this problem: When I can't compile this simple program:
> >
> > import java.io.*;
> > import ja
I'm using Apache with mod_jserv (http://java.apache.org) and it works great.
You don't necessarily need the latest jdk (1.1+) but you do need Apache 1.2.0
or better. Get the Solaris version of the JSDK (it comes with some example
servlets that you can run as soon as you have things configured).
I