Re: Java Applet

2002-03-11 Thread Neo Gigs
The tomcat binaries download for linux. - Original Message - From: Wisma Leader [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, March 12, 2002 12:29 PM Subject: Re: Java Applet OK ..Thank ...which TomCat tools should I download ? Best regards, Wismaleader

Re: Java Applet

2002-03-11 Thread Wisma Leader
Thank you for your Information. Best Regards, WismaLeader - Original Message - From: Neo Gigs [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, March 12, 2002 1:06 PM Subject: Re: Java Applet The tomcat binaries download for linux. - Original Message

How to set Entry Point

2002-03-11 Thread Gurmeet
Hi all, I am new Tomcat user. pls help me how can I define a particular JSP page to be the entry point for my application. Please tell me what all I need to specify in my web.xml. Regards Gurmeet -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED]

sleep in doGet()

2002-03-11 Thread Rahul Asanikar
Hi all, I have successfully integrated Tomcat4 with IIS5 using AJP13 connector... I have a few questions regarding this : 1.When I connect to the servlet from an applet it does so successfully, but AJP13 gives the following error [AJP13] bad read : -103 I could not find anything

Re: How to set Entry Point

2002-03-11 Thread Emir Alikadic
On 3/12/2002 12:53 AM, Gurmeet wrote: Hi all, I am new Tomcat user. pls help me how can I define a particular JSP page to be the entry point for my application. Please tell me what all I need to specify in my web.xml. Regards Gurmeet welcome-file-list

Closing Connections.

2002-03-11 Thread Hari Yellina
Hi All, Is it neccesary for us to close the connetions for the database. Is the java garbage collector gonna do the job for us. If that is not the case please tell me how to close the connections. We have a application containing 800 pages . Every page has a connection open . Do we require to

RE: How to set Entry Point

2002-03-11 Thread Gurmeet
Thanks for response but this does not help me. What I want to do is that all requests to my application be routed through a particular JSP wherein I will exercise access control mechanism. Regards Gurmeet -Original Message- From: Emir Alikadic [mailto:[EMAIL PROTECTED]] Sent: Tuesday,

Re: How to set Entry Point

2002-03-11 Thread Emir Alikadic
On 3/12/2002 1:17 AM, Gurmeet wrote: Thanks for response but this does not help me. What I want to do is that all requests to my application be routed through a particular JSP wherein I will exercise access control mechanism. http://www.tuxedo.org/~esr/faqs/smart-questions.html As for your

Re: how to explixitly close database connections.

2002-03-11 Thread Moi
In the end of Javaservlet script you should close database using close(),because Javaservlet needs manual closing database connection. Here are the Example: con=DriverManager.getConnection(jdbc:postgresql://...); ... ... ... ... con.close(); Hari Yellina wrote: Hi All, We are

Re: How to set Entry Point

2002-03-11 Thread RAYMOND Romain
On 3/12/2002 1:17 AM, Gurmeet wrote: Thanks for response but this does not help me. What I want to do is that all requests to my application be routed through a particular JSP wherein I will exercise access control mechanism. You could look to filters which are only avalaible with

<    1   2