RE: [OFF-TOPIC] RE: can resultset object be re-used

2003-10-01 Thread Allen Hadden
What in the heck are you talking about? The example code doesn't reuse a ResultSet object...each executeQuery call returns a new ResultSet object. OK, now we're WAY off topic. Allen -Original Message- From: Mike Curwen [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 01, 2003

RE: Stop Tomcat Remotely

2003-09-25 Thread Allen Hadden
- Original Message - From: Allen Hadden [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Wednesday, September 24, 2003 1:49 PM Subject: RE: Stop Tomcat Remotely If it's running as a Windows service, do this: (note that these instructions are for Windows 2000): 1

RE: Stop Tomcat Remotely

2003-09-24 Thread Allen Hadden
If it's running as a Windows service, do this: (note that these instructions are for Windows 2000): 1. Right click on My Computer and select Manage. The Computer Management window opens. 2. Right click on Computer Management and select the Connect to another computer... 3. Select the

RE: Active Directory Single Sign-On

2003-09-10 Thread Allen Hadden
-Original Message- From: Endre Stølsvik [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 10, 2003 3:45 AM To: Tomcat Users List Subject: Re: Active Directory Single Sign-On | Tim mentioned the use of the JCIFS library. I don't think that'd work | either since it'd need

RE: Active Directory Single Sign-On

2003-09-09 Thread Allen Hadden
Probably the easiest way to accomplish this is to use IIS as a front-end to Tomcat (using the ISAPI redirector). In this mode, you'd set up IIS to require authentication to the web site. So by the time the request hits Tomcat, the user is already authenticated (IIS does the magic SSO

RE: forward error

2003-09-05 Thread Allen Hadden
It could be in one of your tag libraries, but you probably thought of that already. :) I've also seen cases where it's the generated servlet that has out.println calls before the redirect. Perhaps it's the newline character after the %. Try putting all of the directives (page and taglib) on

RE: response.sendRedirect

2003-09-05 Thread Allen Hadden
The one thing you want to watch out for with relative redirects is that they're converted by the servlet container to absolute URLs (this is in the servlet spec). This is, by the letter of the HTTP spec, the correct thing to do. Unfortunately, it can cause problems in deployments where an

RE: Internationalization Problem

2003-09-04 Thread Allen Hadden
Assuming you're talking about a JSP (and not a static HTML page), try doing this at the top of your JSP file: [EMAIL PROTECTED] contentType=text/html; charset=UTF-8% Or response.setContentType(text/html; charset=UTF-8); (these are equivalent, if memory serves me correctly). I've always been

RE: File upload Bug?

2003-09-03 Thread Allen Hadden
I had this (or a similar problem) a long time ago. It only occurred when connecting to IIS via HTTPS (SSL). Also, my problem was with isapi_redirector.dll, not isapi_redirector2.dll. It might be the same issue, though. It was some sort of timing problem with the ISAPI redirector. I hacked