Question

2000-06-21 Thread Som Subhra Chakraborty
Hi All, I've asked this question even before. But I've not received any answer. What is visual servlet? TIA, Som === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on

Obscure Terms

2000-06-19 Thread Som Subhra Chakraborty
Hi All, Can u please explain the following -- What is OCX/OCX controls? What is visual servlet? Is coldfusion only a similar tool/concept as jsp? In jsp, we use jdk1.2. What do we use in coldfusion? What is the corresponding markup language, html/xml? Any sample code in coldfusion, say doing

HTML prob?

2000-06-19 Thread Som Subhra Chakraborty
say, window A opens window B opens window C. If I want to get A from C, I do self.opener.opener.top.location="A"; it's working fine. Now, I close C. Again, from B, I open C. Again I do self.opener.opener.top.location="A", it's giving script error. How to avoid it? TIA

Re: URGENT!Your kind help is earnestly solicited

2000-06-13 Thread Som Subhra Chakraborty
Dear Sujoy, Pl check ur classpath such settings in jserv gnujsp. Som -- From: Sujoy Kumar Bose[SMTP:[EMAIL PROTECTED]] Reply To: A mailing list about Java Server Pages specification and reference Sent: Tuesday, June 13, 2000 5:52 PM To: [EMAIL PROTECTED] Subject:

Re: mail using JSP

2000-06-12 Thread Som Subhra Chakraborty
Dear Ashish, Try br,p etc. Som -- From: Ashish Bhatia[SMTP:[EMAIL PROTECTED]] Reply To: A mailing list about Java Server Pages specification and reference Sent: Thursday, June 08, 2000 12:08 PM To: [EMAIL PROTECTED] Subject:mail using JSP Hi, In my

OCX

2000-06-08 Thread Som Subhra Chakraborty
Hi All, What is OCX? What is Visual Servlet? TIA, Som === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at:

Visual Servlet

2000-06-07 Thread Som Subhra Chakraborty
Hi All, What is a visual servlet? TIA, Som === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/products/jsp/faq.html

Difference

2000-05-24 Thread Som Subhra Chakraborty
Hi, What r the UML WML? They r markup languages like XML HTML. That's ok. But what's their speciality? TIA, Som === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on

JSP vs. ASP

2000-05-20 Thread Som Subhra Chakraborty
Hi All, Can u please explain clearly each and every difference between jsp asp? TIA, Som === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at:

Mailing

2000-05-19 Thread Som Subhra Chakraborty
Hi All, I have a list of users with links associated with each. I want to send email (with predefined subject message body) to the user whose name is clicked. The person who is clicking will not know anything about that the mail is sent, i.e., no dialog/mail window should appear. How to

No Subject

2000-04-19 Thread Som Subhra Chakraborty
hi! J2EE is nothing but an enhancement on jdk1.2 with more APIs. u have APIs of servlet,mail,sql etc. all much enhanced. EJB is dedicated to a specific purpose, typically to business transaction types. But Beans can be any set of class files developed for any purpose, even games, animation etc.

Re: difference btwn session and page scope

2000-04-19 Thread Som Subhra Chakraborty
session scope exists till the browser is closed. page scope exists till the execution of a page completes. -- From: Arnab Acharya[SMTP:[EMAIL PROTECTED]] Reply To: A mailing list about Java Server Pages specification and reference Sent: Wednesday, April 19, 2000 12:39 PM To:

Re: How to make URL alias for JSP pages ?

2000-04-19 Thread Som Subhra Chakraborty
the ugly '8080' is becoz the jswdk runs at port 8080 by default. change it to 80 by opening webserver.xml replacing port no. from 8080 to 80. if it runs in port 80, u won't have to specify the port no. in URL. also u can change the directory hierarchy by shifting the folder to some other

Re: Request.getParameter

2000-04-14 Thread Som Subhra Chakraborty
Hi Fred, The real syntax is not really: String temp = request.getParameter("anvnamn").toString(); It's even simpler. It's String temp = request.getParameter("anvnamn"); Automatically a string value is returned from request.getParameter(); -- From: Burky Stephane[SMTP:[EMAIL

Re: session and cookies

2000-04-14 Thread Som Subhra Chakraborty
Subhra Chakraborty [SMTP:[EMAIL PROTECTED]] Sent: Thursday, April 13, 2000 2:50 PM To: [EMAIL PROTECTED] Subject: Re: session and cookies Hi, U can maintain a database of names coresponding passwords. Everytime a user logs in, do something like

No Subject

2000-04-13 Thread Som Subhra Chakraborty
U can save data in one jsp call the other. Suppose u save some data in a.jsp wantto use it in b.jsp -- get the values in a.jsp by request.getParameter(), then call b.jsp with the same parameters. -- From: Lakshmi Anantharaman[SMTP:[EMAIL PROTECTED]] Reply To: A mailing list

Re: Heavy-weight context switch

2000-04-13 Thread Som Subhra Chakraborty
Question: Is it possible to put variables, in JSP, outside of the per-request scope, such what we can do the pooling also? Answer: Use scope="session" in the jsp tag Ex: jsp:useBean id="beanName" class="com.companyName.packageName" scope="session"/

Re: session and cookies

2000-04-13 Thread Som Subhra Chakraborty
Hi, U can maintain a database of names coresponding passwords. Everytime a user logs in, do something like, boolean ok = obj.getPassword(loginName,passwd,group); if (ok) //The method returns true if the name matches the passwd allow(); else donotAllow(); -- From:

Re: JSP and Javascript

2000-04-13 Thread Som Subhra Chakraborty
why don't u try HTML meta tag for refresh after say, every 5 sec.? -- From: Cogley, Jonathan[SMTP:[EMAIL PROTECTED]] Reply To: A mailing list about Java Server Pages specification and reference Sent: Wednesday, April 12, 2000 5:38 PM To: [EMAIL PROTECTED] Subject:

Re: Writing XML in JSP file

2000-04-12 Thread Som Subhra Chakraborty
Can u please give a small example code where I've a table printing some values obtained from JSP code in the same .jsp file. What r the corresponding syntax of table,tr,td in HTML when we use XML? -- From: Ritesh Sinha[SMTP:[EMAIL PROTECTED]] Reply To: A mailing list about Java