RE: Servlets!! Servlets!!

2001-08-20 Thread Wang, Jianming
where do you put your servlet class? -Original Message- From: Jagadish Gopi [mailto:[EMAIL PROTECTED]] Sent: Monday, August 20, 2001 12:32 PM To: '[EMAIL PROTECTED]' Subject: Servlets!! Servlets!! Hi Everyone, I have followed the Tomcat Documentation and have deployed my web

Absolute URL

2001-08-09 Thread Wang, Jianming
Hi, Is there a way to know a resource's absolute URL? I have a image, say img1.gif. I want to reference it using http://www.something:port/appName/graphics/img1.gif in jsp page. How can I get all these information to create the url? I use tomcat 3.2 and it doesn't support

How to handle this.

2001-07-30 Thread Wang, Jianming
Hi everybody, I have an web application and I want to handle the event of user's clicking on the Back button. Does anybody know how to do it? Thanks in advance. JW.

RE: How to handle this.

2001-07-30 Thread Wang, Jianming
Do you know how? -Original Message- From: Tsinwah Lee [mailto:[EMAIL PROTECTED]] Sent: Monday, July 30, 2001 2:57 PM To: [EMAIL PROTECTED] Subject: Re: How to handle this. Yo ucan use javaScript to do that. Wang, Jianming wrote: Hi everybody, I have an web application and I

Double Click

2001-07-18 Thread Wang, Jianming
Hi, I have an hyperlink, when user click on it, it will update the database. My question is how can I deal with the case when user double click on the link? Thank you in advance for your help. JW.

RE: Double Click

2001-07-18 Thread Wang, Jianming
the request has got to the server (and the DB updated), but before the response gets to them. In this case, you'd want to ignore the second request. This then should be easy: if you find the data already updated in the DB, then do nothing. Un saludo, Alex. Wang, Jianming wrote: Hi, I have

Excel to XML

2001-03-16 Thread Wang, Jianming
Hi, everybody. Does any one know how to convert MS Excel file to XML file using Java? Thanks Jianming Wang

RE: Excel to XML

2001-03-16 Thread Wang, Jianming
Do you think I can odbc connection to Excel file? I am not using MS Access but using MS Excel. My project is to automatically convert all downloaded Excel files into XML using Java. I can not find any tool for this. -Original Message- From: Michael Wentzel [mailto:[EMAIL PROTECTED]]

RE: ADMIN HELP TO UNREGISTER

2001-03-06 Thread Wang, Jianming
type "unsubscribe" in the subject. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 06, 2001 11:16 AM To: [EMAIL PROTECTED] Subject: Re: ADMIN HELP TO UNREGISTER I also need to be unregistered On Tue, 6 Mar 2001 10:39:48 -0500, [EMAIL

ajp12 or ajp13

2001-02-28 Thread Wang, Jianming
Hello, I have configed Apache to work with Tomcat. However, in the mod_jk.conf-auto file, it still uses JkMount /example/servlet/* ajp12, even I already configed Apache to use ajp13. Why tomcat still use ajp12? Could you please give me a help? Thank you in advance. Jianming Wang

RE: Please help

2001-02-15 Thread Wang, Jianming
You should start tomcat first and then Apache server. -Original Message- From: CPC Livelink Admin [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 15, 2001 4:06 PM To: [EMAIL PROTECTED] Subject: RE: Please help somebody is. Run netstat -a and examine the results. -Original

RE: Connection/Session question

2001-02-09 Thread Wang, Jianming
for the session or form your URL to include the sessionid your applet will not join an already existing session. Instead a new one will be formed. Randy -Original Message- From: Wang, Jianming [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 08, 2001 10:59 AM To: '[EMAIL PROTECTED]' Subject

Connection/Session question

2001-02-08 Thread Wang, Jianming
Hello, I have a question: - If I have a page containing a applet and some other HTML content, and the applet uses a URLConnection to connect to the web server. In this case, how many connections/sessions I have? 2 connections? one from the page itself and one from the applet? Could any

Session question

2001-02-08 Thread Wang, Jianming
Hello, I have a question: - If I have a page containing a applet and some other HTML content, and the applet uses a URLConnection to connect to the web server. In this case, how many connections/sessions I have? 2 connections? one from the page itself and one from the applet? Could any

RE: problem with tomcat and javamail

2001-02-07 Thread Wang, Jianming
Did you give the code permission in the security file to connect to the specific host and port? -Original Message- From: Rich Catlett [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 07, 2001 12:51 PM To: [EMAIL PROTECTED] Subject: problem with tomcat and javamail I am running

RE: Speeding up database accesses

2001-02-05 Thread Wang, Jianming
Write a connectionpool as a bean and give it the scope of application. -Original Message- From: John Coonrod [mailto:[EMAIL PROTECTED]] Sent: Monday, February 05, 2001 4:19 PM To: [EMAIL PROTECTED] Subject: Speeding up database accesses I would like to leave my oracle database

RE: Speeding up database accesses

2001-02-05 Thread Wang, Jianming
The following book helps, I think. http://www.amazon.com/exec/obidos/ASIN/1884777996/qid=981408589/sr=2-2/ref=s c_b_2/107-2595562-5791743 -Original Message- From: John Coonrod [mailto:[EMAIL PROTECTED]] Sent: Monday, February 05, 2001 4:27 PM To: [EMAIL PROTECTED] Subject: RE: Speeding

RE: Using a servlet as default entry point instead of index.html ?

2001-01-31 Thread Wang, Jianming
I think you can set that servlet class in the welcome-file in web.xml -Original Message- From: Rikard Skogberg [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 31, 2001 10:50 AM To: [EMAIL PROTECTED] Subject: Using a servlet as default entry point instead of index.html ? Hi I have

String has been trancated.

2001-01-31 Thread Wang, Jianming
Hello, everybody. We encounter a problem: we use "FORM" to send data back to tomcat. one of the values in the FORM has the format like this: id=AB12#DD. At server side, we use request.getParameter(id) to get the value. The value we get back, however, is AB12. The rest of content (after #

RE: String has been trancated.

2001-01-31 Thread Wang, Jianming
that need to be URLencoded when passed this way. You need to do something like this: input type=text value="%=java.net.URLEncoder.encode(id)%" Don't forget to import this class. Clyde Danganan -Original Message- From: Wang, Jianming [mailto:[EMAIL PROTECTED]] Sent: Wednesday, Ja

RE: sun/tools/javac/Main

2001-01-18 Thread Wang, Jianming
It seems that your jsp file can not be found. Where you put your jsp file? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 18, 2001 9:06 AM To: [EMAIL PROTECTED] Subject: sun/tools/javac/Main Hello, I have a strange error during an access

RE: file protection

2001-01-16 Thread Wang, Jianming
Use Java Security APIs. It's easy to implement. -Original Message- From: Carlos [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 16, 2001 12:29 PM To: [EMAIL PROTECTED] Subject: file protection in a web a want to protect a file. if a user invoques the file it must to ask the

RE: Clarification

2001-01-12 Thread Wang, Jianming
In order to use class C, you have to import the package which the class C belongs to. So the order of the import determines which class C is used. -Original Message- From: Samson, Lyndon [IT] [mailto:[EMAIL PROTECTED]] Sent: Friday, January 12, 2001 9:58 AM To: '[EMAIL PROTECTED]'

RE: Compiling .java to .class

2001-01-12 Thread Wang, Jianming
use Build -Original Message- From: Mick Sullivan [mailto:[EMAIL PROTECTED]] Sent: Friday, January 12, 2001 11:15 AM To: [EMAIL PROTECTED] Subject: Compiling .java to .class This is probably an easy question, but how do you compile a .java file in Jbuilder to a .class file?

RE: CLASSPATH trouble

2001-01-04 Thread Wang, Jianming
There are two places you can put your classes. 1. someapp/WEB-INF/classes/ put your class files (including their package structure) directly under this "classes" folder. 2. someapp/WEB-INF/lib/ if your classes are in a jar file, put the jar file directly under this "lib" folder. Hope this

RE: tomcat.log file not found

2000-12-04 Thread Wang, Jianming
I met the same problem. I don't have tomcat.log either. -Original Message- From: Panagiotis Konstantinidis [mailto:[EMAIL PROTECTED]] Sent: Monday, December 04, 2000 9:35 AM To: '[EMAIL PROTECTED]' Subject: RE: tomcat.log file not found Ok, but am I supposed to have a file called

Testing tool

2000-11-22 Thread Wang, Jianming
Hi, everybody. We have a Web application beta version. We want to find tools to test how many users can concurrently use this application, when the application performance slow down while users' amount increasing, etc.. In a word, we need a tool to do loading test. Certainly, at current

Testing Tools

2000-11-21 Thread Wang, Jianming
Hi, everybody. We have a Web application beta version. We want to find tools to test how many users can concurrently use this application, when the application performance slow down while users' amount increasing, etc.. Certainly, at current stage, we don't want to spend money on testing