RE: Help with MD5 key generation with tomcat 5

2006-05-13 Thread Devireddy, Nagendra Reddy (STSD)
Hi Mark, Thanks, I have installed jre1.5 now its working .. Thanks once again, Nagendra -Original Message- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: Sunday, May 14, 2006 3:35 AM To: Tomcat Users List Subject: Re: Help with MD5 key generation with tomcat 5 Devireddy, Nagendra R

Re: Weirdness with Tomcat 5.5.17, j_security_check and favicon.ico

2006-05-13 Thread Konstantin Ignatyev
That is most likely due to security constraints URL in your web.xml It looks like all your resources are protected and when browser tries to access favicon before anything else server sees it as protected resource and displays login form, and then let the request proceed to the favicon once use

Weirdness with Tomcat 5.5.17, j_security_check and favicon.ico

2006-05-13 Thread Dean Searle
Hello Everyone, I have just installed a clean server with windows 2003 Standard, Java JDK 1.5.0_06 and tomcat 5.5.17. I moved my application that I created on tomcat 5.0 to this server and set the application up as a site. When I access the site, it asks for the user name and password (normally

Re: How to embed server hostname in JSP page on clustered Tomcat

2006-05-13 Thread Scott Purcell
Not sure if you got a response to this, but this has worked for myself. <%@ page import="java.net.InetAddress" %> <% InetAddress ia = InetAddress.getLocalHost(); out.println(""); %> - Original Message - From: "David Goodenough" <[EMAIL PROTECTED]> To: Sent: Friday, May 12

Re: Jakarta Messenger (and other dormant?)

2006-05-13 Thread Mark Thomas
Dean Anderson wrote: > This may be the wrong list, but it is sort of jakarta related... You need to post this to the Jakarta General list, not the Tomcat list. Mark - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional com

Re: Weird problem with Tomcat 5.5.17 and j_security_check

2006-05-13 Thread Mark Thomas
When starting a new thread (ie sending a message to the list about a new topic) please do not reply to an existing message and change the subject line. To many of the list archiving services and mail clients used by list subscribers this makes your new message appear as part of the old thread. Thi

Re: Help with MD5 key generation with tomcat 5

2006-05-13 Thread Mark Thomas
Devireddy, Nagendra Reddy (STSD) wrote: > No , My jre version is 1.4.2 .. > > Thanks, > Nagendra As the last poster was hinting at, you need to be running a 1.5 JRE or install the 1.4 compat(ibility) download. Mark - To unsubs

RE: Tomcat Shutdown Unexpectedly

2006-05-13 Thread zhann
Hello Again, I am not sure if this will help at all, but the specific versions of Java and Tomcat are as follows: Java - 1.4.2_06 Tomcat - 5.0.27 I get the feeling that this is a relatively obscure problem judging by the lack of response. It would be most helpful is someone can at least point m

Re: chroot'ing Tomcat and the Brittain BadInputFilterValve

2006-05-13 Thread Mark Petrovic
Good day. Regarding the chroot jail account below, in "Update 5/13/2006" http://www.petrovic.org/blog/?p=126 I have included a shell script that automates the creation of the jail and the placing of Tomcat and Java in it. It may be useful for first-time creation of the jail and in the event o

Tomcat, ClassLoader and java.lang.ClassCastException

2006-05-13 Thread Fernando Cheros
I have this code: DAOClassLoader d = new DAOClassLoader(); Object o = d.loadClass("security.to.ActionTO").newInstance(); System.out.println(o); ActionTO u = (ActionTO)o; u.setDescription("descripcion"); System.out.println(u); The ActionTO is a simple TO object whit their get and sets and the lo

RE: [ANN] LambdaProbe for Tomcat 1.5 is released

2006-05-13 Thread Vlad.Ilyschenko
Hi Remy, There is a slightly newer version already: 1.5.0.1, which addresses problems with "unknown" ServerInfo values. You can now "force" the first adaptor on the list by setting forceFirstAdaptor=true in spring-resources.xml. The list of adaptors has to be ordered accordingly of course. As

RE: More virtual hosting problems!!

2006-05-13 Thread Tim Lucia
OK, then we're both correct. The post I read had only the server.xml fragment in it... or that's all I saw ;-) -Original Message- From: Parsons Technical Services [mailto:[EMAIL PROTECTED] Sent: Friday, May 12, 2006 11:21 PM To: Tomcat Users List Subject: Re: More virtual hosting problem

Re: Generating MD5 password using tomcat 5

2006-05-13 Thread Markus Schönhaber
Am Samstag, den 13.05.2006, 15:13 +0530 schrieb Devireddy, Nagendra Reddy (STSD): > Hi, > > I am trying to generate MD5 Password using tomcat 5. > > "$JAVA_PATH"/bin/java -classpath > "$CATALINATHOME"/server/lib/catalina.jar > org.apache.catalina.realm.RealmBase -a MD5 TESTMESSAGE > > Its throwi

Generating MD5 password using tomcat 5

2006-05-13 Thread Devireddy, Nagendra Reddy (STSD)
Hi, I am trying to generate MD5 Password using tomcat 5. "$JAVA_PATH"/bin/java -classpath "$CATALINATHOME"/server/lib/catalina.jar org.apache.catalina.realm.RealmBase -a MD5 TESTMESSAGE Its throwing the following error .. Exception in thread "main" java.lang.NoClassDefFoundError: javax/manageme