Re: unsubscribe

2004-04-01 Thread Nimmons, Buster
I know I shouldn't have anything to do with perpetuating this thread but I'm reminded of a quote I saw on a similar list pertaining to this type of thread. Arguing on mailing lists is kind of like running in the special olympics.. Even if you win your still retarded -Original

Re: Vector needs include in Tomcat?

2003-08-18 Thread Nimmons, Buster
Some app servers do an automatic import of the java.util package thus allowing the use of Vectors with out being imported. AFAIK there is no conf file to configure this since it happens at the compiler level. It looks like you'll have to add %@ page import=java.util.*% to all your jsp pages I

Re: Query takes 10 minutes...I need to display some output...how?

2003-01-02 Thread Nimmons, Buster
from a jsp you can do out.println(Some text); then follow with out.flush(); to push the information in the buffer to the browser. This usually works but I have seen some app servers still wait till the page is finished processing -Original Message- From: Frank Mancini [mailto:[EMAIL

Re: Urgent, Making taglib available to JSPs without those being i n a WAR

2002-12-02 Thread Nimmons, Buster
According to the spec all web applications need a web.xml file whether it is in a WAR file or an exploded directory structure.some people never realize the need for the web.xml because they simply place their JSPs in the context of the default web app and never have to worry about the web.xml file

Re: session nonpersistence

2002-10-30 Thread Nimmons, Buster
Also, if he jsp pages are in different web apps then each web application gets it's own session object and the objects are not replicated -Original Message- From: Shawn Bayern [mailto:bayern;ESSENTIALLY.NET] Sent: Wednesday, October 30, 2002 9:32 AM To: [EMAIL PROTECTED] Subject: Re:

Re: session nonpersistence

2002-10-30 Thread Nimmons, Buster
if they are in dfferenet web-apps. all pages are in the same physical directory on the server. --Monte Glenn Gardner On Wed, 30 Oct 2002, Nimmons, Buster wrote: Also, if he jsp pages are in different web apps then each web application gets it's own session object and the objects

Re: How to retrieve jpeg image file from LDAP?

2002-10-22 Thread Nimmons, Buster
As far as the first question it depends on the LDAP directory. We use Oracle Internet Directory which has a great Java API for accessing the Directory. as far as displaying an image once it's recieved I wrote a servlet called GetImage which connects to the LDAP Directory and retrieves the image

Re: Checking client connection speed

2002-10-17 Thread Nimmons, Buster
Here is a java package which encapsulates just about every networking need I've run across http://www.savarese.org/oro/software/NetComponents.html -Original Message- From: Means, Garann R. [mailto:grmeans;DOC1.WA.GOV] Sent: Wednesday, October 16, 2002 3:59 PM To: [EMAIL PROTECTED]

Re: Setting cookie with response.sendError

2002-09-12 Thread Nimmons, Buster
[mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 11, 2002 11:13 PM To: [EMAIL PROTECTED] Subject: Re: Setting cookie with response.sendError -Original Message- From: Nimmons, Buster [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 11, 2002 2:18 PM To: [EMAIL PROTECTED

Setting cookie with response.sendError

2002-09-11 Thread Nimmons, Buster
I have a page which has to perform a response.sendError(499,Oracle sso) right before I perform the sendError I also set a cookie in the response with the response.setCookie(new Cookie(someKey,someValue) . however when the custom error page is displayed I noticed that the cookie is not getting

Re: How to keep two sessions with the same browser?

2002-08-08 Thread Nimmons, Buster
I think I read the question wrong. If you only have one browser open and user1 logs in then user2 uses the same browser instance and logs in the session will then contain the data for user2. There is only one session object for a browser instance. -Original Message- From: Roland Dong

using session information across different web applications

2001-02-26 Thread Nimmons, Buster
How can I use session information (Attributes) in one web application from another web application. I've noticed that the session IDs from one application to another are different and then I don't have the users information that I collected from the login/security application available to other

Convert request.getParameter to sql.Date

2001-02-14 Thread Nimmons, Buster
How do I convert a request.getParameter to a sql.Date Object. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".

Most efficient way to compare two arrays

2001-01-30 Thread Nimmons, Buster
I have two arrays each having around 3000 elements. One array is a list of file names from a database and the other is a list of files on a file server. I would like to compare the two arrays and end up with two arrays showing what was in each array that was not in the other array. I am looking

Setting name of file returned by servlet

2001-01-22 Thread Nimmons, Buster
I am using the following code to send a zip file to a client browser OutputStream os = response.getOutputStream(); ZipOutputStream zos = new ZipOutputStream(os); when the save dialog box appears it has the name of the servlet as the file name (In this case "batchDownloadServlet.zip") How can

Re: Setting name of file returned by servlet

2001-01-22 Thread Nimmons, Buster
1 3:09 PM To: [EMAIL PROTECTED] Subject: Re: Setting name of file returned by servlet "Nimmons, Buster" wrote: when the save dialog box appears it has the name of the servlet as the file name (In this case "batchDownloadServlet.zip") Check ou

Re: Session - clarify please

2000-12-28 Thread Nimmons, Buster
One thing to look out for with new windows is that browser windows opened with the File--- New Window menu item will share the same session ID. However if you double click on the IE or NS icon to open a new window each browser will have seperate session IDs -Original Message- From:

easiest way to pause execution of a jsp or servlet

2000-12-07 Thread Nimmons, Buster
I know this sounds weird but what is the easiest way to pause the excecution of a jsp or servlet. I want the page to pause for a specified number of minutes so I can test response timeout features in netscape and IE. I have a form page that asks the number of minutes to wait and sends the request

fixed RE: problem getting tomcat to run on win32 platform

2000-09-11 Thread Nimmons, Buster
After closer inspection of the contents of the java console I found the problem. All the configurations such as JAVA_HOME and TOMCAT_HOME were correct. however I noticed a bunch of "OUT OF ENVIRONMENT SPACE" errors so I edited my CONFIG.SYS file to up the amount of memory allocated to environment

unescaping cookie information in jsp page.

2000-09-11 Thread Nimmons, Buster
I have jsp code which reads cookie information produced with javascript. when I do a cookie.getValue() in jsp how do I unescape the returned value Daniel (Buster) Nimmons Information Management Specialist Phone: (713) 845-4991 CELL #:(281) 224-8013 Fax #: (713) 640-8717 E-mail: [EMAIL