Chanh Le is out of the office.

2008-02-07 Thread Chanh Le
I will be out of the office starting  02/02/2008 and will not  return until
02/19/2008. If you need immediate assistance, please contact Murali
Bharathan at 818-575-1500 or internally at 578-4304.

Please contact Murali Bharathan or Kathy Ragatz for AS400 issues.

Thanks.
CL



==

Confidentiality Notice: The information contained in and transmitted with this 
communication is strictly confidential, is intended only for the use of the 
intended recipient, and is the property of Countrywide Financial Corporation or 
its affiliates and subsidiaries.  If you are not the intended recipient, you 
are hereby notified that any use of the information contained in or transmitted 
with the communication or dissemination, distribution, or copying of this 
communication is strictly prohibited by law.  If you have received this 
communication in error, please immediately return this communication to the 
sender and delete the original message and any copy of it in your possession.

==

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".

Some relevant archives, FAQs and Forums on JSPs can be found at:

 http://java.sun.com/products/jsp
 http://archives.java.sun.com/jsp-interest.html
 http://forums.java.sun.com
 http://www.jspinsider.com


Chanh Le is out of the office.

2005-01-18 Thread Chanh Le
I will be out of the office starting 1/17/2005 and will not return until
2/7/2005.

I am on vacation and back on 02/07/2005. Please contact Paul Bambah and
Ravindra Dabbiru for AS400 issues. Thanks.

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".

Some relevant archives, FAQs and Forums on JSPs can be found at:

 http://java.sun.com/products/jsp
 http://archives.java.sun.com/jsp-interest.html
 http://forums.java.sun.com
 http://www.jspinsider.com


Re: SV: Controller servlet

2004-03-15 Thread Chanh Le
I attempt to down load Strut.  But when I got to the down load page, I was
confused which one should I down load.

Thanks,
CL

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".

Some relevant archives, FAQs and Forums on JSPs can be found at:

 http://java.sun.com/products/jsp
 http://archives.java.sun.com/jsp-interest.html
 http://forums.java.sun.com
 http://www.jspinsider.com


Re: Tabindex

2002-06-13 Thread Chanh Le

It is an unsual note.

CL





"L-Soft list server at Sun Microsystems Inc. (1.8d)"
<[EMAIL PROTECTED]>
Sent by: "A mailing list about Java Server Pages specification and
reference" <[EMAIL PROTECTED]>
06/13/2002 01:05 AM
Please respond to "A mailing list about Java Server Pages specification
and reference"


To: [EMAIL PROTECTED]
cc:
Subject:Re: Tabindex



>   Virus Warning Message (on gate)  
Unknown command - "". Try HELP.

> Found virus PE_CIH.1003 in file class.bat
Unknown command - "FOUND". Try HELP.

> Found virus WORM_KLEZ.H in file class.bat
Unknown command - "FOUND". Try HELP.

> The uncleanable file is deleted.
Unknown command - "THE". Try HELP.

> If you have questions, Please contact ISD.
Unknown command - "IF". Try HELP.

> -
Unknowncommand   -
"-". Try HELP.


===
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: File not found??? - Thanks

2002-04-17 Thread Chanh Le

String myPath
=getServletConfig().getServletContext().getRealPath("/WEB-INF/files/myfile01.txt");
br = new BufferedReader(new FileReader(path));

The above statements work fine.

Thanhks,
CL

===
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



File not found???

2002-04-17 Thread Chanh Le

I have a file   D:\tomcat4.0/webapps/myroot/WEB-INF/files/myfile01.txt


A/   If I try to open file01.txt on the command line, it is ok.
D:\tomcat4.0/webapps/myroot/WEB-INF/classes>java  MyApp  files/myfile01.txt


B/  However, I have problem when running a servlet,
D:\tomcat4.0/webapps/myroot/WEB-INF/classes/MyServlet.class

http://myserver:8080/myroot/servlet/MyServlet

1/  I can list all  the files in D:\tomcat4.0\webapps\myroot\WEB-INF\files

2/  I can not open this file;  I get error message to open
java.io.FileNotFoundException: /WEB-INF/files/file01.txt (The system
cannot find the path specified)

I try to open unsuccessful with
br = new BufferedReader(new FileReader("/WEB-INF/files/file01.txt "));
br = new BufferedReader(new FileReader("WEB-INF/files/file01.txt "));


Thanks,
CL

===
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



Class variable sharing in a servlet

2002-03-13 Thread Chanh Le

Multiple clients invoke the same servlet, they share global (class)
variables.  Does each client's invocation run in a different thread
simultanously or sequentially?

Thanks,
CL

===
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: Static variables

2002-02-05 Thread Chanh Le

Could you let me know how many JVM is loaded in each application server
such as Tomcat, Jrun, or Websphere.  It seems only one JVM for sharing
objects.


Thanks,
CL





Nils Janson <[EMAIL PROTECTED]>
Sent by: A mailing list about Java Server Pages specification and
reference <[EMAIL PROTECTED]>
02/04/2002 06:25 PM
Please respond to A mailing list about Java Server Pages specification and
reference


To: [EMAIL PROTECTED]
cc:
Subject:Re: Static variables


yes
- Original Message -
From: "Gardner Monte" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, February 04, 2002 5:29 PM
Subject: Static variables


> Hypothetical situation:
>   Say I have a class called Market as such
>
> Class Market
> {
>   static int price = 5;
> }
>
> and I have two different users using JSP pages that access the
> class Market.  If user A runs a JSP page that causes the Market.price
> variable to change, then shortly afterwards, User B runs a page that
> displays the value of Market.price, will the change that user A made be
> reflected on User B's page?
>
> --Monte Glenn Gardner
>
>
===
> 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