Need Help For Iplanet Tomcat Configuration

2003-07-25 Thread Nagesh
Hi Gal Shachor, I am trying to configure iplanet web server 6.0 and Tomcat 4.0.5 on windows xp professional. I managed to downloaded two versions of nsapi_redirect.dll from internet one is 110,592 bytes other is 106,496 bytes I tried both non works I Disabled java globally in iplanet i

need Help

2003-07-24 Thread Prashant Kadam
I have installed tomcat 4.1.6 I have created Prashant folder under webApps My Folder structure is webapps- |_Prashant |_Web-inf |_Classes- |_ web.xml |_myservlet in server.xml. I added context

Need help on upgrading Tomcat from 3.1 to 4.1.x

2003-07-15 Thread Eric Leung
Dear All Tomcat Users, I'm working on upgrading Tomcat from a very old version to 4.1.x Currently, we have a servlet being run at the start of the web (specified in web.xml ). But this servlet may have some objects obsoleted in ver 4.1.x. Does anyone know how should I change this servlet in

Re: Need help with performance issue - Tomcat 4.1.X

2003-07-13 Thread Tom Parker
On Sat, 2003-07-12 at 08:08, [EMAIL PROTECTED] wrote: We are currently starting up with -Xmx256M. Java is currently using about 327MB and has been that way for hours. I haven't really seen any fluxuations at all, which leans me away from the garbage collection issue. Constant memory usage

Re: Need help with performance issue - Tomcat 4.1.X

2003-07-12 Thread Eric J. Pinnell
ditto. There is no sure fire way from the system aspect (CPU, run queue, etc) that will tell you what's going on. You need to peek inside the VM and see what it's doing. -e On Fri, 11 Jul 2003, John Turner wrote: Like I said, I'm no guru. Sounds like you need to bust out a profiler. John

Need help with performance issue - Tomcat 4.1.X

2003-07-11 Thread tomcat-question
With Tomcat 4.1.x We've recently run into an issue where some of our pages either a) take a really long time to come up (20+ seconds) or b) come up, but never really finish loading (the status bar in IE shows the the response hasn't finished). These are very simple pages (for example, a login

Re: Need help with performance issue - Tomcat 4.1.X

2003-07-11 Thread Matt Swensson
Are these results occurring when tested on a local area network as well? I have had an issue like that, but it turned out to be a networking issue..not tomcat. --- [EMAIL PROTECTED] wrote: With Tomcat 4.1.x We've recently run into an issue where some of our pages either a) take a really

Re: Need help with performance issue - Tomcat 4.1.X

2003-07-11 Thread tomcat-question
Yes, these occur internally and externally. There does not appear to be any network traffic that is causing this (according to the network people...). We're also seeing this on two different environments on two distinct networks. After some more digging, there is just NOTHING happening on the

Re: Need help with performance issue - Tomcat 4.1.X

2003-07-11 Thread John Turner
In a situation like that, the two things I check first are: 1) DNS lookup failing, especially a reverse lookup..do you have Tomcat trying to look up a hostname for access logging, perhaps? 2) database connection timing out Also, I would look at garbage collection, but I doubt that's it. John

Re: Need help with performance issue - Tomcat 4.1.X

2003-07-11 Thread Simon Pabst
Could be a Memory Leak/Garbage Collection issue (we had a similar problem with a memory intensive app), maybe your heap is too small and java is running many Full GC's. Start java with -verbose:gc and look in tomcat/logs/catalina.out for Garbage Collections. (set Environment Variables JAVA_OPTS

Re: Need help with performance issue - Tomcat 4.1.X

2003-07-11 Thread tomcat-question
I don't believe that the host lookup or db connection is the issue. The page we are serving up is the login page. I will create a test hello world jsp to see if the problem still occurs with that page. -- Dave In a situation like that, the two things I check first are: 1) DNS lookup

Re: Need help with performance issue - Tomcat 4.1.X

2003-07-11 Thread tomcat-question
We are currently starting up with -Xmx256M. Java is currently using about 327MB and has been that way for hours. I haven't really seen any fluxuations at all, which leans me away from the garbage collection issue. I created a hello.jsp, which is completely separate from our application. Same

Re: Need help with performance issue - Tomcat 4.1.X

2003-07-11 Thread tomcat-question
Another followup. If we try to access the root context of the server, which is not available, the same thing happens. I get back a 500 error immediately, but then the page doesn't finish loading (i.e. get all the response back from the server) for another 20 seconds or so. This seems like a

Re: Need help with performance issue - Tomcat 4.1.X

2003-07-11 Thread John Turner
I'm certainly no guru, but if you are setting a max of 256 and then your app is soaking up 327 with no load whatsoever, I'd say you have a problem. Have you tried a max of 512? John On Fri, 11 Jul 2003 20:08:10 +, [EMAIL PROTECTED] wrote: We are currently starting up with -Xmx256M. Java

Re: Need help with performance issue - Tomcat 4.1.X

2003-07-11 Thread tomcat-question
I definitely don't know enough about how the memory settings in java to be of much use on this part. I do not know if we've tried 512. We probably should. As for the 327, is that actually unreasonable? The mx setting specfies the maximum heap size. Can the thread stack (specified using

Re: Need help with performance issue - Tomcat 4.1.X

2003-07-11 Thread John Turner
I have no idea, but based on past experience, if you are using more RAM than you've allocated, then you have a swap situation. If the max setting wasn't an actual max, and you could blow past it whenever you needed it, why on earth would you need it in the first place? John On Fri, 11 Jul

Re: Need help with performance issue - Tomcat 4.1.X

2003-07-11 Thread tomcat-question
But again, the mx is only setting the heap size, not the whole JVM. The thread stack is controlled with an entirely different parameter for example. I found this with a quick search: The -Xmx setting controls the maximum size of the Java heap. However, the Java heap represents only part of

Re: Need help with performance issue - Tomcat 4.1.X

2003-07-11 Thread Simon Pabst
If your application is running on same Tomcat/JVM then blocking GC calls could still lead to that effect for hello.jsp too. Are you using Apache/mod_jk/Tomcat or Tomcat standalone? HTTPS Connections? Does the Problem occur only with IE or with other Browsers (Mozilla) too? I read once something

Re: Need help with performance issue - Tomcat 4.1.X

2003-07-11 Thread John Turner
Like I said, I'm no guru. Sounds like you need to bust out a profiler. John On Fri, 11 Jul 2003 20:34:40 +, [EMAIL PROTECTED] wrote: But again, the mx is only setting the heap size, not the whole JVM. The thread stack is controlled with an entirely different parameter for example. I

Re: Need help with performance issue - Tomcat 4.1.X

2003-07-11 Thread tomcat-question
Yes, still running on the same tomcat, which is standalone BTW. The problem occurs with both IE and mozilla, but a little differently. Mozilla tends to render the results immediately, then sit there for 20 seconds. IE will wait a bit, render the results, then sit there. I'm assuming the

Re: Need help with performance issue - Tomcat 4.1.X

2003-07-11 Thread Simon Pabst
Tomcat 4.1 processes need some extra memory besides the heap i believe, so the total process memory will always be bigger than the maximum specified heap (unless this isn't a bug or a misunderstanding of me of course :-) Our Tomcat 4.1.24 on Redhat Linux with 1GB heapsize consumes about 1,25GB

RE: Need help with performance issue - Tomcat 4.1.X

2003-07-11 Thread Lars Hellgren
of magnitude. I suspect that there is an issue with the way Jasper created servlets use the out.write()/out.print() methods. Lars -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 1:38 PM To: Tomcat Users List Subject: Re: Need help with performance

Re: Need help with performance issue - Tomcat 4.1.X

2003-07-11 Thread Simon Pabst
-verbose:gc may affect performance a bit (cpu/disk), but since your system doesn't run so well anyway, oh well :-) Using a higher acceptCount doesn't hurt much (needs maybe 1k memory for each queue place i think) On earlier Java Versions there is a switch to turn on incremental Garbage

Re: Need help with performance issue - Tomcat 4.1.X

2003-07-11 Thread Marc Palmer
On Fri, 11 Jul 2003 19:22:41 +, [EMAIL PROTECTED] wrote: When I submit my request to get the login page (not to process the login, just to serve the login page), I couple of the java threads will spin up and take maybe 3% of the cpu, but it still takes over 30 seconds to get the page.

Re: Need help with performance issue - Tomcat 4.1.X

2003-07-11 Thread Bill Barker
I'm surprised that nobody else has asked this (since it would be one of the first things that I would try if this was happening to me): What is the response from just using telnet? [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] With Tomcat 4.1.x We've recently run into an issue

Still need help with JDBCRealm

2003-07-09 Thread Rick Roberts
I have been working on this for a couple of days now. I think I am close, but still missing something basic. If you know how to set up a JDBCRealm, please look over my files and error logs and tell me where I have made my mistake. Thanks in advance for your help.

RE: Still need help with JDBCRealm

2003-07-09 Thread Mike Curwen
AM To: Tomcat Users List Subject: Still need help with JDBCRealm Realm className=org.apache.catalina.realm.JDBCRealm connectionName=AI_DBA connectionPassword=SUKHOI connectionURL=jdbc:oracle:thin:@sukoi:1521:orcl driverName

RE: Still need help with JDBCRealm

2003-07-09 Thread Mike Curwen
Also, -Original Message- From: Rick Roberts [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 11:32 AM To: Tomcat Users List Subject: Still need help with JDBCRealm Of the several applications running on this server, I am only trying to apply a JDBCRealm to the /hd

Re: Still need help with JDBCRealm

2003-07-09 Thread Rick Roberts
If there is a DUNCE of the Week Award, can I apply now! Changing the Realm to Realm got rid of the error: No Realm has been configured to authenticate against But now I have progressed to this error: [EMAIL PROTECTED] tomcat4]# tail -300 catalina_log.2003-07-09.txt 2003-07-09 12:53:36

RE: Still need help with JDBCRealm

2003-07-09 Thread Mike Curwen
: Wednesday, July 09, 2003 12:02 PM To: Tomcat Users List Subject: Re: Still need help with JDBCRealm If there is a DUNCE of the Week Award, can I apply now! Changing the Realm to Realm got rid of the error: No Realm has been configured to authenticate against But now I have progressed

Re: Still need help with JDBCRealm

2003-07-09 Thread Rick Roberts
Mike Curwen wrote: Someone else on this list had a similar problem with NPE's being thrown by Coyote. His developers insisted it wasn't their code, and that it had to be coyote causing the trouble. I sympathize with that position, because on that stack trace, and on yours, there is only

RE: Still need help with JDBCRealm

2003-07-09 Thread Mike Curwen
at a loss. -Original Message- From: Rick Roberts [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 12:28 PM To: Tomcat Users List Subject: Re: Still need help with JDBCRealm Mike Curwen wrote: Someone else on this list had a similar problem with NPE's being thrown

Re: Still need help with JDBCRealm

2003-07-09 Thread Rick Roberts
Mike, Thanks for your time on this, you have been very helpful. I will post the solution here, if I ever get it working. -- *** * Rick Roberts* * Advanced Information Technologies, Inc. *

Re: Still need help with JDBCRealm

2003-07-09 Thread Rick Roberts
Just a quick update. My JDBCRealm works if I use Basic AUTH. Only trouble I have now is getting Form AUTH to work. -- *** * Rick Roberts* * Advanced Information Technologies, Inc. * ***

Re: Still need help with JDBCRealm

2003-07-09 Thread Rick Roberts
I'm going to start a new thread now because I no longer need help getting JDBCRealm to work. Now I need some help getting FORM AUTH to work with JDBCRealm. -- *** * Rick Roberts* * Advanced Information Technologies, Inc

Re: Still need help with JDBCRealm

2003-07-09 Thread Rick Roberts
It's all working now! Form AUTH and JDBCRealm. Works as advertised! :) I had 2 errors in my login.jsp file. Once I closed my Form with /Form and changed j_passsword to j_password It worked!! I can attribute ALL of my problems to my poor typing and review skills. Thanks again for your help. --

Need help on deploying application

2003-06-23 Thread cknell
I have installed Tomcat on my workstation and I'm able to access the applications supplied with the distribution. I have two Tomcat books and I'm trying to deploy an application from one of them as a tool to learn Tomcat basics. I am unable to get to the application. Below is what I believe to

RE: Need help on deploying application

2003-06-23 Thread Shapira, Yoav
Howdy, Look at the tomcat logs: what errors are in there? Yoav Shapira Millennium ChemInformatics -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, June 23, 2003 11:20 AM To: [EMAIL PROTECTED] Subject: Need help on deploying application I have

RE: Need help on deploying application

2003-06-23 Thread Roberts, Eric
Sounds like the JDK 1.4.1 not liking spaces in the directory paths. Try putting tomcat in D:\Tomcat4.1 HTH -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 23 June 2003 17:20 To: [EMAIL PROTECTED] Subject: Need help on deploying application I have installed

RE: RE: Need help on deploying application

2003-06-23 Thread cknell
] - email -Original Message- From: Shapira, Yoav [EMAIL PROTECTED] Sent: Mon, 23 Jun 2003 11:22:07 -0400 To: Tomcat Users List [EMAIL PROTECTED] Subject: RE: Need help on deploying application Howdy, Look at the tomcat logs: what errors are in there? Yoav Shapira

Re: Need help on deploying application

2003-06-23 Thread Dominic Parry
To: Tomcat Users List Sent: Monday, June 23, 2003 5:23 PM Subject: RE: Need help on deploying application Sounds like the JDK 1.4.1 not liking spaces in the directory paths. Try putting tomcat in D:\Tomcat4.1 HTH -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

Re: Need help on deploying application

2003-06-23 Thread Jason Bainbridge
On Mon, 23 Jun 2003 23:39, Dominic Parry wrote: I've seen this come up as a suggestion many time, and I must disagree. I'm using the same set up as him, and I have many spaces in my dirs. It makes no difference. My apps all work perfectly, spaces or no. It is a valid suggestion for many

RE: Need help on deploying application

2003-06-23 Thread Atreya Basu
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: June 23, 2003 12:20 PM To: [EMAIL PROTECTED] Subject: Need help on deploying application I have installed Tomcat on my workstation and I'm able to access the applications supplied with the distribution. I have two Tomcat books and I'm trying to deploy

RE: Need help on deploying application

2003-06-23 Thread Peter.Kerekes
do you have a proper WEB-INF directory? I mean, are all the letters uppercase? Peter - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: RE: Need help on deploying application

2003-06-23 Thread cknell
Thank you for your reply. This problem has been solved. -- Charles Knell [EMAIL PROTECTED] - email -Original Message- From: [EMAIL PROTECTED] Sent: Mon, 23 Jun 2003 18:55:55 +0200 To: [EMAIL PROTECTED] Subject: RE: Need help on deploying application do you have a proper

Rebuild HTTP header in a servlet on TOMCAT 4.1.24. NEED HELP PLEASE !!!!

2003-06-12 Thread Michel Jubault
Hi ! I've a serveur and a client both developped in Java. They exchange XML messages with HTTP header. I've to transform this server in a servlet for Tomcat. Everything goes OK except one : the client accepts a particular HTTP header and I can't modify the client |-( In fact, the client freeze

I need help please (Tomcat 4.1.24 and IIS)

2003-06-09 Thread Jeffrey Cummings
I am trying to setup tomcat 4.1.24 with IIS. When I request a page I get the following message:- HTTP Status 404 - /tomcat/isapi_redirect.dll ___ type Status report message /tomcat/isapi_redirect.dll description The requested resource (/tomcat/isapi_redirect.dll) is not available. _ Apache

Re: I need help please (Tomcat 4.1.24 and IIS)

2003-06-09 Thread John Turner
[Sat Jun 07 09:18:40 2003] [jk_uri_worker_map.c (477)]: Attempting to map URI '/localhost/tomcat/isapi_redirect.dll' [Sat Jun 07 09:18:40 2003] [jk_uri_worker_map.c (599)]: jk_uri_worker_map_t::map_uri_to_worker, done without a match Please post your .properties files, without them we can't be

I Really need help

2003-06-06 Thread Ing . Omar Rojas Gastélum
Hi everybody I'm new on JSP's. Actually, i'm testing the tomcat installation on my server. I need to generate PDF's with an application package named iText ( http://www.lowagie.com/iText/ ). When i try to run the example file i get this errors (The source of the JSP file is at the end):

RE: I Really need help

2003-06-06 Thread Shapira, Yoav
: Thursday, June 05, 2003 1:41 PM To: [EMAIL PROTECTED] Subject: I Really need help Hi everybody I'm new on JSP's. Actually, i'm testing the tomcat installation on my server. I need to generate PDF's with an application package named iText ( http://www.lowagie.com/iText/ ). When i try to run

Re: I Really need help

2003-06-06 Thread Jason Bainbridge
] Subject: I Really need help Hi everybody I'm new on JSP's. Actually, i'm testing the tomcat installation on my server. I need to generate PDF's with an application package named iText ( http://www.lowagie.com/iText/ ). When i try to run the example file i get this errors (The source

Need Help on JDBC Connection

2003-06-04 Thread Joe
) Apache Tomcat/4.1.24 -Original Message- From: Jason Bainbridge [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 03, 2003 6:51 PM To: Tomcat Users List Subject: Re: Need Help on JDBC Connection On Tue, 3 Jun 2003 18:46, Joe wrote: description The server encountered

RE: Need Help on JDBC Connection

2003-06-04 Thread mike jackson
a guess. --mikej -=-- mike jackson [EMAIL PROTECTED] -Original Message- From: Joe [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 03, 2003 7:01 PM To: 'Tomcat Users List' Subject: Need Help on JDBC Connection Hi all, does anyone knows that's the case of this error: This happened

RE: Need Help on JDBC Connection

2003-06-04 Thread Joe
:53 AM To: 'Tomcat Users List' Subject: RE: Need Help on JDBC Connection Those errors are remarkably unhelpful, at least to me. I don't know that there's enough information there. Perhaps a snippet of the page would help. Specifically the point when you load the driver class (which I'm assuming

RE: Need Help on JDBC Connection - SOLVED!

2003-06-04 Thread Joe
: Wednesday, June 04, 2003 12:05 PM To: 'Tomcat Users List' Subject: RE: Need Help on JDBC Connection Hi Mike, thank you so much for your prompt reply. Here's how my /etc/profile looks like(Did I set it correctly??): JAVA_HOME=/usr/local/java CATALINA_HOME=/usr/local/tomcat ANT_HOME=/usr/local/ant

Need help w. Tomcat

2003-06-03 Thread Steve Burrus
Hello all, I need help with not using the Tomcat server, but with actually getting it set up correctly. Every single time that I try to run it, it seems to be going good for a while, but then I always get a Fatal Parse Error, and it indicates a problem in the org.apache.commons.digester file

Re: Need help w. Tomcat

2003-06-03 Thread Kwok Peng Tuck
Any other stuff get printed besides that ? Steve Burrus wrote: Hello all, I need help with not using the Tomcat server, but with actually getting it set up correctly. Every single time that I try to run it, it seems to be going good for a while, but then I always get a Fatal Parse Error

Re: Need help w. Tomcat

2003-06-03 Thread Steve Burrus
? Kwok Peng Tuck wrote: Any other stuff get printed besides that ? Steve Burrus wrote: Hello all, I need help with not using the Tomcat server, but with actually getting it set up correctly. Every single time that I try to run it, it seems

Re: Need help w. Tomcat

2003-06-03 Thread Kwok Peng Tuck
need help with not using the Tomcat server, but with actually getting it set up correctly. Every single time that I try to run it, it seems to be going good for a while, but then I always get a Fatal Parse Error, and it indicates a problem in the org.apache.commons.digester file with the web-app tag

Need Help on JDBC Connection

2003-06-03 Thread Joe
Hi all, does anyone knows that's the case of this error: This happened when I tried to access MySQL Database from remote client. Regards, Joe HTTP Status 500 - _ type Exception report message description The server encountered an internal error () that prevented it from

Re: Need Help on JDBC Connection

2003-06-03 Thread Jason Bainbridge
On Tue, 3 Jun 2003 18:46, Joe wrote: description The server encountered an internal error () that prevented it from fulfilling this request. exception org.apache.jasper.JasperException: com.mysql.jdbc.Driver ... You cut out the all important part, what is the rest of the message? -- Jason

Re: Need help w. Tomcat

2003-06-03 Thread John Turner
? Kwok Peng Tuck wrote: Any other stuff get printed besides that ? Steve Burrus wrote: Hello all, I need help with not using the Tomcat server, but with actually getting it set up correctly. Every single time that I try to run it, it seems to be going good for a while, but then I

Re: Need Help in clearing my doubts

2003-05-31 Thread Geralyn M Hollerman
Joe wrote: According to one of the mail which I have received, I saw him putting this in apache : httpd.conf: JkWorkersFile /home/gmh2441/uPortal/Tomcat_4-0-4/conf/workers.properties JkLogFile

Re: Need Help in clearing my doubts

2003-05-31 Thread John Turner
On Fri, 30 May 2003 19:21:55 +0800, Joe [EMAIL PROTECTED] wrote: http://www.johnturner.com/howto/rh72-howto.html According to one of the mail which I have received, I saw him putting this in apache : httpd.conf:

Re: Need Help in clearing my doubts

2003-05-31 Thread John Turner
Thanks for the kind words. I can tell you that I just tried Apache 2.0.45 (from source), Tomcat 4.1.24, mod_jk 2.0.3 (from source...latest), and Red Hat 9.0, and everything worked fine, with only one snag, but that was a building Apache snag, not a mod_jk snag. I will update my HOWTO soon,

Need Help in clearing my doubts

2003-05-30 Thread Joe
Hi all, I have a question on running Apache and Tomcat with the use of mod_jk connector. With all the guide I have gathered from the web. Below are my configuration: Red Hat 8.0 Apache 2.0.46 Using Port 80 Tomcat 4.1.24 Using Port 8080 J2SDK 1.4.1 I have no problem running these two

I need help

2003-04-05 Thread anurag vijay kumar rahangdale
To, Tomcat Help Desk I am Java Programmer I have developed application in JSP using Apache Tomcate 4.0 server. It okay when ever I am using it in our company in stand alone system but when we are going to upload it on net it create problems. Actually we purchase space in server

Newbie here...Need help with Tomcat

2003-04-02 Thread Bryan Richardson
Hello, I am new to the Java and Tomcat world. I'm fairly experienced with Apache and Perl, but I am having to do some stuff with Tomcat and Java files that someone else has written. I have a couple of questions... If I run a version of Tomcat as a standalone web server, can I access a

Re: Newbie here...Need help with Tomcat

2003-04-02 Thread John Turner
On Wed, 02 Apr 2003 01:59:48 -0700, Bryan Richardson [EMAIL PROTECTED] wrote: If I run a version of Tomcat as a standalone web server, can I access a database with it or will I need to set it up with Apache to access a database? Tomcat facilitates database connections just fine. Apache is not

Re: Newbie here...Need help with Tomcat

2003-04-02 Thread Bryan Richardson
] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: Newbie here...Need help with Tomcat Date: Wed, 02 Apr 2003 08:29:08 -0500 On Wed, 02 Apr 2003 01:59:48 -0700, Bryan Richardson [EMAIL PROTECTED] wrote: If I run a version of Tomcat as a standalone web server, can I access a database with it or will I

Re: Newbie here...Need help with Tomcat

2003-04-02 Thread John Turner
Message Follows From: John Turner [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: Newbie here...Need help with Tomcat Date: Wed, 02 Apr 2003 08:29:08 -0500 On Wed, 02 Apr 2003 01:59:48 -0700, Bryan Richardson [EMAIL PROTECTED

Re: Newbie here...Need help with Tomcat

2003-04-02 Thread John Turner
] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: Newbie here...Need help with Tomcat Date: Wed, 02 Apr 2003 08:29:08 -0500 On Wed, 02 Apr 2003 01:59:48 -0700, Bryan Richardson [EMAIL PROTECTED] wrote: If I run a version of Tomcat as a standalone web server, can I access a database with it or will I

Need help with org.apache.jasper.JasperException: Unable to compile class for JSP

2003-03-29 Thread Andre Carrier
Hi, I did a fresh install of tomcat on a win2000 server. I installed the latest JDK (1.4.1) first. I installed tomcat (4.1.24) after. Whenever I access the default index.jsp page I get this error. The JSPs of the application that I am building give the same error. Whith a previous build of

RE: Need help with tomcat running as service with ajp13

2003-03-28 Thread Mark Prins
to debug this? Anything logged that looks interesting? Mark -Original Message- From: Mark Prins [mailto:[EMAIL PROTECTED] Sent: Friday, March 21, 2003 6:45 AM To: Tomcat Users List; Jake Robb Subject: Re: Need help with tomcat running as service with ajp13 Citeren Jake Robb [EMAIL

need help with file security

2003-03-26 Thread Kushan Maskey
hi. i am a student and am using tomcat 4.1.18. i have a question regarding file security. i want to protect files or sites fomr an unauthorized user. when ever a person clicks on a link or a file in the root directory it sud ask for a user and password. is it possible with tomcat? i am not sure

need help with file security

2003-03-26 Thread rajeev shrestha
hi. i am a student and am using tomcat 4.1.18. i have a question regarding file security. i want to protect files or sites fomr an unauthorized user. when ever a person clicks on a link or a file in the root directory it sud ask for a user and password. is it possible with tomcat? i am not

Need Help in Server.XML

2003-03-26 Thread Surendra Kumar
/ I need help on debugging this. Thanks for any help and suggestion. Regards Surendra - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Need help with tomcat running as service with ajp13

2003-03-21 Thread Mark Prins
Citeren Jake Robb [EMAIL PROTECTED]: The very first thing I'd try is upgrading to the latest version of the JDK (1.4.1_01). 1.4.1_02 is the latest. I have had this problem with 4.0.6 running standalone with 1.3.x Upgrading to 1.4.1_01 helped. I have a NT4 box with 4.0.6 standalone on

RE: Need help with tomcat running as service with ajp13

2003-03-21 Thread Strecker, Mark
To: Tomcat Users List; Jake Robb Subject: Re: Need help with tomcat running as service with ajp13 Citeren Jake Robb [EMAIL PROTECTED]: The very first thing I'd try is upgrading to the latest version of the JDK (1.4.1_01). 1.4.1_02 is the latest. I have had this problem with 4.0.6 running

RE: Need help with tomcat running as service with ajp13

2003-03-21 Thread Mark Prins
-Original Message- From: Mark Prins [mailto:[EMAIL PROTECTED] Sent: Friday, March 21, 2003 6:45 AM To: Tomcat Users List; Jake Robb Subject: Re: Need help with tomcat running as service with ajp13 Citeren Jake Robb [EMAIL PROTECTED]: The very first thing I'd try is upgrading

Need help with tomcat running as service with ajp13

2003-03-20 Thread Strecker, Mark
Hello All, I have Tomcat 4.1.18 running as a service on an NT4.0 machine with Java 1.3.1 ... also it is getting requests via ajp13 from an apache server. It starts and works fine, but I am seeing a problem where it gets stuck and pegs the cpu. I can still connect to the administration page

RE: Need help with tomcat running as service with ajp13

2003-03-20 Thread Davis, Jeremy
: Thursday, March 20, 2003 4:15 PM To: Tomcat Users List Subject: Need help with tomcat running as service with ajp13 Hello All, I have Tomcat 4.1.18 running as a service on an NT4.0 machine with Java 1.3.1 ... also it is getting requests via ajp13 from an apache server. It starts and works fine

Re: Need help with tomcat running as service with ajp13

2003-03-20 Thread Jake Robb
, March 20, 2003 4:15 PM Subject: Need help with tomcat running as service with ajp13 Hello All, I have Tomcat 4.1.18 running as a service on an NT4.0 machine with Java 1.3.1 ... also it is getting requests via ajp13 from an apache server. It starts and works fine, but I am seeing a problem where

Re: TOMCAT + MYSQL need help

2003-03-19 Thread Martin Jacobson
Anthony Roque Adriano wrote: Sorry, i meant JDBC, all my configuration is default except for the polling i've added at server.xml and set debug level to 9. anyway here a sniff of the log file when i place the connector/j under my APPLICATION/WEB-INF/lib directory or at $CATALINA_HOME/common/lib

TOMCAT + MYSQL need help

2003-03-18 Thread Anthony Roque Adriano
Hi, I've been searching the mailist but can't seem to find a problem similar to what i'm encountering. First here's a background of my setup MySQL server = mysql-server-3.23.54a-3 TomCat = jakarta-tomcat-4.1.18 ODBC = Connector/J 3.0.6-stable Base OS = RedHat Linux 7.3 JSDK = j2sdk1.4.1_02

RE: TOMCAT + MYSQL need help

2003-03-18 Thread Gustavo Cebrian
- From: Anthony Roque Adriano [mailto:[EMAIL PROTECTED] Sent: 18 March 2003 11:53 To: [EMAIL PROTECTED] Subject: TOMCAT + MYSQL need help Hi, I've been searching the mailist but can't seem to find a problem similar to what i'm encountering. First here's a background of my setup MySQL server = mysql

Re: TOMCAT + MYSQL need help

2003-03-18 Thread Martin Jacobson
Anthony Roque Adriano wrote: Hi, I've been searching the mailist but can't seem to find a problem similar to what i'm encountering. First here's a background of my setup MySQL server = mysql-server-3.23.54a-3 TomCat = jakarta-tomcat-4.1.18 ODBC = Connector/J 3.0.6-stable Base OS = RedHat Linux

Re: TOMCAT + MYSQL need help

2003-03-18 Thread Anthony Roque Adriano
) at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:155) Mark - Original Message - From: Martin Jacobson [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, March 18, 2003 9:51 PM Subject: Re: TOMCAT + MYSQL need help Anthony Roque Adriano wrote: Hi, I've

Need help configuring Tomcat (Standalone) with CGI Suppport

2003-03-18 Thread Luis Casillas
Can anyone help me configure this setup. Do I need to create the actual cgi-bin and if so where? Running on Windows. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

need help with tomcat service(compiling jsps)

2003-02-26 Thread Mark Strecker
Hello All, I installed tomcat as a service and am getting errors compiling jsps ... it works fine just using the startup.bat. I am using tomcat 4.1.18 and jdk1.3.1. Here is the install command I used : d:\Programs\tomcat\bin\tomcat -install Tomcat D:\Programs\jdk1.3.1\jre\bin\hotspot\jvm.dll

Need help - jk2_init() Can't find child

2003-02-25 Thread Charles A Jordan
I am using jakarta-tomcat-4.1.18, apache 2.0.44, on Solaris 9 using mod_jk2.so. tomcat starts with no errors but when I start apache I see the following in the error_log file: [Tue Feb 25 14:24:51 2003] [error] jk2_init() Can't find child 813 in scoreboard [Tue Feb 25 14:24:51 2003] [error]

RE: Need help - jk2_init() Can't find child

2003-02-25 Thread Edson Alves Pereira
Try to use mod_jk-2.0.43.so -- De: Charles A Jordan[SMTP:[EMAIL PROTECTED] Responder:Tomcat Users List Enviada: terça-feira, 25 de fevereiro de 2003 17:26 Para: [EMAIL PROTECTED] Assunto: Need help - jk2_init() Can't find child I am using jakarta

RE: Need help - jk2_init() Can't find child

2003-02-25 Thread Charles A Jordan
I tried this but I get the exact same results Try to use mod_jk-2.0.43.so -- De: Charles A Jordan[SMTP:[EMAIL PROTECTED] Responder: Tomcat Users List Enviada:terça-feira, 25 de fevereiro de 2003 17:26 Para: [EMAIL PROTECTED] Assunto:Need help

RE: Need help - jk2_init() Can't find child

2003-02-25 Thread Edson Alves Pereira
] Assunto: RE: Need help - jk2_init() Can't find child I tried this but I get the exact same results Try to use mod_jk-2.0.43.so -- De: Charles A Jordan[SMTP:[EMAIL PROTECTED] Responder:Tomcat Users List Enviada: terça-feira, 25 de fevereiro de 2003

RE: Need help - jk2_init() Can't find child

2003-02-25 Thread pqin
Pereira [mailto:[EMAIL PROTECTED] Sent: February 25, 2003 3:55 PM To: 'Tomcat Users List' Subject: RE: Need help - jk2_init() Can't find child Then, get the mod_jk2´s source and build it for your system, if the same error happen again tell us. -- De: Charles A Jordan[SMTP

Re: How It's Done (was Re: Need help - tomcat do not generate .javaand .class file in the work folder)

2003-02-15 Thread Chong Yu Meng
Hi Steve : I've written a kind of tutorial that hopefully will help you (and other newbies) get started. It isn't complete yet, but I think I covered most of the essential bits for people new to Tomcat. It's not an admin guide, so you don't have to worry about flipping to and fro for answers.

Need help - tomcat do not generate .java and .class file in the work folder

2003-02-14 Thread Daniel Chan
Hi I need some help on Tomcat. As far as I know every time I restart tomcat it will generate some .java and .class files for the updated JSP pages in a subfolder of the webapps folder. I added a few jsp pages in a subfolder, download, restarted Tomcat then I try to access pages from my browser.

Re: Need help - tomcat do not generate .java and .class file in the work folder

2003-02-14 Thread Mufaddal
Have you tailored the server.xml file to have a context for your webapp ? How are you trying to access the JSP page from the browser ? On Friday, February 14, 2003, at 11:24 PM, Daniel Chan wrote: Hi I need some help on Tomcat. As far as I know every time I restart tomcat it will generate

Re: Need help - tomcat do not generate .java and .class file in the work folder

2003-02-14 Thread Steve Burrus
hOW exactly is that particular process done anyway Have you tailored the server.xml file to have a context for your webapp?? I have tried to do this before, but alas, without any successful results!! Now, tell me please about editing the servlet mapping and the servlet name tags because I

How It's Done (was Re: Need help - tomcat do not generate .java and .class file in the work folder)

2003-02-14 Thread Will Hartung
From: Steve Burrus [EMAIL PROTECTED] Sent: Friday, February 14, 2003 2:59 PM Subject: Re: Need help - tomcat do not generate .java and .class file in the work folder hOW exactly is that particular process done anyway Have you tailored the server.xml file to have a context for your webapp

<    1   2   3   4   5   6   7   8   >