Re: Newbie question about jdbc:odbc connection

2004-12-03 Thread Ananthalakshmi Subramaniyam
Hi, You will have to load JDBC-ODBC bridge driver, with the following statement, Class.forName(jdbc.odbc.JdbcOdbcDriver); //loads the driver before calling DriverManager.getConnection. Thanks, H.Ananthalakshmi. From: Thomas Tsang [EMAIL PROTECTED] Reply-To: A mailing list about Java Server Pages

Re: Connection Pool

2004-11-30 Thread Ananthalakshmi Subramaniyam
of Oracle JDBC driver? Would you give me some examples which call it in JSP? Thanks - Original Message - From: Ananthalakshmi Subramaniyam [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, November 30, 2004 1:38 PM Subject: Re: Connection Pool Hi, Are you using Oracle JDBC 2.0 Driver

Re: Connection Pool

2004-11-29 Thread Ananthalakshmi Subramaniyam
Hi, Are you using Oracle JDBC 2.0 Driver and Jdk 1.3 or greater? Why can't you try the oracle connection pool, built-in package implemented in Oracle JDBC driver. Please go through Oracle JDBC Developer Guide for the implementation details. Thanks, H.Ananthalakshmi. From: sandeepK [EMAIL

Re: database connection error

2004-11-26 Thread Ananthalakshmi Subramaniyam
Hi, Are you using Sun's JDBC-ODBC driver? What is the connection string you use to connect to ODBC data source? Connection string and the connection parameters are valid? Able to connect to the database manually from SQL prompt? Please paste your Java code. Thanks, H.Ananthalakshmi. From: mustafa

Re: passing parameters to JSP

2004-11-24 Thread Ananthalakshmi Subramaniyam
Hi, From your update, you display right.jsp in the second frame of main.jsp. In the first frame, you have first.jsp and a link to right.jsp with parameters in passed in the URL. Did you retrieve the parameters passed in the URL in right.jsp? ie, request.getParameter(function);

Re: How to find the JSP file name!

2004-09-22 Thread Ananthalakshmi Subramaniyam
Hi, HTTP Header 'Referer' will have the information. To access referer in Jsp, String strReferrer = request.getHeader(Referer); Thanks, H.Ananthalakshmi. From: Mark Galbreath [EMAIL PROTECTED] Reply-To: A mailing list about Java Server Pages specification and reference [EMAIL PROTECTED] To:

Re: Determin the RAM(memory) on the user's system

2004-07-12 Thread Ananthalakshmi Subramaniyam
On Thu, 1 Apr 2004 21:43:47 -0700, Vinay [EMAIL PROTECTED] wrote: Hi, I want to determine the RAM(memory) on the user's system, and then display the appropriate web page to the user. I just want to know how to do it with JSP. Can anyone help me out? Vinay

Re: LDAP connection problem

2004-07-12 Thread Ananthalakshmi Subramaniyam
On Mon, 1 Dec 2003 11:58:49 +0100, Damien Pacaud [EMAIL PROTECTED] PRESSE.COM wrote: hi list, I am trying to get the login for the user authentificated through LDAP in a jsp... I tryed : request.getRemoteUser(); but that returns always null... I am sure it can be done but am unable to find how...

Re: Please help regarding passing special characters

2004-07-12 Thread Ananthalakshmi Subramaniyam
Use Javascript escape() function to encode the URL. For ex, A href=../test.jsp?name=+escape('jackjoe')+desription='friends'jack joe/a On Fri, 3 Oct 2003 08:42:26 +0530, vtr [EMAIL PROTECTED] wrote: yes I pass it through url it is in a Link and there are many such links with different values for