Re: server configuration denies access to data source

2003-04-03 Thread Asif.Raj
Issue the following command after grant command in mysql flush privileges regards -Original Message- From: Sigit Irianto [mailto:[EMAIL PROTECTED] Sent: Friday, April 04, 2003 11:53 AM To: [EMAIL PROTECTED] Subject: server configuration denies access to data source dear all, i'm usin

Re: Multiple Form uploads in JSP

2003-03-18 Thread Asif.Raj
check out www.jspsmart.com asif -Original Message- From: Frank Mancini [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 18, 2003 11:31 PM To: [EMAIL PROTECTED] Subject: Multiple Form uploads in JSP Hi, I have a user who has about 100 files that I want uploaded to my UNIX web server filesy

Re: Connection pool

2003-02-27 Thread Asif.Raj
protomatter.sourceforge.net -Original Message- From: Deepak [mailto:[EMAIL PROTECTED] Sent: Thursday, February 27, 2003 2:28 PM To: [EMAIL PROTECTED] Subject: Connection pool Hi Can anyone tell me where I can get jdbc connection pool code or library? any urls will be helpful or if anyb

Re: COMMUNICATION LINK FAILURE

2003-02-06 Thread Asif.Raj
could you please post the code (where you are creating the connections and where you are accessing the database) and the description of the table -Original Message- From: Laxmikanth M.S. [mailto:[EMAIL PROTECTED]] Sent: Friday, February 07, 2003 10:05 AM To: [EMAIL PROTECTED] Subject: Re:

Re: COMMUNICATION LINK FAILURE

2003-02-06 Thread Asif.Raj
the database connection is failing use some kind of connection refreshing mechanism are you using some kind of connection pool or something to connect to the database. please revert back asif -Original Message- From: Laxmikanth M.S. [mailto:[EMAIL PROTECTED]] Sent: Friday, February 07, 20

Re: trouble with readin value from Runtime.exec(cmd)

2003-01-27 Thread Asif.Raj
could you please give some details about the shell program you are running it is possible that that program is not getting executed properly. regards asif -Original Message- From: Jiri Chaloupka [mailto:[EMAIL PROTECTED]] Sent: Monday, January 27, 2003 2:54 PM To: [EMAIL PROTECTED] Subjec

Re: Tomcat on Linux

2002-10-10 Thread Asif.Raj
just add the startup command sh /startup.sh in the file /etc/rc.d/rc.local and rebot -Original Message- From: Ionel Condor [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 10, 2002 3:05 PM To: [EMAIL PROTECTED] Subject: Re: Tomcat on Linux If I remember well, you should add a line

Re: Getting 500 Error

2002-08-22 Thread Asif.Raj
got it thanks i had to reinstall the jdk 1.3 version because the files in c:\jdk1.4\jre\lib also started giving troubles thanks again > -Original Message- > From: subbu [mailto:[EMAIL PROTECTED]] > Sent: Thursday, August 22, 2002 5:46 PM > To: [EMAIL PROTECTED] > Subject: Re: Getting 500

Getting 500 Error

2002-08-22 Thread Asif.Raj
hello all, I am getting the following error for every jsp page. I am running tomcat 4.0 win2k professional. org.apache.jasper.JasperException: Unable to compile class for JSPerror: Invalid class file format in C:\j2sdk1.4.0_01\jre\lib\rt.jar(java/lang/Object.class). The major.minor vers

Re: moving of file

2002-08-20 Thread Asif.Raj
create a new file object for the file you want to use File fh = new File("/home/user/foo"); fh.renameTo(new File("/home/user/dir1/dir2/foobar")); hope this helps thanks asif > -Original Message- > From: RAJESH SINGHANIA [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, August 20, 2002 2:50 P

Re: me too: Java Editor

2002-08-01 Thread Asif.Raj
try these Jbulider JCreater and the best and simplest of all Textpad for linux i would vouch for the dear vi editor > -Original Message- > From: Ravi Kumar [mailto:[EMAIL PROTECTED]] > Sent: Friday, August 02, 2002 11:50 AM > To: [EMAIL PROTECTED] > Subject: me too: Java Editor > > > Hi

Re: Force a form submission via timer?

2002-07-28 Thread Asif.Raj
try this var d1 = new Date(); var maxlim = 10; function runtimer() { var d = new Date(); var c = d - d1; if(c>maxlim) { document.formname.submit(); } setTimeout("runtimer()",1000); } you have to call this script in the body ta