Re: JSP Exception

2003-01-02 Thread Ritesh Gupta
Hi Karthik, Here is a link with some info : http://www.websina.com/bugzero/faq/exception-db2-tab.html Q: What is this COM.ibm.db2.jdbc.DB2Exception? [IBM][JDBC Driver] CLI0637E QUERY cannot be found A: This is a known bug in the JDBC driver in DB2 PF5, it occurs when a SQL statement conta

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

2003-01-02 Thread Eric Noriega
This question crops up every so often. My best answer is still to treat the request as a batch request, i.e. program design. Simply initiate the request, and provide a link to fetch the data when it becomes available. (email is always an option as well.) Holding an http connection for 10 mini

JSP Exception

2003-01-02 Thread arun s
hi, Here Im connecting to DB2 database and Im able to retrieve datas from data base but the pblm is Im unable to update the table. I use the query ResultSet rs1=stmt.executeQuery("update user set pass='india' where eno=1001"); in my JSP page. I get exception as 500 Servlet Exception COM.ibm.db

Re: java.lang.OutOfMemoryError

2003-01-02 Thread Vikramjit Singh
It is not always a memory leak that causes "OutOfMemoryError". A memory leak is a situation when some application, for example JVM allocates some amount of memory and then loses pointers to that area. So, the allocated area becomes a "black box" which you can not access and you need a key to open i

java.lang.OutOfMemoryError

2003-01-02 Thread Daniel
Hi I am getting this error in tomcat. What should I do to get rid of this? ERROR!: ** Message: java.lang.OutOfMemoryError Attributes: javax.servlet.error.servlet_name=jsp javax.servlet.error.exception=javax.servlet.ServletException javax.ser

Re: Use of Vector

2003-01-02 Thread Vikramjit Singh
> -Original Message- > From: Amit Ghaste [mailto:[EMAIL PROTECTED]] > Sent: Friday, January 03, 2003 12:12 AM > To: [EMAIL PROTECTED] > Subject: Re: Use of Vector > > > Vikramjit, > > The reason that Vector is Synchronized is the main reason why > I would use it > in a web application... >

[no subject]

2003-01-02 Thread Ali Raza
Can any body suggest me for the complete tutorial of UML Regards Ali Raza === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST

Re: Use of Vector

2003-01-02 Thread Anindya
You can use ArrayList also .. as ArrayList is not synchronized by default, u can synchronize it forcibly using the method : Collections.synchronizedList(List list) of the Collections utility class .. this creates a synchronized list from the ArrayList and returns the reference to that .. As Vect

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

2003-01-02 Thread V.T.R.Ravi Kumar
Use this to go on display your rows as they occur V.T.R.Ravi Kumar Engineer,CCX,BHEL, Haridwar Phone : Office-91-01334-285260 Res -91-01334-226121 - - Original M

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

2003-01-02 Thread Steven A. Martin
Besides flushing the buffer, in IE that won't work in table rows, you must have already displayed the . Basically you have to do multiple tables instead of individual rows. - Original Message - From: "Nimmons, Buster" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 02

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 PROT

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

2003-01-02 Thread Frank Mancini
I have a jap page that takes about 10 minutes to runthat is ok...it should take that long.. My problem is that I want to display some of the output while the user is waiting. I'm doing document.writes as I'm running the query and it should display, but the browser seems to wait until the whol

Re: Use of Vector

2003-01-02 Thread Amit Ghaste
Vikramjit, The reason that Vector is Synchronized is the main reason why I would use it in a web application... I dont want adhoc volatile values to be present.. Snehal, Could u explain what do u mean by Master Value... do u mean for ex.. of populating drop down lists, a list that is common acr

Re: UML Tools

2003-01-02 Thread Michael Greenberg
I use Poseidon. http://www.gentleware.com The free community version is pretty good and really all I need. Thanks, Michael - Original Message - From: "Daniel" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 02, 2003 2:26 AM Subject: UML Tools > Can any body sugg

Re: Use Argo UML Tools

2003-01-02 Thread gurunathan
Use Argo UML Daniel wrote: Can any body suggest me FREE GOOD UML TOOL for design? Regards, Daniel.E === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTEC