problem building jakarta-tomcat

2000-12-22 Thread Wayne F Davis
I'm having trouble setting up jarkarta-tomcat. system: jakarta-tomcat 3.2.1 etc. all from source rh linux 7.0 I'm not sure how to solve this problem. Any help would be appreciated. Thanks. [5]# ./build.sh Searching for build.xml ... Buildfile:

JDBCRealm or session checking

2000-12-22 Thread Winifred Sanchez
Would it be better to use JDBCRealm or use HttpSessionBindingListener (session checking) to authenticate a user? Get FREE Email/Voicemail with 15MB at Lycos Communications at http://comm.lycos.com

value of a variable in the web.xml

2000-12-22 Thread Carlos
If i want to define a variable with a value, is posible in the web.xml? example: if a person name i want to define with a value, is this posible? how? i wnat to define several variable names and values in this file, is this posible? how? thanks Carlos

tomcat 3.2.1 error when browsing directory...

2000-12-22 Thread Jeff Sum
i got the following error when browsing the directory only i am using tomcat 3.2.1 release Error: 500 Location: /examples Internal Servlet Error: java.io.IOException: Not an ISO 8859_1 character:? at org.apache.tomcat.core.BufferedServletOutputStream.print(BufferedServletOutp

tomcat3.2.1 context admin password

2000-12-22 Thread Jeff Sum
what's the default password of context admin??

IDE

2000-12-22 Thread chew
Hi, Anybody of you have tested using tomcat3.2.1 in Jbuilder4 foundation. I have followed the article "Apache Tomcat Servlet JavaServer Pages Development with JBuilder Foundation" written by Debbie Carson amnd Ken Chan. Under running tomcat section, I got a message "unable to start runtime

Include shared (native) libraries to a servlet container - How to?

2000-12-22 Thread Daniel Zuck
Hi, we have to put a new application on top of TomCat 3.2.1, which works in general (under Solaris with Apache). However, the programmers of this application decided, that they need some native code within their Java-environment (please do *not* send some ethical or religious comments on this

Feedback on Tomcat IIS HowTo: need Windows to restart to take conf files into account.

2000-12-22 Thread Berche, Guillaume
Hi, This is just to provide feedback on the "Tomcat IIS HowTo" document. First it's of great quality and was very useful. Thanks! You might only add in the troubleshooting the following fact that I experienced: the jakarta iaspi_redirect.dll module would not take modifications made to its

Re: tomcat3.2.1 context admin password

2000-12-22 Thread Simon Oldeboershuis, outermedia
Hi there, look for tomcat-users.xml in the tomcat/conf dir and add a new user with role admin You can look into the web.xml of the admin context for the security-constraint. The role is admin is explicit listed. For security reasons, there is no default admin!!! All this information is already

Tomcat info.

2000-12-22 Thread Kasper \(swebase\)
To run JSP is it enough to build tomcat?? I have to get a server up and running with JSP, so i wonder if its enough to build tomcat? Med Vänlig HälsningKasper Kristiansson

RE: Tomcat info.

2000-12-22 Thread Kitching Simon
I'm not sure what you mean by "build" tomcat. It's enough just to *install* tomcat. There is a "binary" release available pre-compiled, which is all most people will ever need. Just follow the relevant links from the jakarta.apache.org site, and download the "jakarta-tomcat-3.2.1.zip" if you are

How to map .xml files to a servlet (like Cocoon2)

2000-12-22 Thread Christian Parpart
Hi all, normally it works like this: [ web-app servlet servlet-nameCocoon2/servlet-name servlet-classorg.apache.cocoon.servlet.CocoonServlet/servlet-class init-param param-nameconfigurations/param-name

AW: Tomcat info.

2000-12-22 Thread Christian Parpart
Hi Kasper, oh yes. It seems to be enough, at least on my machine. But I downloaded the binary package of Tomcat/3.2.1 and /4.0 before too. If yoursnot work, try this. Mary Christmas. Regards,Christian ParpartSurakWare[EMAIL PROTECTED]http://www.surakware.com -Ursprüngliche

Applet from Browser

2000-12-22 Thread Martin . George
Dear all, I am new in Java and sorry for asking this applet related question in this forum. I have created an applet to write something to a text file and it works fine with appletviewer. I have created a policy file for it and it works fine. When I try this applet within a browser(netscape

Include shared (native) libraries and environment-information into one servlet-zone - Howto?

2000-12-22 Thread Daniel Zuck
Hi, we have to put a new application on top of TomCat 3.2.1, which works in general (under Solaris with Apache). Now: I can call this application as desired, but it crashes with Error 500 as the native libraries are 'file not found'... Well, of course LD_LIBRARY_PATH contains the path, where

zone.properties - how-to?

2000-12-22 Thread Daniel Zuck
Hi, within the tomcat.properties I found the following. Now: where can I find a template for the 'zone.properties' - as I have to set some special environment parameters for one zone... # # Servlet Zones parameters ### # List of servlet zones Apache JServ manages #

Re: Feedback on Tomcat IIS HowTo: need Windows to restart to take conf files into account.

2000-12-22 Thread Mohammed Nasr Shalaby
You had to restart only the TomCat instance, not the machine.Try it and tell me if you found this wrong!!! NASR "Berche, Guillaume" wrote: Hi, This is just to provide feedback on the "Tomcat IIS HowTo" document. First it's of great quality and was very useful. Thanks! You

AW: IDE

2000-12-22 Thread Algarve, Leila
I suppose that you intalled Tomcat at c:\tomcat. I am not using Jbuilder4 but I got Tomcat running with Visual Cafe. I had to add all the Tomcat libraries to my project, set the main class to org.apache.tomcat.startup.Tomcat and put in the program arguments "-home c:\tomcat". I based in this

Re: very basic web server hosting question

2000-12-22 Thread Horia Bochis
Well, I have been here: http://jakarta.apache.org/builds/jakarta-tomcat/release/v3.2.1/bin/win32/i386/ and what can I take from there, for tomcat to work opn my windows? I allready have SDK installed on my machine. Can this be implemented with apache? I mean, can those work toghether? I

RE: very basic web server hosting question

2000-12-22 Thread Kitching Simon
What ted was pointing out is that you do *not* look in the "win32" directory for tomcat, because tomcat is not platform-specific. The file you need is: http://jakarta.apache.org/builds/jakarta-tomcat/release/v3.2.1/bin/jakarta-t omcat-3.2.1.zip What is in the win32 directory is just stuff like

RE: very basic web server hosting question

2000-12-22 Thread Horia Bochis
Thanx, I've got it now, I understood the concept. Well I have to use CGI cause it is a local application and can not keep the memory busy (as I know servlets usew to live there) and I also need a part that needs to move fast. I have to combine them. What I need is to make a mixture using CGI

Re: very basic web server hosting question

2000-12-22 Thread Ted Husted
On 12/22/2000 at 2:49 PM Horia Bochis wrote: and what can I take from there, for tomcat to work on my windows? Sorry, should have mentioned that to start Tomcat standalone, 1. Be sure there is a NT environment variable JAVA_HOME that points to your JVM (e.g. c:\javasoft\jdk\1.2\bin). 2. Open a

RE: very basic web server hosting question

2000-12-22 Thread Ted Husted
On 12/22/2000 at 3:21 PM Horia Bochis wrote: What I need is to make a mixture using CGI and Servlets and what I would like is to see those working on a windows. It's been mentioned that a servlet could be used to handle requests for conventional CGI, but I don't think anyone has contributed one

Getting the browser scrolled

2000-12-22 Thread Zsolt Koppany
Hi, my servlet writes a long list that must be shown by the browser. Is it possible to get the list scrolled that the user sees the last lines? -- Zsolt Koppany Intland GmbH www.intland.com Schulze-Delitzsch-Strasse 16 D-70565 Stuttgart Tel: +49-711-7871080 Fax: +49-711-7871017

RE: very basic web server hosting question

2000-12-22 Thread Horia Bochis
thanx, I have implemented a part in CGI using perl and it's working just fine. Horia Bochis = WebMaster @ Romania Data Systems - Oradea HomePage: http://horia.rdsor.ro On Fri, 22 Dec 2000, Ted Husted wrote: On 12/22/2000 at 3:21 PM Horia

Re: InterScan eManager Content Management Notification! (Dirty Words)

2000-12-22 Thread Andy
Not to mention how stupid it is to let this send to a mail list anyhowof course its also kinda silly in the first place (how offensive is an offensive word anyhow..) -Andy "Nasrat, Paul (NOW)" wrote: Oliver Kurt wrote: I just extracted the important part of the "anti-dirty-words

Re: [ linux + tomcat + oracle ] Why VMM is continual grow longer..

2000-12-22 Thread Andy
Just a guess but I'm betting both you folks have hanging object references.secondly you probably haven't discovered why you shouldn't use the java String object in a loop (it makes the garbage collector run wild). (see StringBuffer). Alexandre Augusto Drummond Barroso wrote: Unfortunately

Re: very basic web server hosting question

2000-12-22 Thread William Brogden
Horia Bochis wrote: Thanx, I've got it now, I understood the concept. Well I have to use CGI cause it is a local application and can not keep the memory busy (as I know servlets usew to live there) and I also need a part that needs to move fast. I have to combine them. What I need is

Re: unsubscribe me please

2000-12-22 Thread Ravindran Venkatapathy
Please unsubscribe __ Do You Yahoo!? Yahoo! Shopping - Thousands of Stores. Millions of Products. http://shopping.yahoo.com/

RES: Requesting Suggestions for a Tomcat book

2000-12-22 Thread Jose Euclides da Silva Junior - DIGR.O
What do you think about writing something about bugs in Tomcat environment. I am wasting many times to solve this bug, as follow: Error: 500 Location: /examples/servlet/StarServletnew Internal Servlet Error: java.lang.NoSuchMethodError: FormBean: method

tomcat and wml

2000-12-22 Thread Carlos
anybody can say me what must i to append to the web.xml file for using wml? thanks Carlos

Re: value of a variable in the web.xml

2000-12-22 Thread Dion_Vansevenant
Carlos, Take a look at the test-tomcat.xml file in the conf directory of tomcat. In that file you will see several lines specifying "property name="blah" value="stuff"/ and then later on you will see something like "variable.to.set="${blah}"/. For example: target name="init" property

Re: tomcat and wml

2000-12-22 Thread Christoph Fischer
You have to add the following mime-types For .WML files: "text/vnd.wap.wml" For .WMLC files: "application/vnd.wap.wmlc" For .WMLS files: "text/vnd.wap.wmlscript" For .WMLSC files: "application/vnd.wap.wmlscriptc"

Problem with VAJ 3 Entry Edition Tomcat 3.1 Environment

2000-12-22 Thread Pawe Zakrzewski
Hi ! I've ecountered some problems with set up VisualAge for Java Entry Edition, Version 3.0 with Tomcat. I've made exactly all steps (described in Sheldon Wosnick article at VADD http://www.ibm.com/vadd ) of Tomcat installation in VAJ environment and unfortunately I can not run Tomcat. When I

Problem with VAJ 3 Entry Edition Tomcat 3.1 Environment

2000-12-22 Thread Pawe Zakrzewski
Hi ! I've ecountered some problems with set up VisualAge for Java Entry Edition, Version 3.0 with Tomcat. I've made exactly all steps (described in Sheldon Wosnick article at VADD http://www.ibm.com/vadd ) of Tomcat installation in VAJ environment and unfortunately I can not run Tomcat. When I

Problem with VAJ 3 Entry Edition Tomcat 3.1 Environment

2000-12-22 Thread Pawe Zakrzewski
Hi ! I've ecountered some problems with set up VisualAge for Java Entry Edition, Version 3.0 with Tomcat. I've made exactly all steps (described in Sheldon Wosnick article at VADD http://www.ibm.com/vadd ) of Tomcat installation in VAJ environment and unfortunately I can not run Tomcat. When I

Re: Tomcat threads..

2000-12-22 Thread Ted Husted
On 12/22/2000 at 4:32 PM Endre Stølsvik wrote: I'm trying desperately to get tomcat to use only ONE thread. Why? Java and Tomcat are designed to be multithreaded. Reducing threads would hurt performance. All the same resources would be used, but only in serial. What is your goal? As an aside,

Re: Problem with VAJ 3 Entry Edition Tomcat 3.1 Environment

2000-12-22 Thread Dave Smith
Pawel, I think you're wasting your time. VADD has a tomcat kit for VAJ 3.5. I haven't used it, but it would probably save you a huge amount of time to go get what they have already set up and try that first. Yes, you would have to buy the subscription. Again, it is probably worthwhile in time

Help! env. var. code needed

2000-12-22 Thread John Marquart
Hello, Could someone please print some simple code which prints/illustrates the use of env. variables / such as those defined in the wrapper.env declarations? I have tried something like: System.getProperties().list(System.out); but that list does not include my declared

Jsp Class not found

2000-12-22 Thread Mallik Kandula
Hi there. Can anybody help me why the jsp compiler is not finding my bean class in the useBean tag of jsp ? tomcat version 3.1, linux rh 6.2. there is no problem with the system classpath . I also have tools.jar in the classpath and have also expanded tools.jar in ${TOMCAT_HOME}/classes

Servlet exception: callable statements are not supported at this time

2000-12-22 Thread nvadekar
I have tried tomcat 3.2.1 and 4.0 working on redhat 7, i have build a jps page with dreamweaver ultradev 3.0, is accesses a postgresql database with a jdbc driver, the driver works just fine on ultradev. the class path to the jdbc driver is working fine on tomcat, other jsp files, for

classes in zip files

2000-12-22 Thread Ron Hamersma
Hi!, this is probably a stupid question but i have to ask it anyway: i have some classes in a zip file (classes111.zip from oracle for the jdbc thin driver), and somehow Tomcat 3.2.1 does not seem to pick it up in the lib directory, while Tomcat 3.2 had no problems. I'm running on NT4.0 as

RE: classes in zip files

2000-12-22 Thread Kitching Simon
As far as I am aware, Tomcat has *never* recognised ".zip" files in the lib directory, only .jars. Perhaps in the past, you happened to have the zip in a classpath... Anyway, the fix is just to rename any .zip to .jar, they are (currently) exactly the same internal format. -Original

Re: Jsp Class not found

2000-12-22 Thread William Brogden
Mallik Kandula wrote: Hi there. Can anybody help me why the jsp compiler is not finding my bean class in the useBean tag of jsp ? tomcat version 3.1, linux rh 6.2. there is no problem with the system classpath . I also have tools.jar in the classpath and have also expanded

Re: IDE

2000-12-22 Thread Christian Wenz
Hello, chew wrote: Anybody of you have tested using tomcat3.2.1 in Jbuilder4 foundation. I have followed the article "Apache Tomcat Servlet JavaServer Pages Development with JBuilder Foundation" written by Debbie Carson amnd Ken Chan. where can I find this article? Is it available

Karsten Knecht/SHP ist außer Haus.

2000-12-22 Thread Karsten_Knecht/SHP%SHP
Ich werde ab 22.12.2000 nicht im Büro sein. Ich kehre zurück am 03.01.2001. Ich werde Ihre Nachrichten nach meiner Rückkehr beantworten. In dringenden Fällen wenden Sie sich bitte an einen meiner Kollegen. Vielen Dank. Diese Nachricht dient nur zu Ihrer Information und wurde automatisch

unable to use the VisiBroker ORB from my webapp

2000-12-22 Thread Mike La Budde
I'm unable to use the Borland VisiBroker ORB from the classes in my webapp. The VisiBroker ORB overrides a JDK1.2 class and I am accustomed to placing an orb.properties file (w/ the visigenic package/class name info in it) into my /jdk1.2.2/jre/lib directory in order for this to work. All

HANDLER THREAD PROBLEM: java.lang.NullPointerException

2000-12-22 Thread Shahed Ali
I get these errors sometimes, can cant figure out what the problem is. Can someone tell me where should I start looking ? Thanks Shahed HANDLER THREAD PROBLEM: java.lang.NullPointerExceptionERROR: can't find default error handler or error in default error page

RE: classes in zip files

2000-12-22 Thread George McKInney
-Original Message- From: Kitching Simon [mailto:[EMAIL PROTECTED]] Sent: Friday, December 22, 2000 8:47 AM To: '[EMAIL PROTECTED]' Subject: RE: classes in zip files As far as I am aware, Tomcat has *never* recognised ".zip" files in the lib directory, only .jars. Perhaps in

Re: Tomcat threads..

2000-12-22 Thread Thom Park
Ted Husted wrote: As an aside, threads are not the same as an OS processes, although they can look the same. ...unless you're on a linux box ;-) -T.

Jsp Class not found

2000-12-22 Thread Mallik Arju
Hi all, I'm sorry i'm reposting my question as i have problems receiving mail through the other address. Can anybody help me why the jsp compiler is not finding my bean class in the useBean tag of jsp ? This is tomcat version 3.1 on rh 6.2. There is no broblem with the system classpath

RE: IDE

2000-12-22 Thread Steven Newton
-Original Message- From: Christian Wenz [mailto:[EMAIL PROTECTED]] chew wrote: I have followed the article "Apache Tomcat Servlet JavaServer Pages Development with JBuilder Foundation" written by Debbie Carson amnd Ken Chan. where can I find this article? Is it available

Re: tomcat3.2.1 context admin password

2000-12-22 Thread Thom Park
The password is dependent on what role you map the contextAdmin servlet to. In the the web.xml file of the 'admin' application the role it's mapped to is called 'admin'. To enable the application, you need to add an 'admin' role to the tomcat-users.xml file (located in TOMCAT_HOME/conf (if

File downloading through a servlet problem. This is weird!!!

2000-12-22 Thread Stefán F. Stefánsson
Hello. I'm experiencing strange things when I download files through a servlet. The history is that I have access to a file stream in a servlet and I want the user to be able to download this file. I do this by sending a file id as a parameter to the servlet as so:

Tomcat and Win 2000 Pro

2000-12-22 Thread Chris Zota
Title: Tomcat and Win 2000 Pro Hi there, I have installed Apache, Tomcat and Sun JDK on a Windows 2000 Pro machine. Apache works OK but Tomcat won't start. I get the following error: ... ... although I have set up the environment variables and all the paths in Windows. Java.exe is

Re: unable to use the VisiBroker ORB from my webapp

2000-12-22 Thread Philippe de M. Sevestre
Here we changed the tomcat.sh script to include all VB's related stuff. Just cut-and-paste the prop's from the 'vbj' script and everything should be OK. At 11:09 22/12/00 -0600, you wrote: I'm unable to use the Borland VisiBroker ORB from the classes in my webapp. The VisiBroker ORB

Re: File downloading through a servlet problem. This is weird!!!

2000-12-22 Thread Kurt Bernhard Pruenner
Stefán F. Stefánsson wrote: response.setContentType("application/octet; name=" + theFileName + "\nContent-Disposition: attachment; filename=" + theFileName + "\n\n"); Try response.setContentType("application/octet; name=" + theFileName);

Re: Tomcat threads..

2000-12-22 Thread Thom Park
I'm sure your right - I haven't used the linux kernel in a long time (Blackdown jdk days) It used to be a heavyweight threading model for linux native threads but there's been a whole lot of improvements in the java threading implementations on linux (shame I can't say the same for C/C++

Karsten Knecht/SHP ist außer Haus.

2000-12-22 Thread Karsten_Knecht/SHP%SHP
Ich werde ab 22.12.2000 nicht im Büro sein. Ich kehre zurück am 03.01.2001. Ich werde Ihre Nachrichten nach meiner Rückkehr beantworten. In dringenden Fällen wenden Sie sich bitte an einen meiner Kollegen. Vielen Dank. Diese Nachricht dient nur zu Ihrer Information und wurde automatisch

Re: Servlet exception: callable statements are not supported at this time

2000-12-22 Thread Kurt Bernhard Pruenner
[EMAIL PROTECTED] wrote: Root Cause: Callable Statements are not supported at this time. ^^^ This is half of your problem. at org.postgresql.jdbc2.Connection.prepareCall ^^^ There's your

Re: Tomcat and Win 2000 Pro

2000-12-22 Thread Christian Wenz
Hi, looks like an attachment was missing. If it was an image - PLEASE post the text instead. Regards Christian Wenz Chris Zota wrote: Hi there, I have installed Apache, Tomcat and Sun JDK on a Windows 2000 Pro machine. Apache works OK but Tomcat won't start. I get the following error:

Re: How to modify the files in tomcat

2000-12-22 Thread Thom Park
worst-case scenario: use wordpad, always save as plain text. -t. Peter Brandt-Erichsen wrote: Use a decent text editor...like Ultra Edit or Slick Edit,Notepad isn't up to the job.Peter -Original Message- From: chew [EMAIL PROTECTED]> To: [EMAIL PROTECTED] [EMAIL PROTECTED]> Date:

Tomcat and Apache?

2000-12-22 Thread Qian Chen
Hi, How can I tie Tomcat to Apache? Thanks, Wendy

Object Passivation in TC 3.2.x ?

2000-12-22 Thread Shahed Ali
Hi, I am creating a connection pool in my jsp pages. This connection pool is a context wide static class that is referenced by each jsp page through a static class method. If the website is inactive for about 2-3 hours, I get an error trying to get connections from the pool. I suspect

Re: How to modify the files in tomcat

2000-12-22 Thread Ted Husted
Or, stay true to your school ... http://jedit.sourceforge.net/ *** REPLY SEPARATOR ***On 12/22/2000 at 11:56 AM Thom Park wrote: worst-case scenario: use wordpad, always save as plain text. -t. Peter Brandt-Erichsen wrote: Use a decent text editor...like Ultra

Re: Tomcat and Apache?

2000-12-22 Thread Ted Husted
http://jakarta.apache.org/tomcat/jakarta-tomcat/src/doc/tomcat-apache-howto.html *** REPLY SEPARATOR ***On 12/22/2000 at 12:21 PM Qian Chen wrote: Hi, How can I tie Tomcat to Apache? Thanks, Wendy

Why tomcat stop?

2000-12-22 Thread Henry DU
I just installled tomcat 3.2.1 and apache 1.3.14 on solaris (ultra10 sparc). If the servlets do not have exceptions then run fine. but with exceptions(?), it seem s to be shutdown (no more connection and 500 internal server error). When I re-started tomcat, the servlet can run. Sure the

Re: How to modify the files in tomcat

2000-12-22 Thread Peter Brandt-Erichsen
Just checked out that website for JEdit, the interface looks really nice, how is it for speed seeing that it is Swing based? P. -Original Message-From: Ted Husted [EMAIL PROTECTED]To: Tomcat User List [EMAIL PROTECTED]Date: Friday, December 22, 2000 3:06

Re: How to modify the files in tomcat

2000-12-22 Thread Ted Husted
Takes a minute to load, but it's fineafter that.Go ahead andtry it. *** REPLY SEPARATOR ***On 12/22/2000 at 4:23 PM Peter Brandt-Erichsen wrote: Just checked out that website for JEdit, the interfacelooks really nice, how is it for speed seeing that it is Swing based? P.

mod_jk and apache 1.3.12

2000-12-22 Thread Boon Yeo
I have compile mod_jk with no errors. I have place it in /etc/httpd/libexec (redhat 6.2 directory structure). I have modified httpd.conf to include LoadModule jk_module libexec/mod_jk.so But my apache 1.3.12 won't start. There are no error messages (not even in error_log) which I could use

Re: checking remore URL

2000-12-22 Thread Craig R. McClanahan
Zsolt Koppany wrote: Thank you for the idea Craig but java.net.URLConnection is an abstract class, how can I do that? URL url = new URL("http://www.yahoo.com"); URLConnection conn = url.openConnection(); There are more comprehensive examples in the Java Language Tutorial's networking

Re: Tomcat threads..

2000-12-22 Thread Craig R. McClanahan
Endre Stølsvik wrote: I'm trying desperately to get tomcat to use only ONE thread. But I always seem to end up with 10 or so.. I guess this is because of tomcat internals, but just how many threads does tomcat really need? Tomcat needs one thread for each simultaneous request you want it

Reloading JSP is a bug?

2000-12-22 Thread Andreas Sheriff
Hi, JGuru states that there is a bug in Tomcat 3.1 where a jsp page converted to a servlet still loads, even though the original jsp page was deleted (http://www.jguru.com/jguru/faq/view.jsp?EID=224108). Is this still a bug in 3.2? I have Tomcat 3.2 installed on a Linux platform, but I find

Re: Tomcat and Win 2000 Pro

2000-12-22 Thread Jim Rudnicki
I have installed Apache, Tomcat and Sun JDK on a Windows 2000 Pro machine. Apache works OK but Tomcat won't start. I get the following error: Use tis loader. Works 99.94% of time. Take a look: http://www.geocities.com/jdrudnicki/ Jim

Re: Reloading JSP is a bug?

2000-12-22 Thread Craig R. McClanahan
Andreas Sheriff wrote: Hi, JGuru states that there is a bug in Tomcat 3.1 where a jsp page converted to a servlet still loads, even though the original jsp page was deleted (http://www.jguru.com/jguru/faq/view.jsp?EID=224108). Is this still a bug in 3.2? Well, you have to get into a