Re: How to set Error Log for Web Application in TOmcat 5.5

2004-11-21 Thread Sarath PS
hi, Here is a sample of my tomcat server.xml file. Hope it will be help ful to you unpackWARs="true" autoDeploy="true"> directory="logs/ww

Embedded Tomcat error (tomcat 5.5.4)

2004-11-21 Thread Peik Feng
Hi, I'm getting the following error when trying to run Embedded tomcat v5.5.4 (I have modified Embedded.java to print out the error) java.lang.NullPointerException at org.apache.tomcat.util.IntrospectionUtils.setProperty(IntrospectionUt ils.java:267) at org.apache.catalina.startu

RE: Problem with ssl

2004-11-21 Thread Carl Olivier
Hi. Thanks. Just cannot seem to see that attribute in the docs? Maybe I am just blind! :) Carl -Original Message- From: Bill Barker [mailto:[EMAIL PROTECTED] Sent: Saturday, November 20, 2004 9:42 PM To: [EMAIL PROTECTED] Subject: Re: Problem with ssl "Carl Olivier" <[EMAIL PROTEC

Tomcat 5.5.4 - classes in classpath not being "released"

2004-11-21 Thread Carl Olivier
Greetings. Having the following problem using Tomcat 5.5.4 under JDK 1.5: After running my webapp for a bit in a development environment, I want to copy new and replacement classes to the webapp classes location, but sometimes (about 50/50) I cannot overrite/delete some of the classes - as the VM

Re: Servlet mapping problem.

2004-11-21 Thread Stefan
Hi, I'm not using struts. Stefan www.killersites.com - Original Message - From: "sven morales" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Monday, November 22, 2004 12:25 AM Subject: Re: Servlet mapping problem. > Can you also post all your struts-config.

Re: Servlet mapping problem.

2004-11-21 Thread sven morales
Can you also post all your struts-config.xml ? I was looking for something that may be ing it to login.jsp. This line you have in your form, line of your struts-config.xml --- Stefan <[EMAIL PROTECTED]> wrote: > Hi, > > I am actually using a form to post to the target > servlet: > > meth

Re: Servlet mapping problem.

2004-11-21 Thread Stefan
Hi, I am actually using a form to post to the target servlet: name: The form itself is sitting in a page with this URL: http://127.0.0.1/myWebsite/logIn.jsp And the strange thing is that when I submit the form I am taken to this URL: http://127.0.0.1/login.jsp And I get this error: H

Re: Servlet mapping problem.

2004-11-21 Thread sven morales
Can you show us what you type in to your browser? --- Stefan <[EMAIL PROTECTED]> wrote: > Hi, > > I first posted this question with the wrong subject > heading ... sorry about > the duplicates. > > My question: > > Using Tomcat 5.0.28 standalone on windows XP with > JVM 1.4, I get this erro

Re: SSL and form-based login

2004-11-21 Thread footh
The URL in the browser is the URL of the protected page I'm trying to access. So, for example if /test/test.jsp is protected by forms-login and I click a link to that page, /test/test.jsp will be the URL in the browser, but the login page will appear on the screen. I am sure I didn't already acce

Re: Prevent session creation by DefaultServlet

2004-11-21 Thread Tim Funk
The DefaultServlet does not create sessions. Make sure you don't have a filter creating sessions. -Tim John Sidney-Woollett wrote: Is there any way on tomcat 5.0.x to prevent tomcat/defaultServlet creating a session when serving static image files (*.jpg, *.gif, *.png)? This is only an issue if

Servlet mapping problem.

2004-11-21 Thread Stefan
Hi, I first posted this question with the wrong subject heading ... sorry about the duplicates. My question: Using Tomcat 5.0.28 standalone on windows XP with JVM 1.4, I get this error even though I have mapped my servlet in the web.xml file of the web app: HTTP Status 404 - /loginResponse.do

RE: CGIServlet and CGI.pm upload feature

2004-11-21 Thread Mark Thomas
Sorry it has taken so long for a response on this. It looks like you have been hit by bug 32023. This has now been fixed in CVS for TC 5.5.x, TC 5.0.x and TC4.1.x Mark > -Original Message- > From: Brian T. Dittmer [mailto:[EMAIL PROTECTED] > Sent: Friday, July 09, 2004 9:14 PM > To: [EM

RE: CGI Again...Servlet.service() for servlet cgi threw exception

2004-11-21 Thread Mark Thomas
I'll look into this but I need a bit more info: 1. What servlet mapping did you specify in web.xml? 2. What URL are you requesting? Mark > -Original Message- > From: Sergey Kamshilin [mailto:[EMAIL PROTECTED] > Sent: Saturday, November 20, 2004 12:00 AM > To: [EMAIL PROTECTED] > Subject

RE: SSL Redirect problem

2004-11-21 Thread Mark Thomas
Sounds like an IE bug. I suspect IE is sending the wrong port information at some point in the redirect from http to https. To confirm this you'll need to look at the http headers going back and forth. One quick test would be to configure tomcat for the default ports (80 for http and 443 for https

Re: Tomcat locking up, not responding to requests

2004-11-21 Thread Stefan
Hi, Using Tomcat 5.0.28 standalone on windows XP with JVM 1.4, I get this error even though I have mapped my servlet in the web.xml file of the web app: HTTP Status 404 - /loginResponse.do type Status report mes

Prevent session creation by DefaultServlet

2004-11-21 Thread John Sidney-Woollett
Is there any way on tomcat 5.0.x to prevent tomcat/defaultServlet creating a session when serving static image files (*.jpg, *.gif, *.png)? This is only an issue if the browser has cookies switched off (and some users do). I know you can prevent the creation of a session in a JSP with (<%@ page

SSL Redirect problem

2004-11-21 Thread Richard HALLIER
Hi, I'd like to submit a weird problem that occurs with the following configuration : - Server Tomcat 5.0.28 - https connector activated with client authentification - Browser IE v6 sp2 with client certificate installed - Browser FireFox 1.0final with client certificate installed Sequence under F

Re: Please Help: Using SSL in servlets

2004-11-21 Thread QM
On Sun, Nov 21, 2004 at 10:31:14AM +0200, Michal Ziv wrote: : when using webservice from command line it works perfectly, but when running : the same code from a servlet, it doesn't find truststore. : in both cases the full path is given, all jars are accessible to code. : can anyone please help?

Re: Tomcat locking up, not responding to requests

2004-11-21 Thread Ben Simon
> "ZK" == Zsolt Koppany <[EMAIL PROTECTED]> writes: ZK> Check release notes! Naturally, after spending days on the issue - I posted to this list. And within minutes, discovered the information you mention below. ZK> export LD_ASSUME_KERNEL=2.2.5 ZK> ... ZK> Start tomcat Duh -- seems so

Re: SSL and form-based login

2004-11-21 Thread erh
On Sat, Nov 20, 2004 at 04:59:31PM -0800, footh wrote: > SSL seems to be working fine, however, I don't believe > the login page is using SSL. The reason being is, > when I try to hit any other page on the site with SSL, > my browser invokes the certificate dialog box. > However, when the form-ba

Please Help: Using SSL in servlets

2004-11-21 Thread Michal Ziv
Hi, I'm a newbie to ssl, here is the scenario: server: linux redhat 8 tomcat 4.1.29 axis 1.1 webservice in java server.keystore client: mandrake 9.2 tomcat 4.1.29 servlet client.keystore when using webservice from command line it works perfectly, but when running the same code from a servlet, i

RE: Tomcat locking up, not responding to requests

2004-11-21 Thread Zsolt Koppany
Check release notes! export LD_ASSUME_KERNEL=2.2.5 ... Start tomcat Zsolt > -Original Message- > From: Ben Simon [mailto:[EMAIL PROTECTED] > Sent: Sunday, November 21, 2004 3:48 AM > To: [EMAIL PROTECTED] > Subject: Tomcat locking up, not responding to requests > > Howdy All, > > I'm r