Re: JSP working but Servlets not working

2002-09-22 Thread Duane Morse
I think you also need something like the following in web.xml /HelloWorldServlet HelloWorldServlet -Original Message- From: Manoj Kithany [mailto:[EMAIL PROTECTED]] Sent: Sunday, September 22, 2002 11:45 AM To: [EMAIL PROTECTED] Subject: JSP working but Servlets not working H

Re: Request time out problem........

2002-03-18 Thread Duane Morse
l the real thing is ready. Duane Morse, Eldorado Computing Inc., Phoenix, Arizona -Original Message- From: ShriKant Vashishtha [mailto:[EMAIL PROTECTED]] Sent: Sunday, March 17, 2002 11:29 PM To: [EMAIL PROTECTED] Subject: Request time out problem Hi All, At present I am

Re: Leaving the JSP page

2002-02-28 Thread Duane Morse
This sort of client-side work requires having your JSP include JavaScript on the page. -Original Message- From: sanjib B [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 28, 2002 12:01 PM To: [EMAIL PROTECTED] Subject: Leaving the JSP page Hi All, In my JSP page I have some editable

Re: JRUN x XML - another newbie question.

2002-02-15 Thread Duane Morse
JRun already has jaxp.jar and parser.jar in the lib/ext directory. If you want to use a different (or even merely a later) set of XML routines, you probably need to back the standard ones out and put the new ones in this directory to avoid version and compatibility problems. Duane Morse

Re: JSP as XML document

2002-02-15 Thread Duane Morse
This may not be the problem you're facing, but it's worth checking out. The servlet container may have its own XML jar files, so there could be a conflict between what you used to generate the .class files and the actual XML classes that are loaded by the container. Duane Morse

Re: The usage of Vector vs ArrayList

2001-12-23 Thread Duane Morse
You need to take the performance reports with a grain of salt; typically synchronized classes are 10-30% slower than the equivalent unsynchronized ones, but you might be talking about 1000ms for 100 operations vs. 1300ms, Unless your program is going to be hitting those classes an awful lot, t

Re: thread sleep between jsp includes

2001-12-14 Thread Duane Morse
Try flushing the output before going to sleep. Duane Morse, Eldorado Computing Inc., Phoenix, Arizona -Original Message- From: Kam Premkumar [mailto:[EMAIL PROTECTED]] Sent: Friday, December 14, 2001 10:46 AM To: [EMAIL PROTECTED] Subject: thread sleep between jsp includes please

Re: Jrun vs Tomcat

2001-10-05 Thread Duane Morse
looking around that JRun is one of the cheapest servlet containers you can buy, though obviously the free ones are cheaper. Duane Morse, Eldorado Computing Inc., Phoenix, Arizona -Original Message- From: Hari Yellina [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 04, 2001 4:34 AM To

Re: Include tag in a conditional statement works ??

2001-09-13 Thread Duane Morse
I think you have to drop out of JSP script before the include directive and the drop back in before the else statement, such as if (flag == 1) %> <%@ include file="a.jsp" %> <% else if (flag == 2) ... -Original Message- From: Warty, Koustubh [mailto:[EMAIL PROTECTED]] Sent: Thursday, Sept

Re: Javascript that Refresh when open a new window

2001-08-21 Thread Duane Morse
Add a variable to the URL with a random number as the argument; that will force the browser to fetch a new copy of the page, and it gets around most caching problems. -Original Message- From: Orozco, Juan Carlos [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 21, 2001 9:24 AM To: [EMAIL

Re: No Cache on JSP Page

2001-07-30 Thread Duane Morse
Add a small amount of JavaScript to append a URL variable having a random number value each time the submit button is pressed. Duane Morse, Eldorado Computing Inc., Phoenix, Arizona -Original Message- From: Pepper, Josh [mailto:[EMAIL PROTECTED]] Sent: Monday, July 30, 2001 12:58 PM To

Re: response.sendRedirect(...) is taking page from cache

2001-06-19 Thread Duane Morse
Try adding a URL variable which has a random number as a value -- that's the standard way to get around caching problems (I'm sorry to say). -Original Message- From: St. Louis, Thomas (CRD) [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 19, 2001 12:13 PM To: [EMAIL PROTECTED] Subject: res

Re: Hidden field NULL values after POST

2001-04-12 Thread Duane Morse
Are you setting the value with JavaScript? Your HTML declaration doesn't have a VALUE attribute. If that's the case, look carefully at the circumstances under which the JavaScript is executed. -Original Message- From: Willy LEGIMAN [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 12, 20

Re: JSP Vs Servlet

2001-04-11 Thread Duane Morse
get a JSP to compile and run than a servlet -- there's more scope for dropping an angle bracket, mistyping a custom tag, missing the closing tag, and so on, and some of these errors aren't caught until you try to run the JSP. Duane Morse, Eldorado Computing Inc., Phoenix AZ -Origin