Re: off topic - how do i convert an int to char

2004-12-07 Thread Adam Smith
private static final char[] enc=abcdefghijklmnopqrstuvwxyz.toCharArray(); for (int i=0;i26;i++) System.out.print(enc[i]); - Original Message - From: Nilesh Bhattad [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, December 07, 2004 10:34 AM Subject: off topic

Re: I'll kill JNDI

2004-06-15 Thread Adam Smith
parameter namemaxActive/name value20/value /parameter parameter namemaxIdle/name value10/value /parameter parameter namemaxWait/name value-1/value /parameter /ResourceParams Hope this helps. Adam Smith - Original Message - From: Kunthar [EMAIL PROTECTED

Re: Jarring custom taglibs: looking for a file named taglib.tld

2004-06-11 Thread Adam Smith
You could just put the tld in WEB-INF and reference it from the web.xml. This is the entry in my web.xml for the taglib I use all the time: taglib taglib-uri http://localhost/myapp/asl /taglib-uri taglib-location /WEB-INF/asl.tld /taglib-location