Integrating Apache2.0.39 and Tomcat4.0.4 using AJP connector

2002-07-09 Thread shanmugampl
Hi, How can the Apache WebServer(2.0.39) integrated with Tomcat4.0.4 using the AJP connector. Tomcat4.0.4 does not have a workers.properties file. Should we write one. Where can i get the tar file for modjk?. Can anyone who has done this integration guide me through Thanks Shanmugam.PL

Filters, FOP JSPs

2002-07-09 Thread Geddes, Mark (ANTS)
Hi, I am experimenting with a servlet filter to generate PDF from the XSL:FO content of the servlet response. This works fine when the filter is mapped to a servlet that generates the response. However, as soon as I try to use a JSP to generate the same response I run into problems. The browser

Re: Feasibility question

2002-07-09 Thread Iain Downie
Thanks to all those who replied on my feasibility question (particularly Andy and Will). The responses were varied, from 'not possible at all' through to 'cookies' and onto 'singleton classes' and 'DB accessing'. All very informative, and food for thought - should make for an interesting

Re: Mac OS X, Tomcat 4.0.4, MySql configuration denies access

2002-07-09 Thread Martin Jacobson
Jack Park wrote: Thank you! I've now got even more food for thought. You used JDBCRealm. Here is what the Tomcat how-to on that says: This document describes how to configure Tomcat to support container managed security, by connecting to an existing database of usernames, passwords,

JSP variable problem

2002-07-09 Thread Raphael Di Cicco
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I'm faced with a problem that is maybe really easy to solve... I have n JSP pages, and they all have a form. Each page contains a JAVA object associated to it (called cRessource). Because I want to keep these objects within the page, this is

RE: I fail to get green arrow for filter status.. IIS with Tomca t

2002-07-09 Thread Anoop Kumar V
hey Andrew, i finally cdnt get it to work on TC 3.2.4. so i chucked it and carried on with 4.0 and it works like clockwork, hardly any reconfiguration necessary.. thank a lot for all ur help, but tell me one thing.. if i give http://localhost, wd it stop serving the IIS files.coz i fail to see

AW: JSP variable problem

2002-07-09 Thread Ralph Einfeldt
Why do you store the objects in the session, if you want to detroy them whenever you leave the the page ? Why not use something like this % Object mResource = ... % This kind of object will just live as long as the request is processed. If you want to store objects that have to be accessed

ActionServlet question

2002-07-09 Thread info
Hi, I have a general problem in understanding a Action servlet. Is the servelt always involved when I access the belonging URL? e.g.: action path=/trinkwasserform type=trinkwasser.TrinkwasserInputAction name=trinkwasserInputForm scope=session

mod_jk problem

2002-07-09 Thread COLLINEAU Franck FTRD/DMI/TAM
Greetings, i try to start apache with mod_jk. I compiled mod_jk using the source-dist and copy mod_jk.so to APACHE/libexec. The lines in my httpd.conf are: LoadModule jk_module libexec/mod_jk.so AddModule mod_jk.c when i try to start apache i got this error: ./bin/apachectl start Syntax

Error-Handling

2002-07-09 Thread Jens Thielen
Hi, i need help! i want to handle 404-Errors! If there is a 404-Error, tomcat should show an error-page. I'm using Tomcat 3.3 and i put the following in my web.xml error-page error-code404/error-code location/fehler.mb1/location /error-page but

AW: Error-Handling

2002-07-09 Thread Ralph Einfeldt
What error(s) do you get ? Try using fehler.html or fehler.jsp. -Ursprüngliche Nachricht- Von: Jens Thielen [mailto:[EMAIL PROTECTED]] Gesendet: Dienstag, 9. Juli 2002 11:58 An: [EMAIL PROTECTED] Betreff: Error-Handling I'm using Tomcat 3.3 and i put the following in my web.xml

Mac OSX

2002-07-09 Thread Matt Preston
Hi, I have just installed Tomcat 4.0.4 on Mac OSX (10.1) and have had a hell of a time. Firstly I had the problem with not using gnutar (documented on this list), but that was relatively simple to work around. The big problem was with the classloaders. It proved very difficult for me to

Re: Error-Handling

2002-07-09 Thread info
Did you check your Server-Log for any errors during parsing the web.xml after you restartet your container? Sometimes I made the experiance that it will not take the web.xml. Then a Server newstart works best. All the tags need to be in a certain order (lock into the servelet spec) Rainer

AW: Error-Handling

2002-07-09 Thread Jens Thielen
i used fehler.jsp too, but there is still the tomcat error page 404 Not found request: /wkorb/lala.jsp -Ursprüngliche Nachricht- Von: Ralph Einfeldt [mailto:[EMAIL PROTECTED]] Gesendet am: Dienstag, 9. Juli 2002 12:03 An: Tomcat Users List Betreff: AW: Error-Handling What error(s) do

Classpath problems

2002-07-09 Thread David Goodenough
I am having the inevitable initial classpath problems setting up my first servlet under Tomcat 4.0.3 (the one shipped with Sun JWSDP). In the source code I see there are debug levels and some increased debug levels, but I am unsure about how I am supposed to enable them. I tried setting an

Tomcat startup script

2002-07-09 Thread Kapil Sharma
Hi, I am using Solaris 8 with tomcat 3.3.1+apache 1.3.26. Can anyone send me a startup script for tomcat. I am also running tomcat as different user so have to take care of that also. The script should start using that user.. Cheers jerry -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED]

Where can I find compiled mod_webapp.so for Windows?

2002-07-09 Thread @Basebeans.com
Subject: Where can I find compiled mod_webapp.so for Windows? From: Christopher Cheng [EMAIL PROTECTED] === I was only able to get the source. Where can I find the latest version of mod_webapp.so for Windows? (I do not have a Windows C compiler installed) -- To unsubscribe, e-mail:

Re: Mac OSX

2002-07-09 Thread Martin Jacobson
Matt Preston wrote: Hi, I have just installed Tomcat 4.0.4 on Mac OSX (10.1) and have had a hell of a time. Firstly I had the problem with not using gnutar (documented on this list), but that was relatively simple to work around. The big problem was with the classloaders. It proved

CGIServlet cannot find my perl script - second post

2002-07-09 Thread Richard Haber
If there is anyone here who can help me with this problem, I would really appreciate hearing from you. Surely, someone out there must know how to configure CGIServlet! If there is something wrong with this post, I would like to know that also so I can correct it. I am running Apache 2.0.36

RE: Using MANAGER for servlets in ROOT

2002-07-09 Thread Cox, Charlie
you have to create a session by using request.getSession(). Once you are creating sessions, then they will show up in manager. see session-timeout in web.xml to decrease the session timeout. Charlie -Original Message- From: Steve Wong [mailto:[EMAIL PROTECTED]] Sent: Monday, July

missing return statement error?!??!

2002-07-09 Thread staginfo-ar
Hi, This is not a tomcat's question. I've made a class with a find method. When I compile it with ANT, I 've a missing return statement error whereas i've specified return type. Here is the code : public String [] find(String mail) { String system= qs44a6005; String

RE: Classpath problems

2002-07-09 Thread Shapira, Yoav
Howdy, The simplest way: look into server.xml, change all debug=0 to debug=99. This will get more info than you probably want, but that's (usually) a good thing when debugging ;) As an aside: classpath problems typically don't require that much debugging information. If you get a class not

Re: missing return statement error?!??!

2002-07-09 Thread Laura
It migth be that you has to inizialize the array Tab: String[] Tab=new String[5]; Laura - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, July 09, 2002 2:45 PM Subject: missing return statement error?!??! Hi,

RE: missing return statement error?!??!

2002-07-09 Thread Shapira, Yoav
Howdy, 1) Please include OFF-TOPIC in the subject line if you post off-topic message to a list. 2) Better yet, don't post off-topic messages to a list. A message like this belongs in comp.lang.java.help or similar groups. 3) You need a return statement in your catch clause as well to avoid the

Re: missing return statement error?!??!

2002-07-09 Thread Eric Blische
I think you need a return statement at the end of the method, too, in case an exception is caught, handled, and control continues to the end of the method. Eric - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, July 09, 2002 8:45 AM

User Login Tomcat 4.1x

2002-07-09 Thread info
Hi, I was looking arround for the documentation on 4.1 User Login tacilities but could not find it. Is there one already? thanks, Rainer

RE: Mac OSX

2002-07-09 Thread Matt Preston
That's not the way to do it! :-) All that was neccessary for me was to set two environment variables: JAVA_HOME = /usr CATALINA_HOME = path to tomcat In my case, I have multiple tomcat versions installed, and I set a symbolic link to the one I want to use in /usr/local/tomcat. Hence, I use

Re: missing return statement error?!??!

2002-07-09 Thread Arshad Mahmood
The compiler is correct, what happens if an exception is raised. It goes to your catch block and writes the debug but then there is no return after that. Maybe you should be re-raising the exception again. Regards. - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc:

RE: Connection Pooling?

2002-07-09 Thread Meichun Li
Thanks for everyone's help and thanks for the guide to this URL. I followed the steps posted and my connection pool is working now ;-) Thanks! Meichun On Thu, 4 Jul 2002, Les Hughes wrote: I think I should set up a cron job to email this link out every day

RE: missing return statement error?!??!

2002-07-09 Thread Steven Van Loon
It's normal that you get a missing return statement error because you are missing a return statement :) If an exception is thrown in the try-block, you go to the catch and after the catch-block there is no return-statement so you've got to return something at the end. .

Réf. : Re: missing return statement error?!??!

2002-07-09 Thread staginfo-ar
Thanks everyone! I think i need some coffee -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Xerces ClassNotFound Problem in 4.0.1

2002-07-09 Thread Dr. Edward R. Jones
Hi, I've looked high and low for documentation on dynamic class loading for tomcat 4.0.1. Can't seem to find an answer to this problem. I'm trying to use Xerces-J 2.0.1 parser in a class using the tomcat. I receive the following message: Preparing to create XML Reader using Xerces Parser

cannot run tomcat 4.0.4 jsp examples

2002-07-09 Thread Sylvain Pivette
I cannot run Tomcat 4.0.4 jsp examples but servlet examples work fine ! (NT4, Apache 1.3.26, Jdk 1.3) ... root cause java.lang.NoSuchMethodError at org.apache.jasper.compiler.TldLocationsCache.processJars(TldLocationsCache.j ava:202) at

customised error pages rather than tomcats error pages

2002-07-09 Thread AMRAN121
Hi I would like to know how can I set tomcat to output my own custom error pages when i get error 403, 404, 500 and so on rather than tomcats error pages. Thanxs -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: customised error pages rather than tomcats error pages

2002-07-09 Thread Douglas, Rory
Title: RE: customised error pages rather than tomcats error pages Try adding these definitions to your web.xml error-page error-code404/error-code location/Failure.jsp/location /error-page error-page exception-typejava.io.IOException/exception-type location/Failure.jsp/location

Re: customised error pages rather than tomcats error pages

2002-07-09 Thread rsequeira
Add an error-page directive to your web-application's web.xml file: error-page error-code404/error-code location/error.html/location /error-page Please see the Deployment Descriptor section of the servlet specs for more information. RS [EMAIL PROTECTED] on 07/09/2002 09:16:52

Re: customised error pages rather than tomcats error pages

2002-07-09 Thread AMRAN121
ok thanxs -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

I got error 404 when retrieving jsp files...

2002-07-09 Thread El JC
I think it is a configuration probleme, but i don't' know how to resolve it.. I use Apache 1.3.23 with mod_jk and tomcat 3.3 OS os linux RedHat 7.3 everything work (html, php) but jsp send me error 404... Thanks anybody @+ - JaySee -

Re: cannot run tomcat 4.0.4 jsp examples

2002-07-09 Thread rsequeira
You probably have a stale copy of jasper-compiler.jar. I'd suggest installing the latest Tomcat (I think it's 4.1.7). RS Sylvain Pivette [EMAIL PROTECTED] on 07/09/2002 10:10:15 AM Please respond to Tomcat Users List [EMAIL PROTECTED] To:[EMAIL PROTECTED] cc: Subject:cannot run

tomcat 4.03 configuration with IIS 5.0

2002-07-09 Thread Diana McLean
I followed the instructions for configuring tomcat to run with IIS but have a few questions: - how do I confirm that the configuration works? I already have the green arrow up. I am now getting the javax.servlet.ServletException: sun/tools/javac/Main (Unsupported major.minor version 48.0)

Startup in JPDA mode...

2002-07-09 Thread petra staub
I am unsuccessfully trying to startup Tomcat 4.x (4.0.3,4.1.7,...) under Win2000 in JPDA mode for remote debugging using JSwat or cqjd. I have the environment variable CATALINA_OPTS set to -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,address=,suspend=n and

use a servlet in TOMCAT on JWSDP?

2002-07-09 Thread staginfo-ar
Hi, i'm developping a web service named first with JWSDP-1_0. I've a client servlet which was compiled by ANT. How can I launch this servlet? How can I launch this servlet from a html page (What way in the Action of FORM) ? Jc -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For

restarting tomcat without restarting ;)

2002-07-09 Thread @Basebeans.com
Subject: restarting tomcat without restarting ;) From: David Chu [EMAIL PROTECTED] === Hello, I remember reading there was a way to force Tomcat 4.0 to use new versions of modified servlets w/o restarting the server, but I glossed over the details. I think it was just accessing some URL. Is

Re: cannot run tomcat 4.0.4 jsp examples

2002-07-09 Thread Nikolas A. Rathert
Just a minute before I had the same problem. And here is what I did: I had a look at the JAVA_HOME and saw that it was pointing to the j2re instead of j2sdk. Now it works. Cheers, Nick Sylvain Pivette wrote: I cannot run Tomcat 4.0.4 jsp examples but servlet examples work fine ! (NT4, Apache

Re: Mac OS X, Tomcat 4.0.4, MySql configuration denies access

2002-07-09 Thread Jack Park
At 03:22 PM 7/9/2002 +0900, you wrote: Thanks, Joel. snip If it doesn't load the examples, I'd be surprised if it really wanted to load your servlet. (I have been surprised before.) Usually, if it doesn't run the examples, it isn't running, and what you're really doing is serving the Tomcat

Tutorials

2002-07-09 Thread Nikolas A. Rathert
Hi, does anybody know where I could find an online or offline tutorial that tells me how to set up a server environment including apache, tomcat and mysql on a NT-Server? I do not know exactly how to configure those servers to work together. What I want to do is: a client should only connect

RE: restarting tomcat without restarting ;)

2002-07-09 Thread andre . powroznik
There is a manager application well described in the doc ;-) -Original Message- From: Jakarta Tomcat Newsgroup [mailto:[EMAIL PROTECTED]] Sent: 09 July 2002 16:40 To: [EMAIL PROTECTED] Subject: restarting tomcat without restarting ;) Subject: restarting tomcat without restarting ;)

Re: restarting tomcat without restarting ;)

2002-07-09 Thread rsequeira
Set the reloadable attribute of the Context element in your server.xml to true RS jakarta-tom on 07/09/2002 09:40:02 AM Please respond to Tomcat Users List [EMAIL PROTECTED] To:[EMAIL PROTECTED] cc: Subject:restarting tomcat without restarting ;) Subject: restarting tomcat

Re: cannot run tomcat 4.0.4 jsp examples

2002-07-09 Thread Sylvain Pivette
My JAVA_HOME is already pointing to the j2sdk (1.3), and it's still doesn't work. Thanks. Sylvain. - Original Message - From: Nikolas A. Rathert [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, July 09, 2002 3:39 PM Subject: Re: cannot run tomcat 4.0.4 jsp

?

2002-07-09 Thread Mike Neder
Is this the email address I use to send mail to the list???

Re: cannot run tomcat 4.0.4 jsp examples

2002-07-09 Thread Nikolas A. Rathert
Sylvain Pivette wrote: My JAVA_HOME is already pointing to the j2sdk (1.3), and it's still doesn't work. Thanks. Sylvain, perhaps you try the new j2sdk version. I do not have any other idea right now. Nick -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands,

Re: ?

2002-07-09 Thread Nikolas A. Rathert
Yes Mike Neder wrote: Is this the email address I use to send mail to the list??? -- Nikolas A. Rathert Fraunhofer Institute for Computer Graphics e-Learning Knowledge Management Fraunhoferstrasse 5 D-64283 Darmstadt Germany Fon +49 6151 155 552 Fax +49 6151 155 569 email: [EMAIL

Re: tomcat 4.03 configuration with IIS 5.0

2002-07-09 Thread rsequeira
It seems like you upgraded your JDK to a latest version. And Tomcat seems to use an earlier version. You probably need to copy tools.jar to the CATALINA_HOME\common\lib directory or re-install Tomcat so that it uses the right JDK version. The asp files could co-exist with the jsps. All you need

Servlet problem...

2002-07-09 Thread Mike Neder
Hi everybody, I have a servlet problem. I installed Tomcat and the JSP pages are working fine. But I have a problem compiling servlets. I put HelloServlet.java in C:\ServletDevel and my CLASSPATH=.;C:\ServletDevel;tomcat\common\lib\servlet.jar;C:\javamail-1.2\ma

Help Please: BadTargetObjectURI

2002-07-09 Thread Nishant_Awasthi
Hello everyone, I am new to SOAP and Tomcat and I am continuously getting this problem: Fault Code = SOAP-ENV:Server.BadTargetObjectURI Fault String = Unable to resolve target object: Hello As per I have read so far it is due to the classpath settings. I have all my .java and .class files(

Re: Servlet problem...

2002-07-09 Thread rsequeira
You need to edit your classpath. You need to specify the drive name when the servlet.jar is located. See tomcat\common\lib\servlet.jar; snip CLASSPATH=.;C:\ServletDevel;tomcat\common\lib\servlet.jar;C: \javamail-1.2\ma il.jar;C:\jaf-1.0.1\activation.jar /snip RS Mike Neder [EMAIL

Re: Mac OSX

2002-07-09 Thread Christian Mittendorf
On Dienstag, Juli 9, 2002, at 01:31 Uhr, Martin Jacobson wrote: Matt Preston wrote: In the end the only way that I could get Tomcat to start up was to copy all of the jars (common/lib server/lib bootstrap.jar) into /System/Framework/Java/Extensions [...] The only stuff I have in

Re: JSP variable problem

2002-07-09 Thread David Mossakowski
If you are making requests of servlets, create cResource there and put it into REQUEST and not session and then forward to the JSP page to display. d. Raphael Di Cicco wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I'm faced with a problem that is maybe really easy to

RE: tomcat 4.03 configuration with IIS 5.0

2002-07-09 Thread Kranson, Bob
Diana, You confirm your configuration works by changing the url to point to IIS. http://localhost:8080/servlet/myserv/run/page Becomes http://localhost/servlet/myserv/run/page Uriworkermap.properties identifies /servlet/*.* to redirect to Tomcat from IIS. JSP's remain in the Tomcat webapps

Re: Servlet problem...

2002-07-09 Thread Mike Neder
Thank you very much. :^) i can't believe I didn't see that regards, Michael You need to edit your classpath. You need to specify the drive name when the servlet.jar is located. See tomcat\common\lib\servlet.jar; snip CLASSPATH=.;C:\ServletDevel;tomcat\common\lib\servlet.jar;C:

Re: webapp + apache (1.3/2.0) + ssl

2002-07-09 Thread Joseph Molnar
From what I could figure out, I need to do a 'SSLEngine on' in the virtualhost in httpd.conf. Yup, that is an Apache thing (need a few other things too) Do I need to have two WARP connectors defined? On for the SSL and one for non-SSL servlets? Yes, because you want to make sure that you

Custom Tag caching bug in 4.1.6, 4.1.7

2002-07-09 Thread Douglas, Rory
Title: Custom Tag caching bug in 4.1.6, 4.1.7 Hi there I've noticed some strange custom tag behaviour in 4.1.6 and 4.1.7. I have a JSP page that uses Struts Form tags (1.0.2). The Struts tags name the rendered HTML form according to the associated Form Bean name. I have two Form tags on

j_security_check and logout

2002-07-09 Thread Paul Phillips
Hello, all -- I have a small application consisting of servlets and jsp pages. I use form based authentication via j_security_check to login. I have a strange problem know how to solve. I have implemented a simple logout procedure whereby the logout servlet invalidates the session, and then

AW: Custom Tag caching bug in 4.1.6, 4.1.7

2002-07-09 Thread Ralph Einfeldt
There has been a little discussion about OSCache some days ago, that might match your problem. (See atached mails) -Ursprüngliche Nachricht- Von: Douglas, Rory [mailto:[EMAIL PROTECTED]] Gesendet: Dienstag, 9. Juli 2002 17:20 An: Tomcat Users List (E-mail) Betreff: Custom Tag caching

Using with JBuilder

2002-07-09 Thread Iain Downie
Does anyone on the list have some (simple) sample code for a web application that I could play with/adapt from which they use JBuilder6 Pro and the bundled Tomcat4 to access a database (Oracle or otherwise) using the DataSource reference (ie. not specifying the jatabase details within the Java

Unable to load JAR files inside of webapps in 4.1.7

2002-07-09 Thread Tim Funk
With tomcat 4.1.7 - I am unable to load jar files in the WEB-INF/lib directory of my webapp. In 4.0.4 - this worked fine. Below is a snippet from the localhost_log file. I also added 2 extra debug statements ContextConfig.java and recompiled and became surprised by the output. I also had this

mod_webapp and Virtual Hosts

2002-07-09 Thread tomcat-user-list
Following the installation instructions, I have successfully configured mod_webapp and Apache to display the examples web application. My next step was to move the webapp directives to a virtual host block. Now, when I access the virtual host, tomcat displays a directory listing of the root

RE: Custom Tag caching bug in 4.1.6, 4.1.7

2002-07-09 Thread Douglas, Rory
Title: RE: Custom Tag caching bug in 4.1.6, 4.1.7 Thanks Ralph I've checked it out with a very simple test tag. I don't encounter problems using a 1.2 TLD with tag pooling. I suspect the Struts 1.0.2 tags are 1.1. (Am I right in assuming this is what was meant by conformant tags?) Also, as

RE: I fail to get green arrow for filter status.. IIS with Tomca t

2002-07-09 Thread Andrew Conrad
The reason is in your wriworkermap.properties. The tag /* means all files from the root. If you only wanted to redirect JSP files, you would change that to /*.jsp -Andrew -Original Message- From: Anoop Kumar V [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 09, 2002 5:09 AM To:

RE: going crazy with DBCP

2002-07-09 Thread Andrew Conrad
I need to pay more attention to the docs I was reading. Sorry about the confusion I may have caused. Thanks for the catch Jacob. - Andrew -Original Message- From: Jacob Kjome [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 09, 2002 12:53 AM To: Tomcat Users List Subject: RE: going

Re: Tomcat 4.0.3 and relative path includes.

2002-07-09 Thread Paul landolt
After some digging by Andrew, it appears that there may be some issuea with how @include's are performed within a war file rather than with a deployed app. If the application is deployed as a directory (the war file unpacked into a directory) then Jasper has no troubles at all finding

Slow upload speeds

2002-07-09 Thread Cunningham Emmett
This is my first post to this group and I hope that it makes sense. Using either Tomcat 3.2.1 or 3.2.4 and JDK 1.3.1_01 and my own or Jason Hunters Upload servlet there is a performance problem when going from an IE client to a Solaris server. Versions Used: JDK 1.3.1_03

Tomcat LIB and Java CLASSPATH

2002-07-09 Thread Manchan
Can anyone verify this statement?: Tomcat Engine reads only the *.jar files located within its specified directories, and redefines the CLASSPATH variable for its personal use while running. This is how I'm guessing how things are working. __ Do

Apache2.0.39 VirtualHosts Does not work Even when tomcat is out!

2002-07-09 Thread Luminous Heart
I have disabled tomcat for this experiment. I have built apache2.0.39 with tomcat4.0.4 on RH linux7.1. I have two domain names that use one ip address: - domain1.com - domain2.com - ip: 10.0.0.15 the two domains point at two directories: - /usr/local/apache2/htdocs/domain1 -

Migration from 3.3a to 4.0.4

2002-07-09 Thread Shawn Church
I am new to Tomcat 4, and I am trying to move an existing webapp from 3.3a to 4.0.4. I am using Apache as the web server, but I am not quite clear on which portions of Tomcat relate specifically to the stand-alone web server configuration versus general webapp serving through a connector

Re: mod_webapp and Virtual Hosts

2002-07-09 Thread Jonathan Eric Miller
FYI, something is screwed up with your email application. You have no To field in the headers. Jon - Original Message - From: [EMAIL PROTECTED] Sent: Tuesday, July 09, 2002 11:29 AM Subject: mod_webapp and Virtual Hosts Following the installation instructions, I have successfully

Re: ActionServlet question

2002-07-09 Thread Craig R. McClanahan
This looks like a Struts-related question, rather than Tomcat. You might do better asking it on the STRUTS-USER mailing list (subscription information for all Jakarta mailing lists is available at http://jakarta.apache.org/site/mail.html). Craig On Tue, 9 Jul 2002 [EMAIL PROTECTED] wrote:

Tomcat spawns excessive jvms and kills server for jdk1.3 and jdk1.4

2002-07-09 Thread Wick Swain
Title: RE: Custom Tag caching bug in 4.1.6, 4.1.7 When we startTomcaton our Redhat 7.2 server, it immediatly spawns 35jvm processes (as shown by "ps -ef | grep java" command).As pages are served, more jvm processes are created until the server finally runs out ofmemory and dies. The

Re: Classpath problems

2002-07-09 Thread Craig R. McClanahan
On Tue, 9 Jul 2002, David Goodenough wrote: Date: Tue, 9 Jul 2002 11:36:46 +0100 From: David Goodenough [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Classpath problems I am having the inevitable initial classpath problems setting up my

Re: customised error pages rather than tomcats error pages

2002-07-09 Thread Craig R. McClanahan
On Tue, 9 Jul 2002 [EMAIL PROTECTED] wrote: Date: Tue, 9 Jul 2002 10:16:52 EDT From: [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: customised error pages rather than tomcats error pages Hi I would like to know how can I set tomcat to

RE: Custom Tag caching bug in 4.1.6, 4.1.7

2002-07-09 Thread Craig R. McClanahan
On Tue, 9 Jul 2002, Douglas, Rory wrote: Date: Tue, 9 Jul 2002 12:28:48 -0400 From: Douglas, Rory [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Subject: RE: Custom Tag caching bug in 4.1.6, 4.1.7 Thanks Ralph I've checked it

Re: ActionServlet question

2002-07-09 Thread info
Sorry, sent it to the wrong group. Would you mind asking it when I post it to STRUTS-USER? Thanks, Rainer This looks like a Struts-related question, rather than Tomcat. You might do better asking it on the STRUTS-USER mailing list (subscription information for all Jakarta mailing lists is

Re: j_security_check and logout

2002-07-09 Thread Craig R. McClanahan
On Tue, 9 Jul 2002, Paul Phillips wrote: Date: Tue, 09 Jul 2002 10:40:13 -0500 From: Paul Phillips [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: j_security_check and logout Hello, all -- I have a small application

Announce: J2EE MVC training using Struts with Standard Tags (JSTL)

2002-07-09 Thread @Basebeans.com
Subject: Announce: J2EE MVC training using Struts with Standard Tags (JSTL) From: Vic C. [EMAIL PROTECTED] === Standard J2EE MVC training using Struts with Standard Tags (JSTL) -We have done more Struts training than anyone. This class adds Standard Tag Libs (JSTL) with MVC and a portal

Re: Tomcat LIB and Java CLASSPATH

2002-07-09 Thread Craig R. McClanahan
On Tue, 9 Jul 2002, Manchan wrote: Date: Tue, 9 Jul 2002 10:22:42 -0700 (PDT) From: Manchan [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Tomcat LIB and Java CLASSPATH Can anyone verify this statement?: Tomcat Engine

Re: Refresh issues with JSP pages in Tomcat

2002-07-09 Thread Dmitry ...
Hi, This may be a synchronization problem. Are you using connection pooling? If not, try using a 'build in' connection pool. You may also check whether synchronization is the problem by adding a _sleep(a few seconds)_ to your code, after the database update in B.jsp. The problem may be caused

Re: j_security_check and logout

2002-07-09 Thread Paul Phillips
As Craig wrote below: You should never reference the URL of the login page directly. Instead, if you want to make them log back in, you should simply redirect them to some page within the protected area (perhaps the main menu). The usual login dialog will happen. I am not referencing the

Need Ideas... big problem! (long)

2002-07-09 Thread Christian J. Dechery
I have a huge problem here... and I can't think of a simple solution for it, I'm hoping u guys can give some light. :) Let me first describe the environment here, then the problem. We have here a webapp called FAP (c:\tomcat\fap). It is composed of: /fap/*.jsp (like a hundred of them)

dlls for tomcat

2002-07-09 Thread Grinvald, Edward
Hello all, My application uses a dll through a JNI as one of the first things that get loaded. Tomcat is unable to find the dll when i start it through the startup scripts. However, if i add it in wrapper.properties under wrapper.ld_path, all is well. Which variable or which config file do i

Re: Tomcat 4 cross ServletContext attributes and standalone server

2002-07-09 Thread Craig R. McClanahan
On Mon, 8 Jul 2002, dbt1 wrote: Date: Mon, 8 Jul 2002 10:31:31 -0600 From: dbt1 [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Tomcat Developers List [EMAIL PROTECTED], Struts Users Mailing List [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: Tomcat

ISAPI Redirector for Tomcat 4

2002-07-09 Thread Durham David Cntr 805CSS/SCBE
I'm looking for a binary of the ISAPI_Redirector.dll for Tomcat 4.0.4, I did not see it with jakarta-tomcat-4.0.4.zip, I did see it in with the tomcat 3.3 binaries. Is that the redirector that I need? Also, I didn't see any documentation on the site for how to set this up with 4.0.4, is it

Re: Servlet problem...

2002-07-09 Thread stefan
Hi, try CLASSPATH=.;C:\ServletDevel;C:\tomcat\common\lib\servlet.jar;C:\javamail-1.2 \mail.jar;C:\jaf-1.0.1\activation.jar instead. Your CLASSPATH must include C:\ where you point to servlet.jar This should help. cu Stefan - Original Message - From: Mike Neder [EMAIL PROTECTED] To:

RE: going crazy with DBCP

2002-07-09 Thread Clay Graham
I went to 4.1.7 yesterday, I tjhought hey this will all work because the .tar.gz has the commons jars already wrapped up in it, yay this will all work great just by getting the new stuff. so I downloaded it got it up and running, and then added the new DBTest context as specified to the

SingleSignOn error in server.xml

2002-07-09 Thread Brzezicki, Jerzy
When I uncomment in server.xml line: Valve className=org.apache.catalina.authenticator.SingleSignOn debug=0/ I am getting error (below). Has anyone had similar problem ? I created testing environment for Tomcat 4.04 inside VAJ4.0 and I am getting the error there. Jerzy ERROR

RE: Need Ideas... big problem! (long)

2002-07-09 Thread Kranson, Bob
Why don't you store the JDBC URL in JNDI and have DAO look it up dynamically Bob Kranson Software Technical Support Analyst UNIFACE and Optimal Products Technical Support U.S. Support Center 888-551-0404 New Calls: [EMAIL PROTECTED] 31440 Northwestern Hwy, Farmington Hills, MI

RE: going crazy with DBCP

2002-07-09 Thread Craig R. McClanahan
Why are you assuming that this is a DBCP problem? The key issue seems to be the following line from the log: 2002-07-08 16:14:38 StandardContext[/DBTest]: Error initializing resources: Document base /home/tomcat/jwsdp-1_/webapps/DBTest does not exist or is not a readable directory which

RE: Need Ideas... big problem! (long)

2002-07-09 Thread Christian J. Dechery
Sorry... but could u explain this a little furhter? I'm not familiar with JNDI. thanks .:| Christian J. Dechery .:| FINEP - Depto. de Sistemas .:| [EMAIL PROTECTED] .:| (21) 2555-0332 [EMAIL PROTECTED] 09/07/02 16:41 Why don't you store the JDBC URL in JNDI and have DAO look it up

log4j:ERROR No appenders could be found for category (org.apache.commons.digester.Digester).

2002-07-09 Thread Lenny Sorey
The following error is shown in Tomcat 4.1.3 Stderr.log log4j:ERROR No appenders could be found for category (org.apache.commons.digester.Digester). log4j:ERROR Please initialize the log4j system properly.

Re[2]: going crazy with DBCP

2002-07-09 Thread Jacob Kjome
Hello Clay, I just tested 4.1.7 and the commons-dbcp.jar that comes with it is still broken. I reported this issue after testing 4.1.6. To reiterate, I have DBCP connection pooling working just fine in Tomcat-4.1.3 and it doesn't work in 4.1.6 or 4.1.7. What I have done to work around this is

How do I config tomcat to relay reset by peer?

2002-07-09 Thread Rob Tanner
Hi, I submitted this several weeks ago but got no response, so I thought I'd try again. I need to know if the client browser is still actively awaiting a response from the servlet or whether the users has pressed stop, clicked on someother link, etc. With class PrintWriter, as I understand it,

  1   2   >