Re: tomcat3-3.3a-2 doesn't load turbine-2.1

2002-03-20 Thread Joel Rees

Bill Barker explained:

 Please look at

http://jakarta.apache.org/tomcat/tomcat-3.3-doc/tomcat-ug.html#configuring_c
 lasses and all will become suddenly clear.  In particular, Tomcat 3.3.x
 ignores jars in $TOMCAT_HOME/lib.

Not arguing, just want to clarify this -- does this mean that the files

stop-tomcat.jar

and

tomcat.jar

which are directly under $TOMCAT_HOME/lib should not be considered as part
of the Tomcat server? Or just that the application programmer should never
put anything there?

Joel Rees
Alps Giken Kansai Systems Develoment
Suita, Osaka




--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Re: tomcat3-3.3a-2 doesn't load turbine-2.1

2002-03-20 Thread Bill Barker

stop-tomcat.jar  tomcat.jar are boot-strap jar files.  They are not really
part of the Tomcat server, since they define ClassLoaders that load the rest
of Tomcat.  However, removing them will break tomcat.sh.

The turbine jars most likely should go under $TOMCAT_HOME/lib/apps.
- Original Message -
From: Joel Rees [EMAIL PROTECTED]
To: Tomcat Users List [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Wednesday, March 20, 2002 12:48 AM
Subject: Re: tomcat3-3.3a-2 doesn't load turbine-2.1


 Bill Barker explained:

  Please look at
 

http://jakarta.apache.org/tomcat/tomcat-3.3-doc/tomcat-ug.html#configuring_c
  lasses and all will become suddenly clear.  In particular, Tomcat 3.3.x
  ignores jars in $TOMCAT_HOME/lib.

 Not arguing, just want to clarify this -- does this mean that the files

 stop-tomcat.jar

 and

 tomcat.jar

 which are directly under $TOMCAT_HOME/lib should not be considered as part
 of the Tomcat server? Or just that the application programmer should never
 put anything there?

 Joel Rees
 Alps Giken Kansai Systems Develoment
 Suita, Osaka





--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




RE: tomcat3-3.3a-2 doesn't load turbine-2.1

2002-03-19 Thread Larry Isaacs

Is it a typo that you are using turbine in the
servlet declaration, and Turbine (uppercase 'T')
in the mapping?  They should be the same.

Cheers,
Larry

 -Original Message-
 From: Huy K Dung [mailto:[EMAIL PROTECTED]] 
 Sent: Monday, March 18, 2002 7:02 PM
 To: [EMAIL PROTECTED]
 Subject: tomcat3-3.3a-2 doesn't load turbine-2.1
 
 
 Hi,
 
 I just installed tomcat3-3.3a-2 on my linux 7.2 system apache 
 1.3.20.  I deployed two web apps that I have been developed 
 and work with tomcat 3.2.3. These two web apps deployed 
 outside of webapps directory.
 
 Tomcat seems to work ok since I can run jsp's from /examples 
 and /admin through port 8080.
 
 Both of my web apps are recognized by apache and tomcat. The 
 problem is that as soon as they finish loading the index.html 
 (which redirects to turbine), I get a HTTP 404 Not Found. I 
 check the tomcat.log and see the following
 message:
 
 2002-03-18 18:41:39 - Ctx(/[myapp]) : Class not found: turbine
 
 Here is the partial of my web.xml:
 
 web-app
 servlet
 servlet-name
turbine
 /servlet-name
 servlet-class
 org.apache.turbine.Turbine
 /servlet-class
  init-param
 param-nameproperties/param-name
 !-- This is relative to the docBase --
 param-value
 WEB-INF/conf/TurbineResources.properties
 /param-value
 /init-param
 /servlet
 servlet-mapping
   servlet-nameTurbine/servlet-name
   url-pattern/turbine/url-pattern
 /servlet-mapping
 
 ...
 ...
 
 /web-app
 
 I have all the jar files (turbine as well as other libraries) 
 in [myapp]/WEB-INF/lib directory.
 
 Does anyone have the same problem that I am having? Please 
 HELP!!! Thanks
 

--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




RE: tomcat3-3.3a-2 doesn't load turbine-2.1

2002-03-19 Thread Huy K Dung

It could be a mistake when we did the web.xml originally. I've been
wondering if that would be the problem. However, it has been working with
tomcat 3.2.3 all along. I just upgraded to tomcat 3-3.3a-2 and it stopped
working. I fixed the typo and restarted tomcat - it didn't work either.

Well, one thing I can say is that the structure of tomcat 3-3.3a-2 is
different from that of tomcat 3.2.3. It could be that I don't know how to
configure the new tomcat.

Thank you!!! Please advise if you have any other ideas.

-Original Message-
From: Larry Isaacs [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, March 19, 2002 07:41 AM
To: 'Tomcat Users List'
Subject: RE: tomcat3-3.3a-2 doesn't load turbine-2.1


Is it a typo that you are using turbine in the
servlet declaration, and Turbine (uppercase 'T')
in the mapping?  They should be the same.

Cheers,
Larry

 -Original Message-
 From: Huy K Dung [mailto:[EMAIL PROTECTED]]
 Sent: Monday, March 18, 2002 7:02 PM
 To: [EMAIL PROTECTED]
 Subject: tomcat3-3.3a-2 doesn't load turbine-2.1


 Hi,

 I just installed tomcat3-3.3a-2 on my linux 7.2 system apache
 1.3.20.  I deployed two web apps that I have been developed
 and work with tomcat 3.2.3. These two web apps deployed
 outside of webapps directory.

 Tomcat seems to work ok since I can run jsp's from /examples
 and /admin through port 8080.

 Both of my web apps are recognized by apache and tomcat. The
 problem is that as soon as they finish loading the index.html
 (which redirects to turbine), I get a HTTP 404 Not Found. I
 check the tomcat.log and see the following
 message:

 2002-03-18 18:41:39 - Ctx(/[myapp]) : Class not found: turbine

 Here is the partial of my web.xml:

 web-app
 servlet
 servlet-name
turbine
 /servlet-name
 servlet-class
 org.apache.turbine.Turbine
 /servlet-class
  init-param
 param-nameproperties/param-name
 !-- This is relative to the docBase --
 param-value
 WEB-INF/conf/TurbineResources.properties
 /param-value
 /init-param
 /servlet
 servlet-mapping
   servlet-nameTurbine/servlet-name
   url-pattern/turbine/url-pattern
 /servlet-mapping

 ...
 ...

 /web-app

 I have all the jar files (turbine as well as other libraries)
 in [myapp]/WEB-INF/lib directory.

 Does anyone have the same problem that I am having? Please
 HELP!!! Thanks


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]



RE: tomcat3-3.3a-2 doesn't load turbine-2.1

2002-03-19 Thread Ignacio J. Ortega

 De: Huy K Dung [mailto:[EMAIL PROTECTED]]
 Enviado el: martes 19 de marzo de 2002 1:02

Could you test deploying the JetSpeed war? it's working for me and is a
turbine 2.1 app AFAIK, maybe you can this way check your install.. and
copy from a web.xml that is already working..

http://jakarta.apache.org/jetspeed/ war at
http://jakarta.apache.org/builds/jakarta-jetspeed/release/v1.3a2/

Saludos ,
Ignacio J. Ortega

--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




RE: tomcat3-3.3a-2 doesn't load turbine-2.1

2002-03-19 Thread Bill Barker

Does RTFM mean anything to you?

Please look at
http://jakarta.apache.org/tomcat/tomcat-3.3-doc/tomcat-ug.html#configuring_c
lasses and all will become suddenly clear.  In particular, Tomcat 3.3.x
ignores jars in $TOMCAT_HOME/lib.


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]