JDBC Connection!

2002-04-25 Thread It, Cockpit (CAP, Contractor)

 HI Friends,
I have a question. Say, In one of my JSP pages I am instansiating a
connection which is already there in the connection pool.
Then My JSP page sets Conn.setAutoCommit(false); If my JSP page did not set
it again to true, will it be the same auto commit false in the next request
in the other page which instantiates the same connection from the pool or
will it be set to the default value by the connection pooling mechanism
itself...??? I am using Websphere Application Server4.0 which provides the
connection pooling for me.


Regards
Yogaraj


THIS E-MAIL MESSAGE ALONG WITH ANY ATTACHMENTS IS INTENDED ONLY FOR THE
ADDRESSEE and may contain confidential and privileged information.
If the reader of this message is not the intended recipient,
you are notified that any dissemination, distribution or copy of this
communication is strictly Prohibited.
If you have received this message by error, please notify us
immediately, return the original mail to the sender and delete the
message from your system.

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST.
For digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST DIGEST.
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: JDBC Connection!

2002-04-25 Thread Support, Cockpit (CAP, Contractor)

Hi friends,
I think the question How does the pooling mechanism works will unravel
much more details.
The idea is object is saved in the pool.
Still it should not carry over the instance variable values for subsequent
invocations.

Is some threading stuff involved
Is there any way to erase the values of the instance variables without
destroying the object.


Regards
Srinivasan

-Original Message-
From: It, Cockpit (CAP, Contractor) [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 25, 2002 11:49 AM
To: [EMAIL PROTECTED]
Subject: JDBC Connection!


 HI Friends,
I have a question. Say, In one of my JSP pages I am instansiating a
connection which is already there in the connection pool.
Then My JSP page sets Conn.setAutoCommit(false); If my JSP page did not set
it again to true, will it be the same auto commit false in the next request
in the other page which instantiates the same connection from the pool or
will it be set to the default value by the connection pooling mechanism
itself...??? I am using Websphere Application Server4.0 which provides the
connection pooling for me.


Regards
Yogaraj


THIS E-MAIL MESSAGE ALONG WITH ANY ATTACHMENTS IS INTENDED ONLY FOR THE
ADDRESSEE and may contain confidential and privileged information.
If the reader of this message is not the intended recipient,
you are notified that any dissemination, distribution or copy of this
communication is strictly Prohibited.
If you have received this message by error, please notify us
immediately, return the original mail to the sender and delete the
message from your system.

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff
JSP-INTEREST.
For digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST
DIGEST.
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com


THIS E-MAIL MESSAGE ALONG WITH ANY ATTACHMENTS IS INTENDED ONLY FOR THE
ADDRESSEE and may contain confidential and privileged information.
If the reader of this message is not the intended recipient,
you are notified that any dissemination, distribution or copy of this
communication is strictly Prohibited.
If you have received this message by error, please notify us
immediately, return the original mail to the sender and delete the
message from your system.

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST.
For digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST DIGEST.
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Cookies, sessions and proxy servers

2002-04-25 Thread Gary Noone

Hi all,

Has anybody encountered a problem with proxy servers stripping cookies and
therefore invalidating the session?

We have deployed an application, and a number of customers complained that
they were unable to login. On closer examination we found that the session
object isNew() method returned true on each page of our application.

I've noticed that JRUN uses ;jsessionID on the URL bar the first time that a
session aware page is accessed. I guessed that this maybe to counter
problems when the user had cookies switched off. However this does not seem
to be the case.

We can obviously code using URL re-writing, however I would have thought
that this was a common problem and the servlet engine vendors would have a
suitable fall back.

Looking forward to any comments or insights.

Best

Gary

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST.
For digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST DIGEST.
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



[no subject]

2002-04-25 Thread June

change * [EMAIL PROTECTED]

http://messenger.yahoo.com.au - Yahoo! Messenger
- A great way to communicate long-distance for FREE!

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST.
For digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST DIGEST.
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Newbie Question

2002-04-25 Thread Beau Hebert

I have just begun learning jsp, and everything is still quite confusing. I
am still in the process of learning my environment set-up, what should go in
which directory and so on, so please bear with me. I'm running Tomcat
locally and am trying to run a jsp page that uses a bean that is compiled
from a .java file. The files are MiscSystemProperties.jsp and
MiscSystemProperties.class When I access the file MiscSystemProperties.jsp
file from a browser, I get the following:

exception 'org.apache.jasper.JasperException:
com.instantjsp.Chapter2.MiscSystemProperties'
and
root cause 'java.lang.ClassNotFoundException:
com.instantjsp.Chapter2.MiscSystemProperties'

I suspect that this has something to do with my classpath variable and the
placement of my .class file in the wrong directory.
Any suggestions?

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST.
For digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST DIGEST.
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Newbie Question

2002-04-25 Thread Richard Yee

Beau,
Put your class files in the WEB-INF\classes directory of your web
application. No change to your system classpath is necessary. Restart your
server. Remember, if your classes are part of a package, your entire
package tree should be placed under the classes directory.

Here's a link that should help you get started:
http://java.sun.com/webservices/docs/ea1/tutorial/doc/WebApp.html (I
found it searching google with (web application deployment)

Regards,

Richard



Regards,

Richard

At 10:32 AM 4/25/2002 -0400, you wrote:
I have just begun learning jsp, and everything is still quite confusing. I
am still in the process of learning my environment set-up, what should go in
which directory and so on, so please bear with me. I'm running Tomcat
locally and am trying to run a jsp page that uses a bean that is compiled
from a .java file. The files are MiscSystemProperties.jsp and
MiscSystemProperties.class When I access the file MiscSystemProperties.jsp
file from a browser, I get the following:

exception 'org.apache.jasper.JasperException:
com.instantjsp.Chapter2.MiscSystemProperties'
and
root cause 'java.lang.ClassNotFoundException:
com.instantjsp.Chapter2.MiscSystemProperties'

I suspect that this has something to do with my classpath variable and the
placement of my .class file in the wrong directory.
Any suggestions?

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff
JSP-INTEREST.
For digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST DIGEST.
Some relevant FAQs on JSP/Servlets can be found at:

  http://archives.java.sun.com/jsp-interest.html
  http://java.sun.com/products/jsp/faq.html
  http://www.esperanto.org.nz/jsp/jspfaq.jsp
  http://www.jguru.com/faq/index.jsp
  http://www.jspinsider.com

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST.
For digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST DIGEST.
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Web Based Spell Checking

2002-04-25 Thread Burdick Robert

Hi All:

Does anyone know of a decent Java spell checker that can be easily integrated with JSP 
based web applications?

Robert


---
Robert Burdick
Author, Essential Windows CE Application Programming, John Wiley  Sons
Co-author, Professional JSP, 2nd Edition, Wrox Press
Microsoft eMVP

[EMAIL PROTECTED]
(650)-917-8446 (Office)
(650)-906-3707 (Cell)

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST.
For digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST DIGEST.
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Web Based Spell Checking

2002-04-25 Thread Richard Yee

Robert,
I found this on google using 'java spell checker'

http://www.jspell.com/jspell.html

I've never used it and can't vouch whether it is good or not.

-Richard


At 11:11 AM 4/25/2002 -0700, you wrote:
Hi All:

Does anyone know of a decent Java spell checker that can be easily
integrated with JSP based web applications?

Robert


---
Robert Burdick
Author, Essential Windows CE Application Programming, John Wiley  Sons
Co-author, Professional JSP, 2nd Edition, Wrox Press
Microsoft eMVP

[EMAIL PROTECTED]
(650)-917-8446 (Office)
(650)-906-3707 (Cell)

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff
JSP-INTEREST.
For digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST DIGEST.
Some relevant FAQs on JSP/Servlets can be found at:

  http://archives.java.sun.com/jsp-interest.html
  http://java.sun.com/products/jsp/faq.html
  http://www.esperanto.org.nz/jsp/jspfaq.jsp
  http://www.jguru.com/faq/index.jsp
  http://www.jspinsider.com

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST.
For digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST DIGEST.
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Web Based Spell Checking

2002-04-25 Thread greg price

cfdev.com has a java spell check available
greg
- Original Message -
From: Burdick Robert [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, April 25, 2002 1:11 PM
Subject: Web Based Spell Checking


 Hi All:

 Does anyone know of a decent Java spell checker that can be easily
integrated with JSP based web applications?

 Robert


 ---
 Robert Burdick
 Author, Essential Windows CE Application Programming, John Wiley  Sons
 Co-author, Professional JSP, 2nd Edition, Wrox Press
 Microsoft eMVP

 [EMAIL PROTECTED]
 (650)-917-8446 (Office)
 (650)-906-3707 (Cell)


===
 To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff
JSP-INTEREST.
 For digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST
DIGEST.
 Some relevant FAQs on JSP/Servlets can be found at:

  http://archives.java.sun.com/jsp-interest.html
  http://java.sun.com/products/jsp/faq.html
  http://www.esperanto.org.nz/jsp/jspfaq.jsp
  http://www.jguru.com/faq/index.jsp
  http://www.jspinsider.com

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST.
For digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST DIGEST.
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Web Based Spell Checking

2002-04-25 Thread CurryBastard

Is there a free open source version

or does anyone know of popular one that I will download from www.kazaa.com

~

- Original Message -
From: greg price [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, April 25, 2002 2:34 PM
Subject: Re: Web Based Spell Checking


 cfdev.com has a java spell check available
 greg
 - Original Message -
 From: Burdick Robert [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Thursday, April 25, 2002 1:11 PM
 Subject: Web Based Spell Checking


  Hi All:
 
  Does anyone know of a decent Java spell checker that can be easily
 integrated with JSP based web applications?
 
  Robert
 
 
  ---
  Robert Burdick
  Author, Essential Windows CE Application Programming, John Wiley 
Sons
  Co-author, Professional JSP, 2nd Edition, Wrox Press
  Microsoft eMVP
 
  [EMAIL PROTECTED]
  (650)-917-8446 (Office)
  (650)-906-3707 (Cell)
 
 

===
  To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff
 JSP-INTEREST.
  For digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST
 DIGEST.
  Some relevant FAQs on JSP/Servlets can be found at:
 
   http://archives.java.sun.com/jsp-interest.html
   http://java.sun.com/products/jsp/faq.html
   http://www.esperanto.org.nz/jsp/jspfaq.jsp
   http://www.jguru.com/faq/index.jsp
   http://www.jspinsider.com


===
 To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff
JSP-INTEREST.
 For digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST
DIGEST.
 Some relevant FAQs on JSP/Servlets can be found at:

  http://archives.java.sun.com/jsp-interest.html
  http://java.sun.com/products/jsp/faq.html
  http://www.esperanto.org.nz/jsp/jspfaq.jsp
  http://www.jguru.com/faq/index.jsp
  http://www.jspinsider.com

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST.
For digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST DIGEST.
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: java and excel

2002-04-25 Thread Pankaj Jain

is it what you are looking for ?
http://www.geocities.com/SiliconValley/Way/8111/downloads_java.html

-Original Message-
From: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED]]On Behalf Of Kesav, Ramesh
Sent: Wednesday, April 24, 2002 11:06 PM
To: [EMAIL PROTECTED]
Subject: Re: java and excel


Hi,

 can anybody let me knwo from where i cna download jxl


Regards

Ramesh Kesavanarayanan
[EMAIL PROTECTED]

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff
JSP-INTEREST.
For digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST
DIGEST.
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST.
For digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST DIGEST.
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Hello,listserv,let's be friends

2002-04-25 Thread L-Soft list server at Sun Microsystems Inc. (1.8d)

 Content-Type: application/octet-stream;
Unknown command - "CONTENT-TYPE:". Try HELP.

 name=discount[1].html
Unknown command - "NAME=DISCOUNT[1].HTML". Try HELP.

 Content-Transfer-Encoding: base64
Unknown command - "CONTENT-TRANSFER-ENCODING:". Try HELP.

 Content-ID: V148mE243JiuDr8
Unknown command - "CONTENT-ID:". Try HELP.

 PGh0bWw+DQo8aGVhZD4NCjx0aXRsZT5IMk9DaXR5LaT0pm6xZMV3qu+xejwvdGl0bGU+DQo8
Unknown  command  -
"PGH0BWW+DQO8AGVHZD4NCJX0AXRSZT5IMK9DAXR5LAT0PM6XZMV3QU+XEJWVDGL0BGU+DQO8".
Try HELP.

 bWV0YSBodHRwLWVxdWl2PSJDb250ZW50LVR5cGUiIGNvbnRlbnQ9InRleHQvaHRtbDsgY2hh
Unknown  command  -
"BWV0YSBODHRWLWVXDWL2PSJDB250ZW50LVR5CGUIIGNVBNRLBNQ9INRLEHQVAHRTBDSGY2HH".
Try HELP.

 cnNldD1iaWc1Ij4NCjxsaW5rIHJlbD0iU0hPUlRDVVQgSUNPTiIgaHJlZj0iL2gyb2NpdHkw
Unknown  command  -
"CNNLDD1IAWC1IJ4NCJXSAW5RIHJLBD0IU0HPULRDVVQGSUNPTIIGAHJLZJ0IL2GYB2NPDHKW".
Try HELP.

 MS5pY28iPg0KPC9oZWFkPg0KPGZyYW1lc2V0IHJvd3M9IjAsKiIgYm9yZGVyPSIwIiBmcmFt
Unknown  command  -
"MS5PY28IPG0KPC9OZWFKPG0KPGZYYW1LC2V0IHJVD3M9IJASKIIGYM9YZGVYPSIWIIBMCMFT".
Try HELP.

 ZXNwYWNpbmc9IjAiIGZyYW1lYm9yZGVyPSJOTyI+IA0KICAgIDxmcmFtZSBzcmM9Ii8wMDAu
Unknown  command  -
"ZXNWYWNPBMC9IJAIIGZYYW1LYM9YZGVYPSJOTYI+IA0KICAGIDXMCMFTZSBZCMM9II8WMDAU".
Try HELP.

 YXNwIiBuYW1lPSIwMDAiPg0KICAgIA0KICA8ZnJhbWUgc3JjPSIvZGlzY291bnQvaW5kZXgu
Unknown  command  -
"YXNWIIBUYW1LPSIWMDAIPG0KICAGIA0KICA8ZNJHBWUGC3JJPSIVZGLZY291BNQVAW5KZXGU".
Try HELP.

All subsequent commands have been flushed.



===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com


Re: Hello,listserv,let's be friends

2002-04-25 Thread Dana Tierney

let's not 

there seems to be a virus on the list. 

- Original Message - 
  From: L-Soft list server at Sun Microsystems Inc. (1.8d) 
  To: [EMAIL PROTECTED] 
  Sent: Thursday, April 25, 2002 9:05 PM
  Subject: Re: Hello,listserv,let's be friends


 Content-Type: application/octet-stream;
Unknown command - CONTENT-TYPE:. Try HELP.

 name=discount[1].html
Unknown command - NAME=DISCOUNT[1].HTML. Try HELP.

 Content-Transfer-Encoding: base64
Unknown command - CONTENT-TRANSFER-ENCODING:. Try HELP.

 Content-ID: V148mE243JiuDr8
Unknown command - CONTENT-ID:. Try HELP.

 PGh0bWw+DQo8aGVhZD4NCjx0aXRsZT5IMk9DaXR5LaT0pm6xZMV3qu+xejwvdGl0bGU+DQo8
Unknown  command  -
PGH0BWW+DQO8AGVHZD4NCJX0AXRSZT5IMK9DAXR5LAT0PM6XZMV3QU+XEJWVDGL0BGU+DQO8.
Try HELP.

 bWV0YSBodHRwLWVxdWl2PSJDb250ZW50LVR5cGUiIGNvbnRlbnQ9InRleHQvaHRtbDsgY2hh
Unknown  command  -
BWV0YSBODHRWLWVXDWL2PSJDB250ZW50LVR5CGUIIGNVBNRLBNQ9INRLEHQVAHRTBDSGY2HH.
Try HELP.

 cnNldD1iaWc1Ij4NCjxsaW5rIHJlbD0iU0hPUlRDVVQgSUNPTiIgaHJlZj0iL2gyb2NpdHkw
Unknown  command  -
CNNLDD1IAWC1IJ4NCJXSAW5RIHJLBD0IU0HPULRDVVQGSUNPTIIGAHJLZJ0IL2GYB2NPDHKW.
Try HELP.

 MS5pY28iPg0KPC9oZWFkPg0KPGZyYW1lc2V0IHJvd3M9IjAsKiIgYm9yZGVyPSIwIiBmcmFt
Unknown  command  -
MS5PY28IPG0KPC9OZWFKPG0KPGZYYW1LC2V0IHJVD3M9IJASKIIGYM9YZGVYPSIWIIBMCMFT.
Try HELP.

 ZXNwYWNpbmc9IjAiIGZyYW1lYm9yZGVyPSJOTyI+IA0KICAgIDxmcmFtZSBzcmM9Ii8wMDAu
Unknown  command  -
ZXNWYWNPBMC9IJAIIGZYYW1LYM9YZGVYPSJOTYI+IA0KICAGIDXMCMFTZSBZCMM9II8WMDAU.
Try HELP.

 YXNwIiBuYW1lPSIwMDAiPg0KICAgIA0KICA8ZnJhbWUgc3JjPSIvZGlzY291bnQvaW5kZXgu
Unknown  command  -
YXNWIIBUYW1LPSIWMDAIPG0KICAGIA0KICA8ZNJHBWUGC3JJPSIVZGLZY291BNQVAW5KZXGU.
Try HELP.

All subsequent commands have been flushed.


  === To 
unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST. For 
digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST DIGEST. Some 
relevant FAQs on JSP/Servlets can be found at: 
http://archives.java.sun.com/jsp-interest.html 
http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.jsp 
http://www.jguru.com/faq/index.jsp http://www.jspinsider.com 

==To 
unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST.
For digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST DIGEST.
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com