Re: javamail - offtopic but urgent

2002-05-16 Thread Gupta, Naveen (CORP, GEITC)
Hi For ur own machine u should use localhost as the machine name not the ip address. Hope it helps Naveen Gupta -Original Message- From: Kesav, Ramesh [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 16, 2002 2:11 PM To: [EMAIL PROTECTED] Subject: javamail - offtopic but urgent Hi all

Re: Its very urgent: How can I encrypt a mail using JavaMail!!!! !!

2002-02-07 Thread Naveen Sharma
Use the JCE (Java Cryptographic Extension), available from Sun (http://java.sun.com/products/jce/). Remember that after encryption, you will get binary output, so don't forget to base64 encode, otherwise X.25 mailing systems may corrupt the mailed data. I think there are some export restrictions

Re: LDAP + JSP

2001-06-16 Thread naveen goel
hello any body there can u tell me what it means to have ServletException Error in servlet's doget() method . it is a run time error becos it is compiled successfully. naveen goel - Original Message - From: sufi malak [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, June 16, 2001 6

Re: Which Application web Server (advice) ??

2001-04-11 Thread Naveen Adusumilli
-Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Dylan Sent: Wednesday, April 11, 2001 1:14 AM To: [EMAIL PROTECTED] Subject: Re: Which Application web Server (advice) ?? Sufi, There are alot of feature

Re: download pdf file from servlet

2000-09-08 Thread Naveen Gupta
it will as for save Naveen Gupta Web Developer Go4i.com (India) Pvt. Ltd. 2nd Floor,Kamal Cinema Building, Safdarjung Enclave New Delhi-110029 Phone:6100013-14,6171893-94 Fax:6100015 Email:[EMAIL PROTECTED] mailto:Email:[EMAIL PROTECTED] -Original Message- From: hua ge [mailto:[EMAIL

Problem with jsp:param tag

2000-09-08 Thread /servlet-interest Vishwanath Naveen
Hi, I am unable to retrieve the value of the parameter that i am using in jsp:param tag.I am using this with jsp:forward tag. the code is jsp:forward page="somejspfile.jsp"/ jsp:param name="somename" value="somevalue" /jsp:forward In the calling jsp file i am using String s =

how to use Oracle Stored Procedure

2000-09-07 Thread Naveen Gupta
Pls tell me how to use Oracle Stored Procedure in JSP's Naveen Gupta === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://ja

Re: forward or jsp:include acting like HREF?

2000-09-04 Thread Naveen Gupta
can you send the full sntax so i can see and tell u the error Naveen Gupta Web Developer Go4i.com (India) Pvt. Ltd. 2nd Floor,Kamal Cinema Building, Safdarjung Enclave New Delhi-110029 Phone:6100013-14,6171893-94 Fax:6100015 Email:[EMAIL PROTECTED] mailto:Email:[EMAIL PROTECTED] -Original

Re: double quote and carraige return in jsp variable with frames

2000-09-01 Thread Naveen Gupta
please use single quote Naveen Gupta Web Developer Go4i.com (India) Pvt. Ltd. 2nd Floor,Kamal Cinema Building, Safdarjung Enclave New Delhi-110029 Phone:6100013-14,6171893-94 Fax:6100015 Email:[EMAIL PROTECTED] mailto:Email:[EMAIL PROTECTED] -Original Message- From: Maria Baldassarri

Re: Why do I always receive every mail to this mailing list twice ?

2000-08-31 Thread Naveen Gupta
I think that there is some problem in ur mail server Naveen Gupta Web Developer Go4i.com (India) Pvt. Ltd. 2nd Floor,Kamal Cinema Building, Safdarjung Enclave New Delhi-110029 Phone:6100013-14,6171893-94 Fax:6100015 Email:[EMAIL PROTECTED] mailto:Email:[EMAIL PROTECTED] -Original Message

Re: Query regarding processing a form

2000-08-30 Thread Naveen Gupta
dont change the form element name just change the name of one form and then try Naveen Gupta Web Developer Go4i.com (India) Pvt. Ltd. 2nd Floor,Kamal Cinema Building, Safdarjung Enclave New Delhi-110029 Phone:6100013-14,6171893-94 Fax:6100015 Email:[EMAIL PROTECTED] mailto:Email:[EMAIL

Re: 4 includes in a table of a single jsp page.

2000-08-29 Thread Naveen Gupta
Leena i think that simple HTML can solve your problem.. why dont u use frames in ur page.. divide ur page into 4 frames instead of 4 cells and this wiil solve ur problem.. still u face any problem or u dont know HTML syntax then u can mail Naveen -Original Message- From: Leena Diwan

Re: 4 includes in a table of a single jsp page.

2000-08-29 Thread Naveen Gupta
Leena i think that simple HTML can solve your problem.. why dont u use frames in ur page.. divide ur page into 4 frames instead of 4 cells and this wiil solve ur problem.. still u face any problem or u dont know HTML syntax then u can mail Naveen -Original Message- From: Leena Diwan

Re: JDBC: want to know the no of record fetch my any select query

2000-08-23 Thread Naveen Gupta
Amar try this ResultSet rs=stmt.executeQuery("select count(*) from tablename"); rs.next(); int x=rs.getInt(1); out.println(x); Now this x will show thw no of records or u can use ResultSet rs=stmt.executeQuery("select * from tablename"); int x=0; while(rs.next()){ x++; } out.println(x); This

Re: ASSIGNING REQUEST.GETPARAMETER TO A VARIABLE IN A JSP FILE !! !

2000-08-22 Thread Naveen Gupta
use % String str=request.getParamter("varName"); String query="insert into urtablename values(str)"; executeQuery(query); % and dont forget to register class and opening connection as well which i'm not writing here :) Naveen -Original Message- From: Agarwal

Re: How to combine javascipt within JSP ?

2000-08-22 Thread Naveen Gupta
just use script language="javascript" javascript functions script in head of jsp file and it will work as in ordinary HTML files -Original Message- From: Muhammad Arsyad [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 22, 2000 6:28 AM To: [EMAIL PROTECTED]

Re: how to pass security information

2000-08-21 Thread Naveen Gupta
Use post method of form -Original Message- From: Gary Choi [mailto:[EMAIL PROTECTED]] Sent: Saturday, August 19, 2000 10:30 AM To: [EMAIL PROTECTED] Subject: how to pass security information Dear all, Since I have to pass some security information from one jsp to another jsp. how use

Re: creating jsp files

2000-08-21 Thread Naveen Gupta
just use notepad and save file with .jsp extensions -Original Message- From: Erwan TROEL [mailto:[EMAIL PROTECTED]] Sent: Monday, August 21, 2000 7:24 PM To: [EMAIL PROTECTED] Subject: creating jsp files how can i create files with jsp extensions without a java editor like jbuilder for

Re: want to know the use of beans in jsp

2000-08-18 Thread Naveen Gupta
Amar this is basically to save time because beans are re-usable components which we can be easily used by JSP's and servlets also it reduse pressure on database if beans are used for database connectivity -Original Message- From: amar singhal [mailto:[EMAIL PROTECTED]] Sent: Saturday,

Re: error logs

2000-08-18 Thread Naveen Gupta
Its already in every web server in logs -Original Message- From: Hlynur Johnsen [mailto:[EMAIL PROTECTED]] Sent: Friday, August 18, 2000 8:51 PM To: [EMAIL PROTECTED] Subject: error logs Hi, does anyone know how to generate error logs for compilation of jsp documents? -- KveĆ°ja,

No Subject

2000-07-03 Thread Naveen Goyal
Hello! Can anyone send me few examples how to convert applet-corba to JSP- Corba...i am getting perfomance problem while using applets. thanks regards Naveen Get Your Private, Free E-mail from MSN Hotmail

JSP and CORBA

2000-07-03 Thread Naveen Goyal
Hello! Can anyone send me few examples how to convert applet-corba to JSP- Corba...i am getting perfomance problem while using applets. thanks regards Naveen Get Your Private, Free E-mail from MSN Hotmail

Re: EJBeans In Weblogic

2000-07-03 Thread Naveen Goyal
edit your setEnv file to. From: "R.B. Gurung" [EMAIL PROTECTED] Reply-To: A mailing list about Java Server Pages specification and reference [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: EJBeans In Weblogic Date: Sun, 16 May 1999 18:21:08 +0530 Hi , All I need help to configure the

Re: JRUN, JSP Error - java.lang.ArrayIndexOutOfBoundsException

2000-06-28 Thread Naveen
Oops!! Sorry ! I thought u r running iplanet server. The answer was for i-planet server. - Original Message - From: "Lisa Lewis" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, June 28, 2000 7:48 PM Subject: JRUN, JSP Error - java.lang.ArrayIndexOutOfBoundsException Problem:

Re: JRUN, JSP Error - java.lang.ArrayIndexOutOfBoundsException

2000-06-28 Thread Naveen
Just stop and start the instance of the iplanet you are running. Dont know the cause. The JSP page may not have any error. Still some times i-planet when used with jdk option (instead of jre option , which can only be used if we not compiling JSP pages) the i-planet gives this error. -

Re: Passing objects from JSP to JSP

2000-05-02 Thread Naveen Malik
I'm new to JSP but I think one solution would be to get away from the get/set Attribute and use a bean. Either that or use forms to submit the data with post or get. Naveen - Original Message - From: "Nathan Jantz" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, May

off topic : Jrun 2.3

1999-12-08 Thread naveen
hi , I am having Jrun 2.3 with IIS. iam able to see some jsp examples,but am not able to figure out the exact url of invoking it. if someone is using jrun2.3 for their Jsp development,can u please pass me on the url for invoking these examples.. thanks naveen

Newbie question; returning Resultset

1999-10-26 Thread naveen
path... any help would be greatly appreciated. iam using jdk1.2. rds, naveen * import java.io.*; import java.util.*; import java.sql.*; import javax.servlet.*; import javax.servlet.http.*; public class Resultsets extends HttpServlet { Connection PubCon; ResultSet PubRset

Re: dbaccess problem

1999-09-23 Thread naveen
.sql .*.. the import statement in the page tag is not getting recognised.. any directions would be most helpful thanks naveen - Original Message - From: Carsten Heyl [EMAIL PROTECTED] To: naveen [EMAIL PROTECTED] Cc: Sent: Wednesday, September 22, 1999 11:55 PM Subject: Re: dbacc

Re: dbaccess problem

1999-09-23 Thread naveen
ql.*"%" but the page was unable to import the java.sql.* resulting in a compilation error. But when i changed it to imports i.e "%@ page language="java" imports="java.sql.*"%" (as suggested by carsten) it worked. just wanted to let u guys who have just started

dbaccess problem

1999-09-22 Thread naveen
.. here is the code below...can anyone show me where the problem might be.. thanks, naveen HTML HEADTITLE A JSP APPLICATION /TITLE/HEAD BODY BGCOLOR="white" %out.println("it prints");% %@ page language="java" import="java.sql.*" % % Class.forName("

invoking JSP 's

1999-09-18 Thread naveen
to the settings. Can anyone tell me what the problem might be ? I am not having a net connection at my terminal,so could'nt try out much on my own. awaiting ur replies... thanks. naveen === To unsubscribe: mailto [EMAIL PROTECTED