RE: Discrepancies between servlets and JSP on tomcat in handling UTF-8?

2002-11-26 Thread Bodycombe, Andrew
Andy -Original Message- From: Craig R. McClanahan To: Tomcat Users List Sent: 25/11/2002 18:59 Subject: RE: Discrepancies between servlets and JSP on tomcat in handling UTF-8 ? On Mon, 25 Nov 2002, Bodycombe, Andrew wrote: > Date: Mon, 25 Nov 2002 15:29:29 + > From: "B

RE: Discrepancies between servlets and JSP on tomcat in handling UTF-8?

2002-11-25 Thread Bodycombe, Andrew
Interesting. I have encountered a similiar problem. I have a servlet that connects to an XML application. The response from the application is read using a SAX reader, and I encountered an error if the response contained any non-ASCII characters (ü and ß in particular, as I am currently working in

RE: is there a free ide that gets along well with tomcat?

2002-11-22 Thread Bodycombe, Andrew
You could try jedit http://www.jedit.org There is a plug-in for tomcat. Andy. -Original Message- From: jennifer lindner To: [EMAIL PROTECTED] Sent: 21/11/2002 19:47 Subject: is there a free ide that gets along well with tomcat? hello, i'm a newbie so i apologize if this topic came up l

RE: Retrieving SSL client certificates from the Request

2002-11-21 Thread Bodycombe, Andrew
I think there is a request property for this. X509Certificate[] cert = request.getProperty("javax.servlet.request.X509Certificate"); This property has an array of X509Certificates because you will be presented with a certificate chain, not just a single certificate. To forward this certificate t

RE: SSL keystore problem

2002-11-20 Thread Bodycombe, Andrew
Users List Sent: 20/11/2002 13:32 Subject: RE: SSL keystore problem I am really not familiar with where to add that line and under what conditions in the catalina.bat file, could you be a little more specific thanks -----Original Message- From: Bodycombe, Andrew [mailto:[EMAIL

RE: SSL keystore problem

2002-11-20 Thread Bodycombe, Andrew
You can tell tomcat to look in a different location at startup by specifying the following value in your CATALINA_OPTS variable: "-Djavax.net.ssl.keystore=" Andy -Original Message- From: brana02 To: Tomcat Users List Sent: 20/11/2002 13:03 Subject: RE: SSL keystore problem Do you know h

RE: unable to authenticate against company-generated certificate

2002-11-19 Thread Bodycombe, Andrew
gram - on the client side) throws an exception. If the server couldn't validate my certificate the program wouldn't throw an exception - it would only lag and the server would return a HTTP 4xx or 5xx error. Thanks, -Becky >>> "Bodycombe, Andrew" <[EMAIL PROTECTED]

RE: servlet and proxy

2002-10-31 Thread Bodycombe, Andrew
- From: Maxime [mailto:max_sts@;hotmail.com] Sent: 31 October 2002 17:17 To: Tomcat Users List Subject: Re: servlet and proxy Thanks, works great . but do you know another method for only one web application an not all tomcat context ? thks Max - Original Message - From: "Body

RE: servlet and proxy

2002-10-31 Thread Bodycombe, Andrew
You can set these properties when tomcat starts up: export CATALINA_OPTS="-Dhttp.proxyHost=w -Dhttp.proxyPort=x -Dhttps.proxyHost=y -Dhttps.ProxyPort=z" Then re-start tomcat. Regards, Andy -Original Message- From: Maxime [mailto:max_sts@;hotmail.com] Sent: 31 Octobe

RE: compile error?

2002-10-30 Thread Bodycombe, Andrew
It should be <%=new java.util.Date();%> Andy -Original Message- From: Tumy, Brad [mailto:TumyB@;Pragmatics.com] Sent: 30 October 2002 17:37 To: 'Tomcat Users List' Subject: compile error? I just installed Tomcat on my server and I am trying to run a test page. I created a new jsp file

RE: SSL Servlet Client

2002-10-23 Thread Bodycombe, Andrew
Glenn Gardner On Wed, 23 Oct 2002, Bodycombe, Andrew wrote: > You can see if your certificate is located in the cacerts file by using the > following command: > > keytool -list -keystore $JAVA_HOME/jre/lib/security/cacerts > > Putting your certificates in here is not recommende

RE: SSL Servlet Client

2002-10-23 Thread Bodycombe, Andrew
You can see if your certificate is located in the cacerts file by using the following command: keytool -list -keystore $JAVA_HOME/jre/lib/security/cacerts Putting your certificates in here is not recommended (see the keytool documentation) Another thing you could do is set your default trust man

RE: [OFF-TOPIC] - RE: How to capture the ROOT cause of EXCEPTION

2002-10-22 Thread Bodycombe, Andrew
You could try this: try { ... } catch(Exception e) { Throwable cause = e.getCause(); if (cause != null) cause.printStackTrace(); else System.err.println("ROOT CAUSE is null"); } Andy -Original Message- From: Nagpal, Vikas [mailto:vinagpal@;utmb.edu] S

RE: is this a bug ?

2002-10-18 Thread Bodycombe, Andrew
The method 'append(Ljava/lang/StringBuffer;)Ljava/lang/StringBuffer;' was introduced in JDK 1.4 If you are running this code on a previous version of the JDK then you will get the NoSuchMethodError. It looks like your tomcat was built using JDK1.4, but you are running it using JDK1.3.1 A Que

RE: TOmcat 4.0.1 and JDOM b8

2002-10-08 Thread Bodycombe, Andrew
I don't know if this is relevant, but I know the jikes compiler has bugs in it that causes a VerifyError. Are you using jikes to compile catalina? Andy -Original Message- From: Malachi de AElfweald [mailto:[EMAIL PROTECTED]] Sent: 08 October 2002 17:26 To: Tomcat Users List Subject: Re:

<    1   2