Re: Main class for a struts webapp...

2005-08-06 Thread O. Oke
Noted. I thank you all for your clarification and information. --- Yan Hu <[EMAIL PROTECTED]> wrote: > --- "O. Oke" <[EMAIL PROTECTED]> wrote: > > > Can anyone please tell me where the "main" (public > > static void main...) class of a Strus web > application > > can be found. To put it anot

Re: Main class for a struts webapp...

2005-08-05 Thread Yan Hu
--- "O. Oke" <[EMAIL PROTECTED]> wrote: > Can anyone please tell me where the "main" (public > static void main...) class of a Strus web application > can be found. To put it another way, when I click a > button in an HTML form, which "main" class kick starts > the chain of processing that eventu

Re: Main class for a struts webapp...

2005-08-05 Thread Wendy Smoak
From: "O. Oke" <[EMAIL PROTECTED]> To put it another way, when I click a button in an HTML form, which "main" class kick starts the chain of processing that eventually leads to my action class being executed? The "entry point" for Struts is in the doPost (or doGet) method of org.apache.struts.

Re: Main class for a struts webapp...

2005-08-05 Thread Dave Newton
O. Oke wrote: Can anyone please tell me where the "main" (public static void main...) class of a Strus web application can be found. To put it another way, when I click a button in an HTML form, which "main" class kick starts the chain of processing that eventually leads to my action class bein

Re: Main class for a struts webapp...

2005-08-05 Thread Chad S. Lauritsen
it's somewhere deep inside the servlet container. I think what you need to look at is the action servlet, which is defined in the web.xml in a struts webapp O. Oke wrote: Can anyone please tell me where the "main" (public static void main...) class of a Strus web application can be found. To

Main class for a struts webapp...

2005-08-05 Thread O. Oke
Can anyone please tell me where the "main" (public static void main...) class of a Strus web application can be found. To put it another way, when I click a button in an HTML form, which "main" class kick starts the chain of processing that eventually leads to my action class being executed? Than