can't find child in scoreboard error

2003-12-05 Thread Sachin Dole
Hi I have checked the archives and google to solve the problem but to no avail. Please help. The error I get in my apache error_log when navigating to http://localhost/examples is: [Sat Dec 06 00:11:21 2003] [info] Server: Apache/2.0.46, Interface: mod_ssl/2.0.46, Library: OpenSSL/0.9.6b [Sat De

Re: Session invalidate question

2003-12-05 Thread Bill Barker
In Tomcat 4, sessionDestroyed is called after the session has been invalidated. In Tomcat 5, it is called before the session has been invalidated. This is becuase the Servlet-Spec changed the requirement between 2.3 and 2.4. "Atreya Basu" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTE

RE: Tomcat, eclipse and jpda

2003-12-05 Thread Simon Chou
Serg, If you turn on jpda mode, I assume that you want to perform a remote debugging. If your question is where should the debugging client run, then the answer is that you can do the debugging either on the client or on the server. However, I don't think you should use port 8080. To find out, o

Re: mod_jk2 and tomcat version 3.1

2003-12-05 Thread Bill Barker
I don't know about 3.1, but if you mean 3.3.1, then the answer is yes. "Peter Choe" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > can mod_jk2 be used with tomcat version 3.1? > > Peter Choe - To unsubscribe, e-

jk2: [error] mod_jk child init 1 0 with win98

2003-12-05 Thread Hans-Peter Fier
hi all, on a Win98-system I've installed - Apache2.0.48 - mod_jk2-2.0.43.dll - Tomcat 5.0.14 During Apache-startup an error "[error] mod_jk child init 1 0" occurs. Does anybody know about this problem an how to avoid it? Maybe it's not an error but an erroneous handling of ChildID 0 in mod_jk2.c?

Re: Database pool problem

2003-12-05 Thread Dan Johnsson
I understand that you do not have a choice, but please not that the JDBC-ODBC bridge is *not for production* [according to Sun], it is *solely* for development and evaluation. The bridge contains identified bugs that will not be addressed [i e support is EOLed]. So, you are using this at your own r

Re: 2 instances of Tomcat

2003-12-05 Thread Dan Johnsson
what about having two JDK? Iain As you have identified, this all falls back on having multiple production environments (with its own set of installed software of specific versions) deployed on the same machine. The good new is that java is multiple-deploy-enabled. I e, the java binaries does not i

Re: How to patch a class file

2003-12-05 Thread Tim Funk
The easy way is to 1) pull the source version: (Branch tomcat_40_branch) http://cvs.apache.org/viewcvs.cgi/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/util/CookieTools.java?only_with_tag=tomcat_40_branch 2) Apply your patch 3) Compile. The lazy way is to have $CATALINA_HOME/server/lib

How to patch a class file

2003-12-05 Thread David Evans
Hello, I have a problem with tomcat and Ie 5.0 on a Mac. I have found the answer to my problem here: http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6983 its says i should: *** The file to patch is src/catalina/src/share/org/apache/catalina/util/CookieTools.java Jay

RE: mod_jk worker help please!!

2003-12-05 Thread Stephanie A Bickel
Oh...and I believe that is the ajp13 connector, not the worker "Sullivan,

RE: mod_jk worker help please!!

2003-12-05 Thread Stephanie A Bickel
what does your mod_jk.log show? As far as I knew, that showed the workers. In my mod_jk, it tells me it cannot find the worker and it does not show the worker being created

RE: mod_jk worker help please!!

2003-12-05 Thread Sullivan, Patrick
These are the workers: 2003-12-04 17:16:58 Ajp13Connector[8009] Starting background thread 2003-12-04 17:16:58 Ajp13Processor[8009][0] Starting background thread 2003-12-04 17:16:58 Ajp13Processor[8009][1] Starting background thread 2003-12-04 17:16:58 Ajp13Processor[8009][2] Starting background th

RE: common dbcp question

2003-12-05 Thread Daniele Innocenti
In an application I was writing I forgot closing some connections. Despite the fact I had configured Tomcat as the example shows, no connections was ever released. Solutions was simple, writing better code. But I wonder if remove-abandoned actually do what it is supposed to. Has anyone used it wi

Re: Communication failure during handshake. Is there a server running on localhost:3306?

2003-12-05 Thread Glenn Parsons
At 08:23 PM 12/5/2003 +0530, you wrote: hi all, i configured tomcat 4.1.29 with mysql 4.1 . when i try to use the default connection pooling of tomcat i get the following error. can some one help me solve this? Thanks Bopanna Port 3306 is the mysql port, so you should be checking whether your mys

mod_jk2 and tomcat version 3.1

2003-12-05 Thread Peter Choe
can mod_jk2 be used with tomcat version 3.1? Peter Choe - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Communication failure during handshake. Is there a server running on localhost:3306?

2003-12-05 Thread N.B.Bopanna
hi all, i configured tomcat 4.1.29 with mysql 4.1 . when i try to use the default connection pooling of tomcat i get the following error. can some one help me solve this? Thanks Bopanna javax.servlet.ServletException: Cannot create PoolableConnectionFactory, cause: Communication failure during

Re: Detecting Tomcat version in Ant

2003-12-05 Thread Tim Funk
Way 1: Look at properties file: org/apache/catalina/util/ServerInfo.properties Way 2: Cehck for the existence of a class that you know exists in tomcat5 but not tomcat 4. Use one of the ways above to set a property to let you know the tomcat version. I'm not sure which way would be easier at the

Re: Tomcat 5 and JSP's newbie help.

2003-12-05 Thread Ben Souther
It's blowing up becuase it can't find the tag library descriptor (TLD). Your URI is telling to look on the web (http://java.sun.com/jstl/core). Check that URI again. You shouldn't have to past any Jars. On Friday 05 December 2003 02:44 pm, Elam Daly wrote: > Howdy all, > > I am going through

RE: mod_jk worker help please!!

2003-12-05 Thread Stephanie A Bickel
David - I added the jvmroute but it still is not working. The whole problem is the worker is never being created in the first place...it seems to be ignoring my worker.list and creating it's own worker ajp12 on port 8007. So, even after that change, it can't find the worker I put in workers.

Re: Tomcat 5 and JSP's newbie help.

2003-12-05 Thread Elam Daly
I had to copy the standard.jar file included with Tomcat as well as tools.jar from my j2sdk(1.4.2). Is this normal? Thanks, Elam And am getting the error: org.apache.jasper.JasperException: The absolute uri: http://java.sun.com/jstl/core cannot be resolved in either web.xml or the jar files dep

Re: Image loading

2003-12-05 Thread Ben Souther
Adding the "/" to the relative path is not a good idea unless you know that the application will always deployed in a context named "", as the ROOT context that shipps with tomcat is. Remove the "/" and use "../" if you need to back up a directory. On Friday 05 December 2003 01:23 pm, Greg

RE: common dbcp question

2003-12-05 Thread Chaikin, Yaakov Y (US SSA)
Check out "Preventing dB connection pool leaks" at: http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jndi-datasource-examples -howto.html#Database%20Connection%20Pool%20(DBCP)%20Configurations HTH Yaakov Chaikin Software Engineer BAE SYSTEMS 301-838-6899 (phone) 301-838-6802 (fax) [EMAIL PROTECTE

RE: Image loading

2003-12-05 Thread Gregory, Carlton
nevermind problem solved -Original Message- From: Gregory, Carlton [mailto:[EMAIL PROTECTED] Sent: Friday, December 05, 2003 1:23 PM To: '[EMAIL PROTECTED]' Subject: Image loading Good Day all, I refer to any images in my web application by using "/images/" which has been worki

Tomcat 5 and JSP's newbie help.

2003-12-05 Thread Elam Daly
Howdy all, I am going through OReilly's JavaServer Pages, 2nd edition and am having problems with the first example: *<%@ page contentType="text/html" %>* *<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core"; %>* JSP is Easy JSP is as easy as ... <%-- Calculate the sum

Image loading

2003-12-05 Thread Gregory, Carlton
Good Day all, I refer to any images in my web application by using "/images/" which has been working fine for weeks. I tried to refer to a new image that I wanted to use on a page and referred to it the same way and it did not load. I fully qualified the path name for th

RE: Tomcat 5 Deployer

2003-12-05 Thread Robert D. Abernethy IV
Ok, I found the problem with the "update" attribute (Ant wasn't configured correctly and was still referencing an older catalina-ant.jar). Should the "reload" target depend on "compile"? Rob Abernethy Dynamic Edge, Inc. -Original Message- From: Robert D. Abernethy IV [mailto:[EMAIL PROTE

common dbcp question

2003-12-05 Thread Michal N Lusztig
I inherited a very badly writen Tomcat4.1 application, where the developer is not closing connections, relying rather on configuration parameters for the dbcp pool to take care of removing abandoned connections. Is such a strategy supposed to work ? If yes, what are the configuration parameter

Re: Apache 2.0.48 and Tomcat 4.1.29 and JK2

2003-12-05 Thread Tom Holmes Jr.
There was a way at one point that you didn't have to start Tomcat. There was a way at some point that starting Apache2 would also automatically start Tomcat as well at the same time. That way you didn't have to start one and then the other. I have this working on one machine like that ... can't

Tomcat 5 Deployer

2003-12-05 Thread Robert D. Abernethy IV
Has anyone had success deploying a web application using the new Deployer package? I have tried to use it, but I am receiving this error: deploy: [deploy] BUILD FAILED: file:C:/eclipse/workspace/Alpaca/build.xml:104: The task doesn't support the "update" attribute. I also found it difficu

RE: Database pool problem

2003-12-05 Thread Chaikin, Yaakov Y (US SSA)
> > | user > ^ > That worked! THANKS! Yaakov Chaikin Software Engineer BAE SYSTEMS 301-838-6899 (phone) 301-838-6802 (fax) [EMAIL PROTECTED] - To unsubscribe, e-mail:

RE: Database pool problem

2003-12-05 Thread Chaikin, Yaakov Y (US SSA)
That's correct. (I am not actually doing this, you understand. Tomcat is supposed to do this for me!) I took the password off the database and it works. It's good enough to keep going with jsp development, but I still need to know how to do this with the password. So, I do not understand what t

RE: RequestDispatcher.forward to cgi?

2003-12-05 Thread Januski, Ken
Thanks Tim, I'll keep working on it then and see where it gets me. Ken -Original Message- From: Tim Funk [mailto:[EMAIL PROTECTED] Sent: Friday, December 05, 2003 12:54 PM To: Tomcat Users List Subject: Re: RequestDispatcher.forward to cgi? I would think that the CGI servlet would work

RE: Instructions for compiling JK2 connector for tomcat 5?

2003-12-05 Thread Neil Aggarwal
Jerry: I also have had to set up symbolic links, but this error is looking for something in the build directory and there are no docs to tell me what it is looking for. Thanks, Neil -- Neil Aggarwal, JAMM Consulting, (972)612-6056, www.JAMMConsulting.com FREE! Valuable info on how your

RE: mod_jk worker help please!!

2003-12-05 Thread David O'Brien
From my server.xml port="8009" minProcessors="50" maxProcessors="100" acceptCount="100" debug="0"/> the JVMROUTE has to be the same as the worker name or session won't be sticky... -Dave At 01:26 PM 12/5/2003, Stephanie A Bickel wrote: Dave - I h

Broken Pipe

2003-12-05 Thread Rob Wichterman
I received this error twice before my tomcat 4.1.24 server died. Does anyone know what this error is: 2003-12-04 16:37:45 StandardWrapperValve[default]: Servlet.service() for servlet default threw exception java.net.SocketException: Broken pipe at java.net.SocketOutputStream.socketWrite0

RE: mod_jk worker help please!!

2003-12-05 Thread Stephanie A Bickel
Dave - I have changed the name of my worker in my workers.properties file. First I had my worker.list=ajp13, which is the default in server.xml, right? Then, I changed it to worker.list=test I did not change my server.xml file, but I thought you only specify for the listener. Maybe I am mis

RE: mod_jk worker help please!!

2003-12-05 Thread David O'Brien
I see no jvm="workers83" in the sever.xml file ??? -Dave Yes, I have that. So, why would it ignore my worker.list for the workers I define? 2003-12-04 17:16:58 Ajp13Connector[8009] Starting background thread 2003-12-04 17:16:58 Ajp13Processor[8009][0] Starting background thread 2003-12-04

Session invalidate question

2003-12-05 Thread Atreya Basu
Quick question; When using a SessionListener does sessionDestroyed get called AFTER a session has been invalidated? Thanks -- _ Atreya Basu Developer, Greenfield Research Inc. e-mail: atreya (at) greenfieldresearch (dot) ca -

Re: Tomcat, eclipse and jpda

2003-12-05 Thread Jeff Tulley
The source code must be on the client machine, in an eclipse project. The binary build of it will be in your normal web application, in a jar file in WEB-INF\lib or as a .class file under WEB-INF\classes You call the servlet as you normally would, by its mapping that is specified in your web.x

How to load test an Axis Service in Tomcat?

2003-12-05 Thread Tom Ly
I've been using to JMeter to load test Tomcat on a RedHat machine. How can I load test an Axis service? - Do you Yahoo!? Protect your identity with Yahoo! Mail AddressGuard

Re: RequestDispatcher.forward to cgi?

2003-12-05 Thread Tim Funk
I would think that the CGI servlet would work on a forward but you must be sure that: 1) No input streams were open (or that they are compatible with the CGIServlet) 2) On a POST, you do not call or look at request parameters or the input stream since it looks like the CGIServlet wants to pass th

RE: mod_jk worker help please!!

2003-12-05 Thread Stephanie A Bickel
One other question that MIGHT help. The apahe I am working with is running on port instead of the default port 80. Is there anything in the configuration that needs to be done different in this case?

RE: mod_jk worker help please!!

2003-12-05 Thread Stephanie A Bickel
Yes. I have tripple checked the workers.properties. I have also did a search on the server to make sure there is no other worker.properties and there is none. I do clear out the mod_jk.log each time to make sure it is still doing the same thing after each change.

Re: Database pool problem

2003-12-05 Thread Brent Verner
[2003-12-05 11:07] Chaikin, Yaakov Y (US SSA) said: | I am trying to configure Tomcat to have a database connection pool for | my database, but when I try to access the database through a jsp, it | gives me "wrong password" for the database... BUT it IS the right | password. | My server.xml file

RE: Database pool problem

2003-12-05 Thread Edson Alves Pereira
So, correct if i´m wrong. To connect to you database is: Class.forName( "sun.jdbc.odbc.JdbcOdbcDriver" ); Connection dbConn = DriverManager.getConnection( "jdbc:odbc:afec", "UserName", "UserPassword" ); > -- > De: Chaikin, Yaakov Y (US SSA)[SMTP:[EMAIL PROTECTED

Re: Tomcat, eclipse and jpda

2003-12-05 Thread Sergi Erola
Thanks Jeff But, I have one question... The servlet code must be in server machine or client machine?Or two machines? I call client machine the machine that has eclipse. And I must call servlet in with server url? Moreover, where is the debug information? Jeff Tulley <[EMAIL PROTECTED]> wrote

Detecting Tomcat version in Ant

2003-12-05 Thread Matt Raible
Is it possible to detect the version of Tomcat that the user has in Ant? I have the following Ant task: description="copies jdbc driver and context.xml to tomcat"> Copying database JDBC Driver to ${tomcat.home}/common/lib Copying ${webapp.name}.xm

RE: mod_jk worker help please!!

2003-12-05 Thread Jeff Tulley
I'll go through the potentially obvious mistakes: 1) Are you sure you are editing the correct workers.properties? 2) Have you cleared out the mod_jk.log before trying again, maybe the messages are old I'm sure you probably have done all of this, but I know that these mistakes, while obvious, are q

RE: mod_jk worker help please!!

2003-12-05 Thread Stephanie A Bickel
Yes, I have that. So, why would it ignore my worker.list for the workers I define? 2003-12-04 17:16:58 Ajp13Connector[8009] Starting background thread 2003-12-04 17:16:58 Ajp13Processor[8009][0] Starting background thread 2003-12-04 17:16:58 Ajp13Processor[8009][1] Starting background thread

Re: Tomcat, eclipse and jpda

2003-12-05 Thread Jeff Tulley
For debugging servlets, you simply start Tomcat up on the server machine in jpda mode, make sure you have a project in eclipse with all of your servlet code (compile with debug information, which in my eclipse is the default), and put a breakpoint in the servlet code. Connect to the Tomcat debu

jkstatus

2003-12-05 Thread yuval
Hi, I configure the jkstatus in the worker2.properties like this: [status:status] [uri:/jkstatus/*] worker=status:status but when i try in the browser (127.0.0.1/jkstatus/) to see the status i get 404 error. How do i see the status? Yuval

RE: Database pool problem

2003-12-05 Thread Chaikin, Yaakov Y (US SSA)
> Could you show us how you make a simple connection to that M$ Acess > database to compare? Well, I sort of already did. The realm is working 100% using that database. Here is my tag: This works and it's the same attributes, just with different names to comply with Realm tag dtd. Any i

RE: Database pool problem

2003-12-05 Thread Chaikin, Yaakov Y (US SSA)
> Maybe M$ Access isn´t a good database to test. Could you use some > real database? Like MySQL, PostgreeSQL, HypersonicSQL, Oracle and so on. I told you, it's not my choice at this point. I am not about to tell my clients to since they are using M Access I am going to develop. And yes

RE: Basic Authentication

2003-12-05 Thread Sleeper, Jesse
Here is the exact code to do it my friend. Redirect or whatever you want, after the System.out.println -Jesse = import javax.servlet.*; import javax.servlet.http.*; import java.io.*; import java.util.*; public class AuthenticationServlet extends HttpServlet

RE: mod_jk worker help please!!

2003-12-05 Thread William R Briggs
Return Receipt Your RE: mod_jk worker help please!! document :

RE: RequestDispatcher.forward to cgi?

2003-12-05 Thread Januski, Ken
Tim, Now that I look at them closely I see that most of them are due to a looping problem in my program. So it just logs over and over that it's forwarding the request. I'll investigate to see if the loop is due to an error in my progamming (certainly possible since I've had to tinker with a very

Re: Basic Authentication

2003-12-05 Thread Tim Funk
http://jakarta.apache.org/tomcat/faq/windows.html#ntlm -Tim Bui, Bao-Ha D wrote: Hi all, I need to capture the WinNT account name of users to a jsp page. We have Active Directory at our company. We can have a basic login form (that standard pop up login form from Window). Could anyone tel

RE: mod_jk worker help please!!

2003-12-05 Thread Sullivan, Patrick
Check you tomcat logs for Ajp13Connector[8883] Opening server socket on all host IP addresses Ajp13Connector[8883] Starting background thread Ajp13Processor[8883][0] Starting background thread Ajp13Processor[8883][1] Starting background thread Ajp13Processor[8883][2] Starting background thread Ajp1

Re: Basic Authentication

2003-12-05 Thread Matt Raible
You might want to read the comments on the following URL - it shows how to configure authentication with a Windows domain, but apparently, it's out of date: http://www.raibledesigns.com/page/rd? anchor=easy_windows_authentication_with_tomcat Matt On Dec 5, 2003, at 9:45 AM, Bui, Bao-Ha D wr

RE: Basic Authentication

2003-12-05 Thread Edson Alves Pereira
Maybe through navigator object in user´s browser, you must check if there´s not permission constraint for that. > -- > De: Bui, Bao-Ha D[SMTP:[EMAIL PROTECTED] > Responder:Tomcat Users List > Enviada: sexta-feira, 5 de dezembro de 2003 13:45 > Para: 'Tomcat Users

RE: Database pool problem

2003-12-05 Thread Edson Alves Pereira
Could you show us how you make a simple connection to that M$ Acess database to compare? > -- > De: Edson Alves Pereira[SMTP:[EMAIL PROTECTED] > Responder:Tomcat Users List > Enviada: sexta-feira, 5 de dezembro de 2003 14:46 > Para: 'Tomcat Users List' > Assunto:

RE: Database pool problem

2003-12-05 Thread Edson Alves Pereira
Maybe M$ Access isn´t a good database to test. Could you use some real database? Like MySQL, PostgreeSQL, HypersonicSQL, Oracle and so on. > -- > De: Chaikin, Yaakov Y (US SSA)[SMTP:[EMAIL PROTECTED] > Responder:Tomcat Users List > Enviada: sexta-feira, 5 de dezembro de

Basic Authentication

2003-12-05 Thread Bui, Bao-Ha D
Hi all, I need to capture the WinNT account name of users to a jsp page. We have Active Directory at our company. We can have a basic login form (that standard pop up login form from Window). Could anyone tell me where to start and how to set it up? I have looked at the HowTo for Tomcat Re

JspC and taglibs

2003-12-05 Thread Edson Alves Pereira
Hello folks, i´m trying to compile my JSP pages offline, using an ant´s build script. But it seems that JspC cannot find my taglibs, how can put a classpath to it or make JspC see my taglibs? Regards, Edson

RE: [TOMCAT] 5.0.16

2003-12-05 Thread Sullivan, Patrick
Really? JAVA_HOME should be point to the jdk base directory not a jar file, you drop the /lib/tools.jar from it. Thank you, Patrick Sullivan Centura Health 303-643-4021 -Original Message- From: Schalk [mailto:[EMAIL PROTECTED] Sent: Friday, December 05, 2003 8:39 AM To: 'Tomcat Users

Re: servlet sendRedirect() to j_security_check problem (remember me)

2003-12-05 Thread Matt Raible
Sounds like a server configuration problem. I don't know where followRedirects is disabled, but it looks like it is somewhere. Matt On Dec 5, 2003, at 8:46 AM, Chris Ward wrote: Tomcat-Users (Cc:Matt/Adam), I've just tried doing a redirect to j_security_check using the commons package "org.apa

Testing, please ignore

2003-12-05 Thread William R Briggs
Return Receipt Your Testing, please ignore document :

Database pool problem

2003-12-05 Thread Chaikin, Yaakov Y (US SSA)
Hi, I am having the following problem and how someone can point out to me what I am doing wrong. I am trying to configure Tomcat to have a database connection pool for my database, but when I try to access the database through a jsp, it gives me "wrong password" for the database... BUT it IS the

RE: [TOMCAT] 5.0.16

2003-12-05 Thread Derek Mahar
Schalk: I think your JAVA_HOME is incorrect. Why does it point to j2sdk1.4.2/lib/tools.jar? My JAVA_HOME is C:\Sun\j2sdk1.4.2. Derek -Original Message- From: Schalk [mailto:[EMAIL PROTECTED] Sent: December 5, 2003 10:39 AM To: 'Tomcat Users List' Subject: RE: [TOMCAT] 5.0.16 Derek

connection timeout reached

2003-12-05 Thread L.Karam
  What is the reason of this INFO to happen?   05/12/2003 06:46:01 org.apache.jk.common.ChannelSocket processConnection INFO: connection timeout reached   It appears with sufficient frequency. What I must make to stop it?   Tks   Leandro Karam __

Re: [TOMCAT] 5.0.16

2003-12-05 Thread Remy Maucherat
Schalk wrote: Derek My JAVA_HOME points to j2sdk1.4.2/lib/tools.jar No, it should point to the base path of the JDK (ex: c:\j2sdk1.4.2). -- x Rémy Maucherat Senior Developer & Consultant JBoss Group (Europe) SàRL x -

Testing, please ignore

2003-12-05 Thread Chaikin, Yaakov Y (US SSA)
Yaakov Chaikin Software Engineer BAE SYSTEMS 301-838-6899 (phone) 301-838-6802 (fax) [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: 2 Hosts: 2nd one tries to load the first's XML files

2003-12-05 Thread Matt Raible
This did fix the problem - thanks Liem. Matt On Dec 4, 2003, at 6:17 PM, Liem Do wrote: If each virtual host has their own set of applications then you should set the appBase for each host to different directories. So in your case the Host defs should look like the following: ... ... Whe

Re: [TOMCAT] 5.0.16

2003-12-05 Thread Ben Souther
try pointing it to the j2sdk directory. IE: /usr/local/j2sdk1.4.2 On Friday 05 December 2003 10:38 am, Schalk wrote: > Derek > > My JAVA_HOME points to j2sdk1.4.2/lib/tools.jar > > Kind Regards > Schalk Neethling > Web Developer.Designer.Programmer.CEO > Volume4.Development.Multimedia.Branding >

RE: servlet sendRedirect() to j_security_check problem (remember me)

2003-12-05 Thread Chris Ward
Tomcat-Users (Cc:Matt/Adam), I've just tried doing a redirect to j_security_check using the commons package "org.apache.commons.httpclient". The error I get from the code is [INFO] HttpMethodBase - -Redirect requested but followRedirects is disabled statusCode : 302 Any clues given my code b

RE: [TOMCAT] 5.0.16

2003-12-05 Thread Schalk
Derek My JAVA_HOME points to j2sdk1.4.2/lib/tools.jar Kind Regards Schalk Neethling Web Developer.Designer.Programmer.CEO Volume4.Development.Multimedia.Branding emotionalize.conceptualize.visualize.realize Tel: +27125468436 Fax: +27125468436 email:[EMAIL PROTECTED] web: www.volume4.co.za This

Re: What is jakarta-tomcat-5.0.16-embed.zip ?

2003-12-05 Thread Remy Maucherat
Shapira, Yoav wrote: Howdy, People who want to embed tomcat in their own applications, e.g. JBoss developers ;) It was created (by Costin) to: - test and debug JMX startup - improve embeddability - because some people wanted a smaller distribution (and the old LE wasn't actually useful, except to

RE: Apache 2.0.48 and Tomcat 4.1.29 and JK2

2003-12-05 Thread Mike Millson
On Fri, 2003-12-05 at 10:33, Asif Chowdhary wrote: > As far as I know. Tomcat has to be started first and then the apache web server. > Also in server.xml you have to define coyote connector > listening on port 8009 or some other port. That was my understanding until recently. I think it was tr

RE: Apache 2.0.48 and Tomcat 4.1.29 and JK2

2003-12-05 Thread Asif Chowdhary
As far as I know. Tomcat has to be started first and then the apache web server. Also in server.xml you have to define coyote connector listening on port 8009 or some other port. 8009 is the default. -Original Message- From: Tom Holmes Jr. [mailto:[EMAIL PROTECTED] Sent: Friday, December

RE: Illegal Access Error [ URLConnection ]

2003-12-05 Thread Stuart Stephen
Ahh, didn't think of that. That's the badger. Good work! Thanks. -Original Message- From: Jon Wingfield [mailto:[EMAIL PROTECTED] Sent: 05 December 2003 13:21 To: Tomcat Users List Subject: Re: Illegal Access Error [ URLConnection ] Yep. An Error isn't an Exception; it's a Throwable. I

Apache 2.0.48 and Tomcat 4.1.29 and JK2

2003-12-05 Thread Tom Holmes Jr.
Many months ago, I installed Apache 2.0.46, Tomcat 4.1.18, and JK2. I got this all working fantastically. I had it configured so that when I started Apache, it started Tomcat also. I don't know how I did it, but I'd like to see if anyone knows the details I have forgotten. On another machi

Tomcat, eclipse and jpda

2003-12-05 Thread Sergi Erola
Hi, I read the message in tomcat-user list about eclipse, tomcat and jpda, but i don't understand very well. I have two machines, one is a tomcat server and the other machine is my workstation. I execute tomcat with "./catalina.sh jpda run" and i can connect with eclipse when I try to debug.

Antwort: Re: JAASRealm Tomcat 5.x -> Tomcat 4.1.x

2003-12-05 Thread Oliver Wulff
Hi Adam I saw the following note in JAASMemoryLoginModule.java: // Validate the username and password we have received principal = null; // FIXME - look up and check password That's why I thought that it is not finished yet. Oliver ***

RE: What is jakarta-tomcat-5.0.16-embed.zip ?

2003-12-05 Thread Shapira, Yoav
Howdy, People who want to embed tomcat in their own applications, e.g. JBoss developers ;) Yoav Shapira Millennium ChemInformatics >-Original Message- >From: Zsolt Koppany [mailto:[EMAIL PROTECTED] >Sent: Friday, December 05, 2003 10:17 AM >To: Tomcat Users List >Subject: What is jakart

What is jakarta-tomcat-5.0.16-embed.zip ?

2003-12-05 Thread Zsolt Koppany
Who should download jakarta-tomcat-5.0.16-embed.zip? What is the difference compared to Zsolt - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: TC 4 <-oreillyMultipart-> TC5: Corrupt form data: premature ending

2003-12-05 Thread Remy Maucherat
Shapira, Yoav wrote: Howdy, If I were you, Senor Griesbach, I would dump COS in favor of jakarta commons fileupload instead of spending significant time debugging intricate input stream problems... But that's just me, and I'm not a patient debugger ;) What cos is doing is bad IMO (it should read i

Re: TC 4 <-oreillyMultipart-> TC5: Corrupt form data: premature ending

2003-12-05 Thread Dirk Griesbach
Yoav, Rémy, thanks for your suggestions. We will consider that; the reason why we hesitate is simply that we would have to apply modifications to the cos-lib we've done would have to be ported to commons fileupload also (with testing, adapting deployment etc). BTW, testing with TC5.0.16 was succes

WebDAV Problems with Tomcat 4.1.29

2003-12-05 Thread s6442611
Hello I´m using a tomcat 4.1.29 server application on my webserver. I want to access to this server with a webDAV client. I allready used a couple of webDAV- Client applications like DAVexplorer, SkunkDAV or Photoshop 6.0 but the system won´t work without problems. It is no problem to connect to t

RE: [OT] Global Variable Question

2003-12-05 Thread Shapira, Yoav
Hi, If you put stuff in the servlet context, the class must have access to the servlet context ;) So the class must be a servlet (or JSP, or filter, or listener, etc.) itself, or the class can be passed the servlet context from one of these servlets/JSPs/filters/listeners. Yoav Shapira Millenniu

CATALINA_BASE and libs

2003-12-05 Thread Maxime Colas des Francs
Hi all For keep my files (configuration, log, lib) clearly separate from the Tomcat distribution files, i attempt to use $CATALINA_BASE variable. But i can't move some of my jar files from $CATALINA_HOME/common/lib (JDBC driver, JCE provider, DBCP & Pool jar ...) Is there a way to put this stuff u

Re: [OT] Global Variable Question

2003-12-05 Thread Tim Funk
No, use JNDI instead. http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jndi-resources-howto.html -Tim Atreya Basu wrote: Hi, This is off topic, but maybe someone can help me regardless. I want to store some global variables in my web.xml file in the element. I have a class (extends Object)

[OT] Global Variable Question

2003-12-05 Thread Atreya Basu
Hi, This is off topic, but maybe someone can help me regardless. I want to store some global variables in my web.xml file in the element. I have a class (extends Object) that I want having access to those parameters. Is there any way for that class to access the parameters in the element?

RE: [TOMCAT] 5.0.16

2003-12-05 Thread Derek Mahar
Where is your JVM installed? Is your JAVA_HOME environment variable set to this location? The Tomcat 5.0.16 Windows installation worked fine for me and had no trouble finding the JVM. Derek -Original Message- From: Schalk [mailto:[EMAIL PROTECTED] Sent: December 4, 2003 5:44 PM To: [EM

RE: RE : [offtopic] Architecture Question

2003-12-05 Thread Yiannis Mavroukakis
Amen brother :) -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: 05 December 2003 14:09 To: Tomcat Users List Subject: RE: RE : [offtopic] Architecture Question Howdy, I use Axis on Tomcat, of course ;) Yoav Shapira Millennium ChemInformatics >-Original Mes

RE: TC 4 <-oreillyMultipart-> TC5: Corrupt form data: premature ending

2003-12-05 Thread Shapira, Yoav
Howdy, If I were you, Senor Griesbach, I would dump COS in favor of jakarta commons fileupload instead of spending significant time debugging intricate input stream problems... But that's just me, and I'm not a patient debugger ;) Yoav Shapira Millennium ChemInformatics >-Original Messag

RE: Restarting tomcat from web page

2003-12-05 Thread Shapira, Yoav
Howdy, It does matter from a practicality perspective: tomcat comes with built-in features to restart individual webapps, so you don't have to do any work. O restart all of tomcat externally is much more work, you'll have to write a script, or use an external tool, etc. Yoav Shapira Millennium

RE: RE : [offtopic] Architecture Question

2003-12-05 Thread Shapira, Yoav
Howdy, I use Axis on Tomcat, of course ;) Yoav Shapira Millennium ChemInformatics >-Original Message- >From: Ben Souther [mailto:[EMAIL PROTECTED] >Sent: Friday, December 05, 2003 6:24 AM >To: Tomcat Users List >Subject: Re: RE : [offtopic] Architecture Question > >Have you looked at Ax

RE: Max. wait time for a Servlet Response

2003-12-05 Thread Shapira, Yoav
Howdy, >This is the first time I catch a mistake from you. Be carefull, or you will >fall from you're pedestal . > >On Thursday 04 December 2003 14:56, Shapira, Yoav wrote: >> Howdy, > >> By default it's about 60sec before the browser will give >> up on your servlet if it doesn't get any response

Re: 2 instances of Tomcat

2003-12-05 Thread Graham Reeds
> All run smoothly. I need to install some WorldPay stuff for testing and > live. They assure me that their servlets will not work on JDK1.3.0+, and > more importantly, will not run on anything above Tomcat 3.2.4. WorldPay has a very smooth payment system. Several of the products I have purchased

Re: 2 instances of Tomcat

2003-12-05 Thread Ben Souther
2 instances of Java shouldn't be a problem. Start your second instance of Tomcat with a script that sets the JAVA_HOME env variable to point to the second java dir. You'll have change the ports on the second tomcat instance. On Friday 05 December 2003 07:44 am, Iain Downie wrote: > Hi List,

  1   2   >