Re: Servlet bug??

2001-04-24 Thread estutes
On 24 Apr, Larry Isaacs wrote: Hi, Normally you should post questions like this to [EMAIL PROTECTED] As for the problem, in your Servlet you can override init() or init(ServletConfig config). If you override init(ServletConfig config), you must call super.init(config) in your method.

Servlet bug??

2001-04-23 Thread estutes
I have tested this problem on both tomcat-3.2.2 and tomcat-4.0-b3. Here is a jsp that works just fine. !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN %@ page language=java session=true % %@ page import=java.io.*,java.util.* % html head titleTest/title /head body

Re: how do I create a WAR file?

2001-04-17 Thread estutes
On 16 Apr, Derek Harding wrote: Are there any examples of how to create a WAR file? There is a war target available in ant-1.3. Here is the one from my project. !-- == DIST: Create XXX.war file === -- target name="dist-war"

Re: RE: how do I create a WAR file?

2001-04-17 Thread estutes
On 17 Apr, Derek Harding wrote: yes exactly thanks. What is the difference using the java tool instead of the Ant tool? I don't know exactly what you mean by the java tool, but Ant is similar to the unix program make(1). It knows about special things that java web applications need. Such as

Re: cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/modules/session SessionIdGenerator.java

2001-04-11 Thread estutes
On 11 Apr, Bojan Smojver wrote: [EMAIL PROTECTED] wrote: Given that tomcat should run for days or weeks at a time, I don't think you want to keep /dev/random open. There maybe other processes that also need random data during that time. Are you really sure that other processes are unable

Re: cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/modules/session SessionIdGenerator.java

2001-04-10 Thread estutes
On 10 Apr, Bojan Smojver wrote: [EMAIL PROTECTED] wrote: The patch allows systems that have /dev/random to use it instead of the slower Random. Instead of checking for OS==linux ( as in submited patch ) we use an option of the module. Cool. The code if the option