[java ee programming] Re: SERVLET and JP

2009-02-12 Thread arbi nabil
okey ... thanks all for your help Regards Nabil 2009/2/11 varun sikka > Hi nabil, > > It is usually easy to handle the design and development separately when you > create the Servlet and jsp separately.. > > For eg. you create jsp for html designing and servlet for handling the > business logic.

[java ee programming] Re: SERVLET and JP

2009-02-11 Thread varun sikka
Hi nabil, It is usually easy to handle the design and development separately when you create the Servlet and jsp separately.. For eg. you create jsp for html designing and servlet for handling the business logic.. although you can integrate both, but it will not be easy to handle the design and b

[java ee programming] Re: SERVLET and JP

2009-02-11 Thread Pravin Sinha
get relevant option. Pravin --- On Wed, 11/2/09, FARRUKH KHAN wrote: From: FARRUKH KHAN Subject: [java ee programming] Re: SERVLET and JP To: pks_chen...@yahoo.com, arbi.na...@gmail.com, artashes.hovasap...@gmail.com Cc: java-ee-j2ee-programming-with-passion@googlegroups.com Date: Wednesday, 11 Febru

[java ee programming] Re: SERVLET and JP

2009-02-11 Thread Artashes Hovasapyan
> -Pravin > > --- On *Tue, 10/2/09, Artashes Hovasapyan > *wrote: > > From: Artashes Hovasapyan > Subject: [java ee programming] Re: SERVLET and JP > To: arbi.na...@gmail.com > Cc: java-ee-j2ee-programming-with-passion@googlegroups.com > Date: Tuesday, 10 February, 2009, 4:46

[java ee programming] Re: SERVLET and JP

2009-02-10 Thread FARRUKH KHAN
Tue, 10/2/09, Artashes Hovasapyan wrote: From: Artashes Hovasapyan Subject: [java ee programming] Re: SERVLET and JP To: arbi.na...@gmail.com Cc: java-ee-j2ee-programming-with-passion@googlegroups.com Date: Tuesday, 10 February, 2009, 4:46 PM When your JSP page is about to serve the request it

[java ee programming] Re: SERVLET and JP

2009-02-10 Thread Pravin Sinha
Adding to what Artashes already told. This translation, compilation and instantiation of the servlet is done by the container itself. -Pravin --- On Tue, 10/2/09, Artashes Hovasapyan wrote: From: Artashes Hovasapyan Subject: [java ee programming] Re: SERVLET and JP To: arbi.na...@gmail.com Cc

[java ee programming] Re: SERVLET and JP

2009-02-10 Thread Artashes Hovasapyan
When your JSP page is about to serve the request it is first translated into Servlet code, then compiled and finally run. So you'll always have one Servlet per JSP page. -- Regards, Artashes Hovasapyan On Tue, Feb 10, 2009 at 8:04 PM, arbi nabil wrote: > Hi all > Hope u're doing well... > I ju