Re: problem with session tracking and redirection http--- https

2002-10-19 Thread Craig R. McClanahan
On Fri, 18 Oct 2002, Maninder S Batth wrote: Date: Fri, 18 Oct 2002 20:11:31 -0700 From: Maninder S Batth [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: problem with session tracking and redirection http--- https if session apis and

Re: Can not get javax.servlet.request.X509Certificate Attribute in teh servlet request

2002-10-19 Thread Bill Barker
The SSL support in 4.1.12 is broken with JVM 1.4.x. You need to copy http://gump.covalent.net/jars/latest/jakarta-tomcat-connectors/tomcat-utils. jar to $CATALINA_HOME/server/lib to fix (or wait, hopefully not long, for 4.1.13). This only fixes the CoyoteConnector. The (deprecated)

Re: how to Apache2 for JK2 on Linux ???

2002-10-19 Thread yoom nguyen
Robert What you are saying is... I only need to define this line in httpd.conf LoadModule jk2_module modules/mod_jk2.so and apache2 by default will looking for the file name workers2.properties. How does apache2 know where to look for workers2.properties ? Is it by default apache2 looks for

RE: Window doesnt close on shutdown

2002-10-19 Thread RXZ JLo
I have tried out your suggestions: 1. Killing the task via Task manager did not add entries to any log 2. No error.log anywhere 3. The only error I see is in apache_log.2002-10-19.txt: 2002-10-19 11:06:12 [org.apache.catalina.connector.warp.WarpConnector] Error accepting requests

Re: tomcat match *.jsp first everything else to my servlet?

2002-10-19 Thread Bill Barker
The rules in the Servlet spec (section 11.1) state that prefix mapping take precedence over extension mappings. This means that you have two choices: 1) servlet-mapping servlet-namemy/servlet-name url-pattern//url-pattern /servlet-mapping which calls my when no other pattern

Unable to access Tomcat manager after installing Struts wars.

2002-10-19 Thread grenoml
I am using Tomcat 4.1.9 which has been running fine up until today when I downloaded the struts wars and restarted Tomcat. Now I can't access the manager app. I look in tomcat-users and the correct username and password are there but when I try to login to the manager all I ever get is a 401

Re: problem with session tracking and redirection http--- https

2002-10-19 Thread Maninder S Batth
if session apis and request dispatchers are used for internal redirection, is there still any security hole?? Craig R. McClanahan wrote: On Fri, 18 Oct 2002, Henrik Bentel wrote: Date: Fri, 18 Oct 2002 23:07:17 + From: Henrik Bentel [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL

Re: DOES BASIC AUTHENTICATION SUPPORT SSL?

2002-10-19 Thread Bill Barker
Luca Ventura [EMAIL PROTECTED] wrote in message news:GCEHKDLCEKBHKGEIBIGLEEFADKAA.ventluca;tiscali.it... Hello everybody! I have IIS as Web Server and Tomcat 4.x as Servlet Container (using the ISAPI filter). So all requests directed to servlets, jsp-pages, or java-technology based web

Re: problem with session tracking and redirection http--- https

2002-10-19 Thread Craig R. McClanahan
On Fri, 18 Oct 2002, Maninder S Batth wrote: Date: Fri, 18 Oct 2002 19:28:59 -0700 From: Maninder S Batth [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: problem with session tracking and redirection http--- https please correct me if i

Accessing classes across contexts

2002-10-19 Thread shanmugampl
Hi, I have two web applications running in my tomcat. Can i access the classes present in one of my applications from the other?. In my case one application contains some utility classes which are required by the other application. I do not want to duplicate the utility classes and

Re: Accessing classes across contexts

2002-10-19 Thread Maninder S Batth
You can put the jar file utility classes in server-install-dir/common/lib and they will be available to all apps installed. shanmugampl wrote: Hi, I have two web applications running in my tomcat. Can i access the classes present in one of my applications from the other?. In my case

RE: Tomcat 4.1X seems broken on Linux

2002-10-19 Thread Gabriele Domenichini
Thank you so much also from me. I had the same problem. Maybe we should advice the developers because IMHO it is an important issue and it is not documented I had a similar problem. I was not using JMX MBeans. The default server.xml opens up listeners for it. Comment them out and TC will

Security manager and request.getParameter() access error

2002-10-19 Thread Dala
When I use the security manager in Tomcat (4.1.12-LE-jdk1.4) some strange problems occur. When I execute the following simple JSP code: % request.getParameter(foo); % I get the following exception: org.apache.jasper.JasperException: org/apache/catalina/util/ParameterMap at

Re: socket permission catalina.policy question

2002-10-19 Thread Glenn Nielsen
Did you ever try running tomcat with the property -Djava.security.debug=access,failure set? The debug output from that can usually help you track down the source of a security policy configuration problem. Regards, Glenn Andrew Cheng wrote: I am using tomcat version 4.0. I have tried adding

Re: Ajp13Processor starting background threads under low load

2002-10-19 Thread Glenn Nielsen
One way to start debugging this type of problem is to tell the java process running Tomcat to do a Thread Stacktrace Dump. kill -QUIT java processid Then analyze the stack traces for all threads. Regards, Glenn Lindsay Patten wrote: Hi, I thought I would take a different tack on my problem

Re: Best practices question

2002-10-19 Thread Glenn Nielsen
For applications which require root permissions we do the following: Apache mod_jk (non root) -AJP- Tomcat (non root) -SSL- Tomcat SOAP server (root) Any business logic which requires root permission is implemented as a SOAP web service in the SOAP server which runs as root. That SOAP server is

Tomcat 4,0.3 and Java Mail

2002-10-19 Thread Wilhelm Colln
I want to know if Tomcat 4.0.3 comes with Java Mail included, or does I need to add the Java Mail API to the lib directory under WEB-INF ? Thanks, Wilhelm -- To unsubscribe, e-mail: mailto:tomcat-user-unsubscribe;jakarta.apache.org For additional commands, e-mail:

Re: Tomcat 4,0.3 and Java Mail

2002-10-19 Thread Soporte
I found that Tomcat 4.0.x includes the Java Mail API within the activation.jar and mail.jar files in the common/lib directory. W Wilhelm Colln wrote: I want to know if Tomcat 4.0.3 comes with Java Mail included, or does I need to add the Java Mail API to the lib directory under WEB-INF ?

Re: Accessing classes across contexts

2002-10-19 Thread Craig R. McClanahan
On Sat, 19 Oct 2002, shanmugampl wrote: Date: Sat, 19 Oct 2002 14:29:41 +0530 From: shanmugampl [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED], [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Accessing classes across contexts Hi, I have two web applications

Java Mail

2002-10-19 Thread Soporte
If some help could help .. Installations Tomcat 4.0.3 and JDK 1.4 on both servers. I am getting the following error after trying to send a message. It works (SendTextMail.jsp) on server A but not on server B Server B error : No provider for smtp Perhaps this error is very well known ? I can

Re: Unable to access Tomcat manager after installing Struts wars.

2002-10-19 Thread grenoml
This turned out to be a security realm conflict. See my followup post Multiple Tomcat Security Realms Thanks. --- grenoml [EMAIL PROTECTED] wrote: I am using Tomcat 4.1.9 which has been running fine up until today when I downloaded the struts wars and restarted Tomcat. Now I can't access the

Multiple Tomcat Security Realms

2002-10-19 Thread grenoml
I'm using Tomcat 4.1.9. Can someone point me to a document or provide an explanation of how the security realms work in Tomcat and how to implement multiple realms? I've been through the Manager HOW-TO. Still doesn't answer my question. Is it possible to declare more than one realm at a time

Re: problem with session tracking and redirection http--- https

2002-10-19 Thread Henrik Bentel
One of my problems is that I can't find anything in the servlet or tomcat documentation that mentiones any of this behaviour. If there is any, please send me the link. Also, since any time session tracking is used it can be picked up by someone, all use of https should stay strictly under

Re: Multiple Tomcat Security Realms

2002-10-19 Thread grenoml
I went through the REALM HOW-TO also. It just tells you how to setup the various realm types but not how to configure multiple realms. --- grenoml [EMAIL PROTECTED] wrote: I'm using Tomcat 4.1.9. Can someone point me to a document or provide an explanation of how the security realms work in

How to configure tomcat-4.12 to follow (allow) symbolic links?

2002-10-19 Thread Zsolt Koppany
Hi, in tomcat -4.0.4 I use symbol links for the class files, thus after compilation I don't have to copy them. I understand that tc-4.12 doesn't allow symbol links as default, but how can I configure it to allow them? Zsolt -- To unsubscribe, e-mail: