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]
Troubles with the list: mailto:[EMAIL PROTECTED]




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
   welcome-fileindex.jsp/welcome-file
   welcome-fileindex.wml/welcome-file
   welcome-fileindex.html/welcome-file
/welcome-file-list


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




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, March 12, 2002 11:40 AM
To: Tomcat Users List
Subject: Re: How to set Entry Point


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
   welcome-fileindex.jsp/welcome-file
   welcome-fileindex.wml/welcome-file
   welcome-fileindex.html/welcome-file
/welcome-file-list


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




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 actual problem, you'll probably need to redesign your application 
to use what's known as MVC architecture.  If your application hasn't been 
designed with central dispatcher, I can't see how web.xml can help.


Emir.

 
 Regards
 Gurmeet
 
 -Original Message-
 From: Emir Alikadic [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, March 12, 2002 11:40 AM
 To: Tomcat Users List
 Subject: Re: How to set Entry Point
 
 
 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
welcome-fileindex.jsp/welcome-file
welcome-fileindex.wml/welcome-file
welcome-fileindex.html/welcome-file
 /welcome-file-list


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




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 servelt 2.3
(TC 4)

 http://www.tuxedo.org/~esr/faqs/smart-questions.html
 
 As for your actual problem, you'll probably need to redesign your application
 to use what's known as MVC architecture.  If your application hasn't been
 designed with central dispatcher, I can't see how web.xml can help.
 
 Emir.
 
 
  Regards
  Gurmeet
 
  -Original Message-
  From: Emir Alikadic [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, March 12, 2002 11:40 AM
  To: Tomcat Users List
  Subject: Re: How to set Entry Point
 
 
  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
 welcome-fileindex.jsp/welcome-file
 welcome-fileindex.wml/welcome-file
 welcome-fileindex.html/welcome-file
  /welcome-file-list
 
 --
 To unsubscribe:   mailto:[EMAIL PROTECTED]
 For additional commands: mailto:[EMAIL PROTECTED]
 Troubles with the list: mailto:[EMAIL PROTECTED]

--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]