Free Tomcat Struts loader for more rapid development

2004-05-27 Thread Budi Kurniawan
%/server/classes. The source code and the explanation of how it works are also available so that you can extend the module if you wish. Download site: www.brainysoftware.com Rgds, budi

RE: Can servlet generate a Web page first, then continue to run ?

2004-05-05 Thread Budi Kurniawan
You can use event-listeners. In servlet 2.3 there are two types of events: application- and session-. Servlet 2.4 adds another one request/response-events. This way, you code is much more modular. -Original Message- From: lixiaoquan [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 05,

RE: Form method always a get.

2004-05-04 Thread Budi Kurniawan
You're probably missing the closing quote after the method name: form method=post Rgds, Budi Author of How Tomcat Works -Original Message- From: Adam Gruszynski [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 05, 2004 12:52 PM To: Tomcat Users List Subject: Form method always a get

RE: Form method always a get.

2004-05-04 Thread Budi Kurniawan
Try adding a Submit button to click to submit. If the method is post by submitting this way then there's something wrong with your JavaScript. Good luck. budi Author of How Tomcat Works -Original Message- From: Adam Gruszynski [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 05, 2004 1:03

RE: Form method always a get.

2004-05-04 Thread Budi Kurniawan
Then, it could be your servlet/JSP page. Budi Kurniawan Author of How Tomcat Works -Original Message- From: Adam Gruszynski [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 05, 2004 1:13 PM To: Tomcat Users List Subject: RE: Form method always a get. Did that already with the same

[Ann] How Tomcat Works book -- at 45% discount for direct purchase from publisher

2004-05-03 Thread Budi Kurniawan
How Tomcat Works: A Guide to Developing Your Own Java Servlet Container by Budi Kurniawan and Paul Deck Published by BrainySoftware.com (www.brainysoftware.com) 464 pages, April 2004 ISBN: 0-9752128-0-X US$49.99/A$109.99/C$77.99 How Tomcat Works is the only book that explains the internal

Admin app source code

2004-02-05 Thread Budi Kurniawan
Hi All, Just wondering if the Admin app source code is available somewhere. thanks, budi

Re: Servlet as Welcome File doesn't work

2003-12-01 Thread Budi Kurniawan
Servlet 2.4 (implemented by Tomcat 5) allows you to use a servlet as a welcome file. If you're using Servlet 2.3, here is a trick: - Create a JSP page that forwards to the servlet. - Specify the JSP page as the welcome-file. budi. ---Original Message--- gt; From: SH Solutions lt

Re: RE: JDBC type 4 Driver for MSSQL Server

2003-11-15 Thread Budi Kurniawan
Connector J is a type 4 driver, written by Mark Matthew, who also wrote the popular mm driver when he was a student. Now, he works for Mysql.com. You can find Ms SQL drivers here: http://servlet.java.sun.com/products/jdbc/drivers cheers, budi Author of - How Tomcat Works (sample chapters

Re: RE: How to format number

2003-10-07 Thread budi
;/gt; gives you: 0.33 0.34 0.30 3.33 Don't forget to copy the jstl.jar and standard.jar to your WEB-INF/lib. Also, if you are using Tomcat 4, you can't enjoy the EL expression in the last formatNumber. Hope this helps, budi gt; Lee Chin Khiong wrote: gt; How to format a double

Re: question on creating a file download servlet

2003-06-09 Thread budi
check this out: http://www.fawcette.com/javapro/2002_03/online/online_eprods/servlets_03_08/ budi ---Original Message--- From: Mark W. Webb Subject: question on creating a file download servlet Sent: 09 Jun 2003 19:33:37 I need to write a servlet