Re: Problem with tomcat configuration

2005-10-06 Thread Marcus Franke
On Thu, Oct 06, 2005 at 12:14:58AM -0700, Mark Eggers wrote: > https is port 443. You need to to uncomment the HTTP > 1.1 connector for 8443 and change the port to 443. > > Uncomment the following connector in server.xml: > > > > > Change the port to 443. Read the documentation > concerning

Re: Problem with tomcat configuration

2005-10-06 Thread Mark Eggers
https is port 443. You need to to uncomment the HTTP 1.1 connector for 8443 and change the port to 443. Uncomment the following connector in server.xml: Change the port to 443. Read the documentation concerning the attributes (especially the sslProtocol and clientAuth). /mde/ --- vineesh k

RE: problem with setting path for config files

2005-10-05 Thread Sabitha
You can declare a variable in Catalina.sh with your path and append it to the classpath. -Original Message- From: Raviteja Veerla [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 05, 2005 11:26 AM To: tomcat-user@jakarta.apache.org Subject: problem with setting path for config files

RE: Problem with RealmBase and digested passwords

2005-09-23 Thread Barnett, Brian W.
Maybe one of these days I'll finally understand classpath! :) It was as simple as putting catalina.jar in my WEB-INF\lib folder. Doh. Sorry all. -Original Message- From: Barnett, Brian W. To: 'Tomcat Users List ' Sent: 9/23/2005 9:23 PM Subject: Problem with RealmBase and digested password

RE: problem with tomcat manager's deploy command

2005-09-13 Thread rahul
omcat Users List Subject: RE: problem with tomcat manager's deploy command > From: rahul [mailto:[EMAIL PROTECTED] > Subject: RE: problem with tomcat manager's deploy command > > Tomcat Manager's undeploy command, which I run from ant > is not cleaning some of the jar f

RE: problem with tomcat manager's deploy command

2005-09-13 Thread Caldarale, Charles R
> From: rahul [mailto:[EMAIL PROTECTED] > Subject: RE: problem with tomcat manager's deploy command > > Tomcat Manager's undeploy command, which I run from ant > is not cleaning some of the jar files in my application's lib folder > However no error shown on ant

RE: problem with tomcat manager's deploy command

2005-09-13 Thread Allistair Crossley
Message- > From: rahul [mailto:[EMAIL PROTECTED] > Sent: 13 September 2005 14:23 > To: Tomcat Users List > Subject: RE: problem with tomcat manager's deploy command > > > Thanks Charles, > > Now I am defining my application context in a separate file > under ME

RE: problem with tomcat manager's deploy command

2005-09-13 Thread rahul
lib folder However no error shown on ant prompt. This is how I am using undeploy command in ant script any suggestions? -Original Message- From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] Sent: Monday, September 12, 2005 7:50 PM To: Tomcat Users List Subject: RE: pr

RE: problem with tomcat manager's deploy command

2005-09-12 Thread Caldarale, Charles R
> From: rahul [mailto:[EMAIL PROTECTED] > Subject: problem with tomcat manager's deploy command > > If I remove this context tag from "server.xml" then the deploy > command works fine. > > But I want to keep this information in "server.xml" and at > the same time use tomcat manager's deploy comm

RE: Problem with file upload corruption.

2005-08-30 Thread Richard Mixon (qwest)
OK, my goof. In my frustration and hurry I did not read the RFC well enough. After re-reading the RFC yet one more time, it finally became clear. In case it helps anyone else, I'm posting what I learned here. Basically the browser is allowed/expected to set the encoding type. Under section 3.3 of

RE: Problem with tomcat559 in XP machine

2005-07-31 Thread dummy
But I m not using the http connector. I m using Apache and mod_jk. I disabled the http connectot. -Original Message- From: Lintang JP [mailto:[EMAIL PROTECTED] Sent: Monday, August 01, 2005 2:17 PM To: Tomcat Users List Subject: Re: Problem with tomcat559 in XP machine maybe U should

Re: Problem with tomcat559 in XP machine

2005-07-31 Thread Lintang JP
maybe U should increase the AcceptCount parameter in Connector..it's inside server.xml Tomcat will wait until there's a resource finish their task if the AcceptCount parameter reached, so it's hanged. By increasing it, U should get more AcceptCount. Regards On 8/1/05, dummy <[EMAIL PROTECTED]

Re: Problem with Jasper-Need your help

2005-07-27 Thread Panagiotis Karvounis
I found the solution; The method handlePage(Throwable) was introduced in JSP 2.0 The problem was that I had in my classpath a servlet.jar older where this method was not defined.I deleted it and everything works fine now. Thanks for support Panagiotis On 7/27/05, Panagiotis Karvounis <[EMAIL PRO

Re: Problem with Jasper-Need your help

2005-07-27 Thread Panagiotis Karvounis
So is there anybody that can help me? Please guys...I don't know what to do. On 7/27/05, Panagiotis Karvounis <[EMAIL PROTECTED]> wrote: > It didn't work again! > > I have almost the same problem with all my JSP pages(Servlets work ok). > I think is a Tomcat problem;The method handlePageExceptio

Re: Problem with Jasper-Need your help

2005-07-27 Thread Panagiotis Karvounis
It didn't work again! I have almost the same problem with all my JSP pages(Servlets work ok). I think is a Tomcat problem;The method handlePageException(Exception) in the type PageContext is not applicable for the arguments (Throwable) I went to servlet code produced and I changed "catch(Throwabl

RE: Problem with Jasper-Need your help

2005-07-27 Thread Raghupathy,Gurumoorthy
<%= request.getParameter("testParam") %> may trow a null pointer so try <%= request.getParameter("testParam") == null ? "" : request.getParameter("testParam") %> Regards Guru -Original Message- From: Panagiotis Karvounis [mailto:[EMAIL PROTECTED] Sent: 27 July 2005 13:23 To: tomcat-u

Re: Problem with refreshing JSP

2005-07-21 Thread Travis Stevens
The other thing to note about reloading JSPs is that tomcat 5.5 seems to copy ones web context directory into its own webapps directory. Any changes to the original JSPs will not show up unless you physically copy the JSP from the original directory to the webapps directory. I haven't obs

Re: Problem with refreshing JSP

2005-07-20 Thread Christoph Kutzinski
Travis Stevens wrote: The other thing to note about reloading JSPs is that tomcat 5.5 seems to copy ones web context directory into its own webapps directory. Any changes to the original JSPs will not show up unless you physically copy the JSP from the original directory to the webapps directo

Re: Problem with refreshing JSP

2005-07-20 Thread Travis Stevens
The other thing to note about reloading JSPs is that tomcat 5.5 seems to copy ones web context directory into its own webapps directory. Any changes to the original JSPs will not show up unless you physically copy the JSP from the original directory to the webapps directory. I use the maven:i

Re: Problem with refreshing JSP

2005-07-12 Thread Christoph Kutzinski
Rob Hills wrote: Hi Rahul, On 12 Jul 2005 at 8:19, Rahul Joshi wrote: It is Tomcat that has these compiled files which it continues to read from work/Catalina/localhost/ instead of the new ones. The questions is how do we make Tomcat clear or over-write these stored compiled files. If you

Re: Problem with refreshing JSP

2005-07-12 Thread Rob Hills
Hi Rahul, On 12 Jul 2005 at 8:19, Rahul Joshi wrote: > It is Tomcat that has these compiled files which it continues to read > from work/Catalina/localhost/ instead of the new ones. The questions > is how do we make Tomcat clear or over-write these stored compiled > files. If you set the "Reloa

Re: Problem with refreshing JSP

2005-07-12 Thread Rahul Joshi
Hi, It is Tomcat that has these compiled files which it continues to read from work/Catalina/localhost/ instead of the new ones. The questions is how do we make Tomcat clear or over-write these stored compiled files. Thanks, Rahul. Gurumoorthy <[EMAIL PROTECTED]> wrote: Well, Is it the brow

Re: Problem with development cycle (5.5.9)

2005-07-11 Thread Carlos A. Carnero Delgado
Hello Robert, On 7/8/05, Robert Parsons <[EMAIL PROTECTED]> wrote: > Hi Carlos, > > I had exactly the same problem as you. To fix it I put > a 'context.xml'... yup, that works. I don't like the fact that I lose "directory independence" since now the build directory is "hardwired" but it's defini

Re: Problem with refreshing JSP

2005-07-11 Thread Gurumoorthy
Well, Is it the browser or tomcat ? if it is the browser then you need to add the no-cache headers to the response regards Guru - Original Message - From: "Rahul Joshi" <[EMAIL PROTECTED]> To: Sent: Tuesday, July 12, 2005 1:50 AM Subject: Problem with refreshing JSP Hello: I

Re: Problem with development cycle (5.5.9)

2005-07-08 Thread Robert Parsons
Hi Carlos, I had exactly the same problem as you. To fix it I put a 'context.xml' in my 'public_html/META-INF' folder. The contents of the file looked like this: That seems to make tomcat load the application from the build folder rather than copying it into its own folder. I hope

Re: Problem with security?

2005-06-10 Thread Nikola Milutinovic
Gagnon, Joseph M (US SSA) wrote: Did I not say that I'm new to this? I made no mention to whether or not I was trying to make it secure. This is only meant to be used within my company's intranet and my intention was to take the user account and then compare it with a set of registered users in

Re: Problem with security?

2005-06-10 Thread Mark
Not if you are using mutually authenticated SSL. On 6/10/05, Caldarale, Charles R <[EMAIL PROTECTED]> wrote: > > From: Gagnon, Joseph M (US SSA) > [mailto:[EMAIL PROTECTED] > > Subject: Problem with security? > > > > I have a situation where I want to be able to provide user access > > to an appli

Re: Problem with security?

2005-06-10 Thread Robert r. Sanders
can provide information on how to do this (keep in mind I'm new at this), please let me know. -Original Message- From: Robert Harper [mailto:[EMAIL PROTECTED] Sent: Friday, June 10, 2005 10:59 AM To: 'Tomcat Users List' Subject: RE: Problem with security? -

Re: Problem with security?

2005-06-10 Thread Patrick Thomas
many different ways it can be done) to perform user authentication. > > If anyone can provide information on how to do this (keep in mind I'm > new at this), please let me know. > > -Original Message- > From: Robert Harper [mailto:[EMAIL PROTECTED] > Sent: Friday,

RE: Problem with security?

2005-06-10 Thread Robert Harper
9:19 AM To: Tomcat Users List Subject: RE: Problem with security? Did I not say that I'm new to this? I made no mention to whether or not I was trying to make it secure. This is only meant to be used within my company's intranet and my intention was to take the user account and then

RE: Problem with security?

2005-06-10 Thread Gagnon, Joseph M \(US SSA\)
new at this), please let me know. -Original Message- From: Robert Harper [mailto:[EMAIL PROTECTED] Sent: Friday, June 10, 2005 10:59 AM To: 'Tomcat Users List' Subject: RE: Problem with security? I think you have missed the point that you cannot get user information unless the

RE: Problem with security?

2005-06-10 Thread Robert Harper
From: Gagnon, Joseph M (US SSA) [mailto:[EMAIL PROTECTED] Sent: Friday, June 10, 2005 8:43 AM To: Tomcat Users List Subject: RE: Problem with security? I believe I've covered that all in my original message. Read further. -Original Message- From: egan0019 [mailto:[EMAIL PROTECTE

RE: Problem with security?

2005-06-10 Thread Gagnon, Joseph M \(US SSA\)
I believe I've covered that all in my original message. Read further. -Original Message- From: egan0019 [mailto:[EMAIL PROTECTED] Sent: Friday, June 10, 2005 10:10 AM To: Tomcat Users List Subject: Re: Problem with security? Look into the ServletRequest interface. That inte

Re: Problem with security?

2005-06-10 Thread egan0019
Look into the ServletRequest interface. That interface, which is extended in HttpServletRequest. You can call the getRemoteAddr(), getRemoteHost(), etc. methods. You receive null in your getRemoteUser because the user hasn't been 'authenticated' yet. On 10 Jun 2005, Gagnon, Joseph M (US SSA)

RE: Problem with security?

2005-06-10 Thread Peter Crowther
> From: Gagnon, Joseph M (US SSA) > I have a situation where I want to be able to provide user > access to an > application by determining the identity of the requesting > user, without > them having to go through a login procedure. OK. So what identity can the browser present that you wish to

RE: Problem with security?

2005-06-10 Thread Caldarale, Charles R
> From: Gagnon, Joseph M (US SSA) [mailto:[EMAIL PROTECTED] > Subject: Problem with security? > > I have a situation where I want to be able to provide user access > to an application by determining the identity of the requesting > user, without them having to go through a login procedure. Those

Re: Problem with precompiled JSP's (2nd Try)

2005-05-31 Thread Tim Funk
My guess is you are missing the tomcat 4 version of jasper-runtime.jar in your web-inf/lib dir. If your precompile a webapp with tomcat 4 code(or I assume jetty uses jasper as its JSP engine). You need to supply jasper-runtime.jar with your webapp if you run it on a container running tomcat 5

Re: Problem with precompiled JSP's (2nd Try)

2005-05-31 Thread Mike Baliel
Hi Bill, Thanks again for your response. I believe (if I am not mistaken) that the method signature displayed in the error as "No Such Method" (i.e. the method expected based on the compiled JSP) is the same as the method you listed below. Here is the error java.lang.NoSuchMethodError

Re: Problem with precompiled JSP's (2nd Try)

2005-05-27 Thread Bill Barker
"Mike Baliel" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Thanks for replying Bill > > I have Tomcat 5.0 installed and I checked the jasper-runtime.jar located > at Tomcat5.0\common\lib and in my copy the method exists... ? > > Are you looking in jasper-compiler or jasper-r

Re: Problem with precompiled JSP's (2nd Try)

2005-05-27 Thread Mike Baliel
Thanks for replying Bill I have Tomcat 5.0 installed and I checked the jasper-runtime.jar located at Tomcat5.0\common\lib and in my copy the method exists... ? Are you looking in jasper-compiler or jasper-runtime? Bill Barker wrote: I just checked, and there is indeed NoSuchMethod in

Re: Problem with precompiled JSP's (2nd Try)

2005-05-27 Thread Bill Barker
I just checked, and there is indeed NoSuchMethod in Tomcat 5. You need to re-precompile your JSPs using the jspc from Tomcat 5 for it to work. It's not enough to just move the class files over, since they reference the Jasper version that they were compiled with. "Mike Baliel" <[EMAIL PROTECTE

Re: Problem with precompiled JSPs

2005-05-26 Thread Mike Baliel
Hello again, Is anyone using precompiled JSP's in a similar way or have knowledge of others using precompiled JSP's in Tomacat that is similar to the usage below? Any response is welcomed... ;-) Mike Baliel wrote: Hello, I have an application that is currently running under JBoss 3.2.

RE: Problem with Tomcat 5.5.9

2005-05-25 Thread Steve Kirk
Have you moved your config files across? conf/web.xml conf/server.xml conf/tomcat-users.xml conf/[engineName]/[hostName]/contextName.xml Do you have the welcome files configured in web.xml (either in conf/ or in the webapp's WEB-INF folder) ? What do they point to for /test/? If a servlet,

Re: Problem with redirection for Tomcat Basic Authentication

2005-05-23 Thread Mark Thomas
I suspect the IE and IIS are conspiring to use Windows Native Authentication. I think this is a browser setting where IE tries this by default if talking to IIS. The settings should be under something like: IE > Tools > Internet options > security > custom level > user authentication I can't rem

Re: Problem with Log4J starting TOMCAT 5.5.9

2005-05-06 Thread =?ISO-8859-1?Q?Rog=E9rio_Saulo?=
ace log4j.xml in WEB-INF\classes folder > > > Joy Kenneth > > > -Original Message- > From: Alex Pure [mailto:[EMAIL PROTECTED] > Sent: Friday, May 06, 2005 8:41 PM > To: Tomcat Users List > Subject: RE: Problem with Log4J starting TOMCAT 5.5.9 > > my e

RE: Problem with Log4J starting TOMCAT 5.5.9

2005-05-06 Thread Joy Kenneth Harry
Remove the commons-logging.jar from WEB-INF\lib and place log4j.jar in it And Place log4j.xml in WEB-INF\classes folder Joy Kenneth -Original Message- From: Alex Pure [mailto:[EMAIL PROTECTED] Sent: Friday, May 06, 2005 8:41 PM To: Tomcat Users List Subject: RE: Problem with

RE: Problem with Log4J starting TOMCAT 5.5.9

2005-05-06 Thread Alex Pure
my english es bad puede ser por que has instalado tu TomCat/Java como usuario intentalo como Administrador sobre tu maquina -Mensaje original- De: Rogério Saulo [mailto:[EMAIL PROTECTED] Enviado el: viernes, 06 de mayo de 2005 8:30 Para: tomcat-user@jakarta.apache.org Asunto: Problem with

RE: Problem with Log4J starting TOMCAT 5.5.9

2005-05-06 Thread Allistair Crossley
Hi, You need to configure the log4j subsystem with a log4j.properties file and pop it into your web application's classes folder (or in Tomcat's common/classes if you have no webapp). At the very least you will want to setup a root logger. See the log4j documentation for this or use the Tomcat

Re: problem with compilation of jsp

2005-04-26 Thread vishwam
the problem has been solved by copying the tools.jar file from $java_home/lib to $catalina_home/common/lib/ thanks for the reply to all - Original Message - From: "vishwam" <[EMAIL PROTECTED]> To: Sent: Tuesday, April 26, 2005 4:02 PM Subject: problem with compilation of jsp hi i hh

RE: problem with compilation of jsp

2005-04-26 Thread Raghupathy,Gurumoorthy
Please look at the list. This is because Tomcat has been installed on "program files" a directory with spaces ... Please install tomcat in a directory without space "c:\Server\Tomcat" and you should be fine Regards Guru -Original Message- From: vishwam [mailto:[EMAIL PROTECTED] Sent:

Re: problem with compilation of jsp

2005-04-26 Thread Anto Paul
On 4/26/05, vishwam <[EMAIL PROTECTED]> wrote: > hi > i hhave installed new apache tomcat on my system, iam facing problem when > executing jsp files > i have set > classpath as C:\Java\jdk1.5.0\lib;C:\Program > Files\Java\jre1.5.0\lib;C:\Program Files\Apache Software Foundation\Tomcat > 5.0\c

RE: Problem with the classloader in jakarta-tomcat-5.0.28 - cannot add a jar file to class repository

2005-04-22 Thread Caldarale, Charles R
> From: Akoulov, Alexandre [IT] [mailto:[EMAIL PROTECTED] > Subject: RE: Problem with the classloader in > jakarta-tomcat-5.0.28 - cannot add a jar file to class repository > > Please let me know what you think It doesn't really matter what I think - I'm not a

RE: Problem with the classloader in jakarta-tomcat-5.0.28 - cannot add a jar file to class repository

2005-04-22 Thread Akoulov, Alexandre [IT]
es R [mailto:[EMAIL PROTECTED] Sent: Friday, 22 April 2005 4:09 PM To: Tomcat Users List Subject: RE: Problem with the classloader in jakarta-tomcat-5.0.28 - cannot add a jar file to class repository > From: Akoulov, Alexandre [IT] [mailto:[EMAIL PROTECTED] > Subject: RE: Problem with the

RE: Problem with the classloader in jakarta-tomcat-5.0.28 - cannot add a jar file to class repository

2005-04-21 Thread Caldarale, Charles R
> From: Akoulov, Alexandre [IT] [mailto:[EMAIL PROTECTED] > Subject: RE: Problem with the classloader in > jakarta-tomcat-5.0.28 - cannot add a jar file to class repository > > However, if you add a reference to the actual jar file (eg, > shared.loader=${catalina.home}/share

RE: Problem with the classloader in jakarta-tomcat-5.0.28 - cannot add a jar file to class repository

2005-04-21 Thread Akoulov, Alexandre [IT]
- -Original Message- From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] Sent: Friday, 22 April 2005 3:13 PM To: Tomcat Users List Subject: RE: Problem with the classloader in jakarta-tomcat-5.0.28 - cannot add a jar file to class repository > From: Akoulov, Alexandr

RE: Problem with the classloader in jakarta-tomcat-5.0.28 - cannot add a jar file to class repository

2005-04-21 Thread Caldarale, Charles R
> From: Akoulov, Alexandre [IT] [mailto:[EMAIL PROTECTED] > Sent: 2005 April 21, Thursday 19:48 > Subject: RE: Problem with the classloader in > jakarta-tomcat-5.0.28 - cannot add a jar file to class repository > > I still think it is a bug!!! Read the javadoc for the class

RE: Problem with the classloader in jakarta-tomcat-5.0.28 - cannot add a jar file to class repository

2005-04-21 Thread Akoulov, Alexandre [IT]
rsday, 21 April 2005 9:27 PM To: Tomcat Users List Subject: RE: Problem with the classloader in jakarta-tomcat-5.0.28 - cannot add a jar file to class repository > From: Akoulov, Alexandre [IT] [mailto:[EMAIL PROTECTED] > Subject: Problem with the classloader in > jakarta-tomcat-5.0.28

RE: Problem with the classloader in jakarta-tomcat-5.0.28 - cannot add a jar file to class repository

2005-04-21 Thread Caldarale, Charles R
> From: Akoulov, Alexandre [IT] [mailto:[EMAIL PROTECTED] > Subject: Problem with the classloader in > jakarta-tomcat-5.0.28 - cannot add a jar file to class repository > > ClassLoaderFactory#createClassLoader(File unpacked[], File > packed[], URL urls[], ClassLoader parent) is the actual > me

Re: problem with installing tomcat in linux

2005-04-11 Thread Hassan Schroeder
[EMAIL PROTECTED] wrote: yes i did exported those env variables. but still i am getting the following error Cannot find ./catalina.sh This file is needed to run this program Executables, including shell scripts, are only "found" if they're in your PATH. Either add the $CATALINA_HOME/bin directory t

Re: problem with installing tomcat in linux

2005-04-11 Thread Paul Puschmann
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 [EMAIL PROTECTED] wrote: > yes i did exported those env variables. > but still i am getting the following error > > Cannot find ./catalina.sh > This file is needed to run this program > > I have even checked for the file permission mode. > and also

Re: problem with installing tomcat in linux

2005-04-11 Thread Shaik . ShabeenaImam
yes i did exported those env variables. but still i am getting the following error Cannot find ./catalina.sh This file is needed to run this program I have even checked for the file permission mode. and also tried these commands #dos2unix startup.sh ... Still i am not getting. > hi,

Re: problem with installing tomcat in linux

2005-04-11 Thread Cédric Buschini
hi, if errors occur when you try to start the server you have to set variable such as $CATALINA_HOME and $JAVA_HOME. I've do it adding in /etc/profile CATALINA_HOME=/path/to/bin JAVA_HOME=/path/to/jdkXX export CATALINA JAVA_HOME and it works [EMAIL PROTECTED] wrote: hi, I have a proble

RE: problem with installing tomcat in linux

2005-04-11 Thread Sir John Nueva
Did you set up CATALINA_HOME pointing to the tomcat folder? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, April 11, 2005 6:30 PM To: tomcat-user@jakarta.apache.org Subject: problem with installing tomcat in linux hi, I have a problem with installi

Re: Problem with SSL

2005-03-27 Thread Mark Thomas
The resource you are looking for is the relevant servlet specification. See http://java.sun.com/products/servlet/reference/api/index.html The spec is *required* reading for anyone developing with servlets. Be aware that INTEGRAL does not require the data to be encrypted, only that the integrity of

Re: Problem with SSL

2005-03-27 Thread bar_rin
Hey it works! Thank you for enlightening me. But i would like to know why it works. If you can point me to some resources to explain this. I think in order for the client server to communicate over SSL the crucial setting is INTEGRAL NONE will mean no SSL. is just to specify how we want to ath

Re: Problem with SSL

2005-03-27 Thread Mark Thomas
If you don't want the clients to have to provide a client certificate, don't specify CLIENT-CERT in your web.xml Mark [EMAIL PROTECTED] wrote: I tried setting it to true and it still does not work. --- Mark Thomas <[EMAIL PROTECTED]> wrote: From the Tomcat documentation: clientAuth Set to true

Re: Problem with SSL

2005-03-27 Thread bar_rin
I tried setting it to true and it still does not work. --- Mark Thomas <[EMAIL PROTECTED]> wrote: > From the Tomcat documentation: > > clientAuth > Set to true if you want the SSL stack to require a > valid certificate > chain from the client before accepting a connection. > A false value > (

Re: Problem with SSL

2005-03-27 Thread Mark Thomas
From the Tomcat documentation: clientAuth Set to true if you want the SSL stack to require a valid certificate chain from the client before accepting a connection. A false value (which is the default) will not require a certificate chain unless the client requests a resource protected by a secu

Re: Problem with SSL

2005-03-27 Thread bar_rin
By right the client should not be asked to present a cert because my server.xml setting is set to clientAuth="false" --- Mark Thomas <[EMAIL PROTECTED]> wrote: > The problem appears to be that no client certificate > is presented by > your client. Do you get prompted by your browser to > specify

Re: Problem with SSL

2005-03-27 Thread Mark Thomas
The problem appears to be that no client certificate is presented by your client. Do you get prompted by your browser to specify a client certificate? Browsers may be configured not to prompt for a certificate in any or all of the following cases: - No client certs have been imported into the b

RE: Problem with error-handling

2005-03-26 Thread bar_rin
let by entering it's URL in your > browser. > 3. if this servlet is working fine then map it's > "" to your > XML element under as shown > in the above sample. > > I hope this should work. It worked for me (I tried > this on > jakarta-tomcat-5.5.4) >

RE: Problem with error-handling

2005-03-26 Thread Ramu, Vinod
nt under as shown in the above sample. I hope this should work. It worked for me (I tried this on jakarta-tomcat-5.5.4) Vinod -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Saturday, March 26, 2005 8:17 PM To: Tomcat Users List Subject: RE: Problem with error-hand

RE: Problem with error-handling

2005-03-26 Thread bar_rin
yeah it works. But i still cannot understand why my code does not work. Theoretically my code should work right? --- "Ramu, Vinod" <[EMAIL PROTECTED]> wrote: > Hi, > > This what I did > > 1. I added below configuration > > > > java.sql.SQLException > /index.html >

RE: Problem with error-handling

2005-03-26 Thread Ramu, Vinod
Hi, This what I did 1. I added below configuration java.sql.SQLException /index.html 2. Then added below lines to my doPost() throw new ServletException("SQLException", new SQLException()); It works for me. Could you try to direct your error location to a

Re: Problem with Tomcat Upgrade 4.0 to 5.5

2005-03-25 Thread QM
On Fri, Mar 25, 2005 at 09:08:15AM -0500, Beau Hebert wrote: : I am in the processs of upgrading from Tomcat 4.0 to Tomcat 5.5. I have an : application that runs on Linux-Java-Tomcat-MySQL. : [snip] : javax.servlet.ServletException: javax/mail/Message As someone else already pointed out, you no lo

Re: Problem with Tomcat Upgrade 4.0 to 5.5

2005-03-25 Thread Beau Hebert
Thanks for the response Jason. I've removed my classpath, but still getting the same error. Any other suggestions? Rgds, Beau - Original Message - From: "Jason Bainbridge" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Friday, March 25, 2005 10:23 AM S

Re: Problem with Tomcat Upgrade 4.0 to 5.5

2005-03-25 Thread Jason Bainbridge
On Fri, 25 Mar 2005 09:08:15 -0500, Beau Hebert <[EMAIL PROTECTED]> wrote: > Hello - > exception: > javax.servlet.ServletException: javax/mail/Message > > root cause: > java.lang.NoClassDefFoundError: javax/mail/Message > > I'm not sure, but it seems that the compiler (or is it the container?) c

Re: Problem with BASIC authentication

2005-03-17 Thread Lionel Farbos
e it). > Thanks in advance > Sanjay Karanjkar > fc3sdi team > > -Original Message- > From: Lionel Farbos [mailto:[EMAIL PROTECTED] > Sent: 17 March 2005 09:58 > To: Tomcat Users List > Cc: Karanjkar, Sanjay V (IT) > Subject: Re: Problem with BASIC authentic

Re: Problem with BASIC authentication

2005-03-17 Thread Parsons Technical Services
I don't run 4 so these are only suggestions. 1. Remove the 2. Change your tomcat-user.xml to look like this - Original Message - From: "Karanjkar, Sanjay V (IT)" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Thursday, March 17, 2005 12:19 AM

RE: Problem with BASIC authentication

2005-03-17 Thread Karanjkar, Sanjay V \(IT\)
nel Farbos [mailto:[EMAIL PROTECTED] Sent: 17 March 2005 09:58 To: Tomcat Users List Cc: Karanjkar, Sanjay V (IT) Subject: Re: Problem with BASIC authentication Hi, Compared to Manager's web.xml, it seems you don't have the section with the link to your user DataBase. Perhaps, try to put th

Re: Problem with BASIC authentication

2005-03-17 Thread Lionel Farbos
Hi, Compared to Manager's web.xml, it seems you don't have the section with the link to your user DataBase. Perhaps, try to put the role names without a - (rather a _ or nothing) Cheers. On Thu, 17 Mar 2005 10:49:29 +0530 "Karanjkar, Sanjay V \(IT\)" <[EMAIL PROTECTED]> wrote: > Hi, > > Anyo

RE: Problem with BASIC authentication

2005-03-16 Thread Karanjkar, Sanjay V \(IT\)
Hi, Anyone had a chance to look at this one yet? Thanks Sanjay -Original Message- From: Karanjkar, Sanjay V (IT) Sent: 15 March 2005 11:19 To: tomcat-user@jakarta.apache.org Subject: Problem with BASIC authentication Hi, I have the following setup: 1. A copied version of Tomcat 4.1.

Re: Problem with Tomcat caching old pages that it shouldn't

2005-03-16 Thread Asfand Qazi
--- Hassan Schroeder <[EMAIL PROTECTED]> wrote: > Asfand Qazi wrote: > > > Basically here's my problem: I make a jsp page that works > correctly. > > OK. Then, I make a fault in it that shows a compile error page - > > also fine. > > > > The problem is, when I reload it a second time, Tomcat s

RE: Problem with Tomcat caching old pages that it shouldn't

2005-03-16 Thread Ramu, Vinod
esday, March 16, 2005 11:11 AM To: Tomcat Users List Subject: Re: Problem with Tomcat caching old pages that it shouldn't Asfand Qazi wrote: > Basically here's my problem: I make a jsp page that works correctly. > OK. Then, I make a fault in it that shows a compile error page - &

Re: Problem with Tomcat caching old pages that it shouldn't

2005-03-16 Thread Hassan Schroeder
Asfand Qazi wrote: Basically here's my problem: I make a jsp page that works correctly. OK. Then, I make a fault in it that shows a compile error page - also fine. The problem is, when I reload it a second time, Tomcat serves me the old compiled JSP scriptlet, instead of giving me the compile er

Re: Problem with Tomcat caching old pages that it shouldn't

2005-03-16 Thread Asfand Qazi
--- Asfand Qazi <[EMAIL PROTECTED]> wrote: > > > > > Try adding: > > > > > > modificationTestInterval > > 0 > > > > > > to your definition of the JSP servlet in > %TOMCAT_HOM#%\conf\web.xml > > > > By default it is 4 seconds but I'm not sure why the compile would > >

RE: Problem with Tomcat caching old pages that it shouldn't

2005-03-16 Thread Asfand Qazi
> > Please include the exact Tomcat level in problem descriptions, so > people will have some idea of which documentation pages to tell you > to read. 5.7 > > Here's some to look at that may have some bearing on the issue, and > specific parameters on each: > http://jakarta.apache.org/tomcat/to

Re: Problem with Tomcat caching old pages that it shouldn't

2005-03-16 Thread Asfand Qazi
> > Try adding: > > > modificationTestInterval > 0 > > > to your definition of the JSP servlet in %TOMCAT_HOM#%\conf\web.xml > > By default it is 4 seconds but I'm not sure why the compile would > fail > once and then start working again... > It didn't start worki

RE: Problem with Tomcat caching old pages that it shouldn't

2005-03-16 Thread Caldarale, Charles R
> From: Asfand Qazi [mailto:[EMAIL PROTECTED] > Subject: Problem with Tomcat caching old pages that it shouldn't > > The problem is, when I reload it a second time, Tomcat serves me the > old compiled JSP scriptlet, instead of giving me the compile error > message again! Please include the exact

Re: Problem with Tomcat caching old pages that it shouldn't

2005-03-16 Thread Jason Bainbridge
On Wed, 16 Mar 2005 14:45:07 + (GMT), Asfand Qazi <[EMAIL PROTECTED]> wrote: > Hi, > > Basically here's my problem: I make a jsp page that works correctly. > OK. Then, I make a fault in it that shows a compile error page - > also fine. > > The problem is, when I reload it a second time, Tomc

RE: Problem with Xerces, Xalan with Tomcat 5.0

2005-03-07 Thread Derrick Koes
You need to use the endorsed standards override mechanism. http://java.sun.com/j2se/1.4.2/docs/guide/standards/ Put your DFC.jar in common/endorsed and re-try. -Original Message- From: Faine, Mark [mailto:[EMAIL PROTECTED] Sent: Monday, March 07, 2005 4:22 PM To: tomcat-user@jakarta.a

Re: Problem with Welcome File mapped to a Servlet

2005-03-04 Thread Tim Funk
See bugzilla and search for welcome-files - I believe this was talked about a few times. -Tim Andreas Schildbach wrote: Hello everyone, I'm using Tomcat 5.0 and Servlet Spec 2.4. I have defined a servlet mapping all *.html and a standard welcome file, as follows: test Test

Re: problem with ssl

2005-02-21 Thread Antony Paul
You can check whether the keystore is properly created using the following command keytool -list -alias tomcat rgds Antony Paul On 22 Feb 2005 12:24:05 +0600, Thavarajah Kurinchikumaran <[EMAIL PROTECTED]> wrote: > Hi all, > > I am using tomcat as my local server. > I removed some keystore fil

Re: Problem with HTTPServletRequest

2005-01-24 Thread Christoph Kutzinski
Hi, Peter Monz wrote: Hi All, I have quite a problem with HTTPServletReuquest in some Servlets sometimes. Sometimes if I access HTTPServletRequest in Servlet I get only a "null"-Pointer and my Servlet crashes. But I can see in a HTTP-trace, created with a spy programm that the date will be sent fro

Re: Problem with HTTPServletRequest

2005-01-24 Thread Tim Funk
We need a stack trace to help you debug. Odds are - its your servlet. -Tim Peter Monz wrote: Hi All, I have quite a problem with HTTPServletReuquest in some Servlets sometimes. Sometimes if I access HTTPServletRequest in Servlet I get only a "null"-Pointer and my Servlet crashes. But I can see in a

Re: problem with Basic authentication -- no window to login

2005-01-21 Thread Ashish Kulkarni
ina.UserDatabase"/> > > Doug > > > - Original Message - > From: "Aris Javier" <[EMAIL PROTECTED]> > To: "Tomcat Users List" > > Sent: Friday, January 21, 2005 12:20 AM > Subject: RE: problem with Basic authentication -- no > win

Re: problem with Basic authentication -- no window to login

2005-01-20 Thread Parsons Technical Services
IE on Linux, interesting. Add the resource link to your context.xml file to give the system access to the user database/file. Doug - Original Message - From: "Aris Javier" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Friday, January 21, 2005 12:20 AM

RE: problem with Basic authentication -- no window to login

2005-01-20 Thread Aris Javier
assuming you're using linux.. I encountered this problem in mozilla 1.6... downloaded 1.7 version and login window appeared! =) -Original Message- From: Ashish Kulkarni [mailto:[EMAIL PROTECTED] Sent: Friday, January 21, 2005 11:21 AM To: Tomcat Users List Subject: RE: problem with

RE: problem with Basic authentication -- no window to login

2005-01-20 Thread Ashish Kulkarni
I have tried internet explorer and mozilla Ashish --- Aris Javier <[EMAIL PROTECTED]> wrote: > what browser ar you using? > > -Original Message- > From: Ashish Kulkarni > [mailto:[EMAIL PROTECTED] > Sent: Friday, January 21, 2005 6:24 AM > To: tomcat-user@jakarta.apache.org > Subject:

RE: problem with Basic authentication -- no window to login

2005-01-20 Thread Aris Javier
what browser ar you using? -Original Message- From: Ashish Kulkarni [mailto:[EMAIL PROTECTED] Sent: Friday, January 21, 2005 6:24 AM To: tomcat-user@jakarta.apache.org Subject: problem with Basic authentication -- no window to login Hi i was able to make my application work with form au

  1   2   3   4   5   6   7   8   9   10   >