my error...

2003-02-05 Thread [NGUYEN Duc Hai]
Hi all, Sorry for my following question because it seems stupid :( I don't know why I touch always the following error : 2003-02-05 11:43:52 - Ctx( /pondi ): IOException in: R( /pondi + /images/Fichier-BatTypePro.jpg + null) Connection abort ed by peer: socket write error I use Tomcat Server

Re: my error...

2003-02-05 Thread Ritesh Gupta
Hi Nguyen, When do you get this error ? Any observations ? One possiblity is that your page has some JPG and you close the browser or change the url before it is completely loaded on your browser. Regards, Ritesh - Original Message - From: [NGUYEN Duc Hai] [EMAIL PROTECTED] To: [EMAIL

Re: my error...

2003-02-05 Thread Vikramjit Singh
This behavior results from HTTP protocol. Each new page request results in a new TCP connection. When a user press STOP or RELOAD button or goes to another page the browser resets the old connection resulting this exception on server side. Do not worry about, just properly handle it or you can

Using Tomcats built-in database pooling

2003-02-05 Thread Abdul jeelani
HI, I have tried using the Tomcat's built-in db pooling mechanism. I am able to get reference to datasource, but I am getting the following error when I try to get connection from the datasource. java.sql.SQLException: Io exception: Connection

Use of beans

2003-02-05 Thread Luis Javier Beltrán
Hi everybody, I have 3 different forms that should save information in 3 different tables in a database. For that task, I've created 3 beans to hold the info. These beans, reflect the structure of each table. Assuming the tables are similar to this: Table A Table BTable C

Re: Use of beans

2003-02-05 Thread Borislav Iordanov
Hi, Try TICL - it lets you map any form field to any type of bean property. Whenever type mappings are not predefined, you can define your own. Visit http://www.kobrix.com Best Regards, Boris Borislav Iordanov Chief Architect TICL - a RAD toolkit

Re: HttpClient to Servlet

2003-02-05 Thread Christian Bollmeyer (GMX)
Am Mittwoch, 5. Februar 2003 00:19 schrieb Sloan Michael: According to http://java.sun.com/products/servlet/2.3/javadoc/index.html It looks like getSession() and getSession(true) do the same thing. getSession(true) does not create a new session if one already exists. You're absolutely right,

Re: Using Tomcats built-in database pooling

2003-02-05 Thread Srinu.Reddy
Hi, I also faced the ame error when using with the oracle. later I found that i was not using the proper connection string. Check out yours too .. regds, srinu... -Original Message- From: Abdul jeelani [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 05, 2003 7:25 PM To: [EMAIL

Re: Using Tomcats built-in database pooling

2003-02-05 Thread Vikramjit Singh
check out the mails posted here also else check out the tomcat mailing list archives, coz this topic has been discussed extensively: http://marc.theaimsgroup.com/?l=tomcat-userm=102348915728231w=2 and this: http://marc.theaimsgroup.com/?l=tomcat-userm=102383138524775w=2 also this:

Re: Use of beans

2003-02-05 Thread Najeem Lawal
Hello, jsp:setProperty name='c' property=aCode param=a / jsp:setProperty name='c' property=bCode param=b / try using value=a instead of param=a. Also ensure that the beans 'a' and 'b' are still in scope on the page where you are setting the property. the default scope is page. if you are

Re: Use of beans

2003-02-05 Thread Ritesh Gupta
Hey Luis, Can you print here what all jsp:setProperty tags are you using for setting properties in Bean C? Ritesh - Original Message - From: Luis Javier Beltrán [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, February 06, 2003 3:52 AM Subject: Use of beans Hi everybody, I