Re: JSP vs Servlets...

2000-12-21 Thread Ted Husted
On 12/20/2000 at 5:39 PM Rui Oliveira wrote: > can someone tell me which one is best: JSP or [regular] Servlets? All JSPs are actually servlets, and the JSP file is really just another way to Java source. The container (or one of its helpers) compiles them into servlets as needed, and then execu

Re: JSP vs Servlets...

2000-12-20 Thread Dave Smith
uot; <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, December 20, 2000 11:39 AM Subject: JSP vs Servlets... > Hello, > > can someone tell me which one is best: JSP or Servlets? > > Is there a reason (beside implementatio reasons) to choose one instead > of the other? > > > Thx in advance > Rui >

Re: JSP vs Servlets...

2000-12-20 Thread Rui Oliveira
Hello, Joe Laffey wrote: [EMAIL PROTECTED]">On Wed, 20 Dec 2000, Rui Oliveira wrote: can someone tell me which one is best: JSP or Servlets?Is there a reason (beside implementatio reasons) to choose one insteadof the other? Speed... Servlets are faster. They are especially faster if you use

RE: JSP vs Servlets...

2000-12-20 Thread John de la Garza
. Just my opinion... -Original Message- From: Rui Oliveira [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 20, 2000 9:40 AM To: [EMAIL PROTECTED] Subject: JSP vs Servlets... Hello, can someone tell me which one is best: JSP or Servlets? Is there a reason (beside implementatio r

Re: JSP vs Servlets...

2000-12-20 Thread Joe Laffey
On Wed, 20 Dec 2000, Rui Oliveira wrote: > can someone tell me which one is best: JSP or Servlets? > > Is there a reason (beside implementatio reasons) to choose one instead > of the other? Speed... Servlets are faster. They are especially faster if you use a ServletOutputStream instead of a Writ

RE: JSP vs Servlets...

2000-12-20 Thread Kitching Simon
esday, December 20, 2000 6:40 PM > To: [EMAIL PROTECTED] > Subject: JSP vs Servlets... > > Hello, > > can someone tell me which one is best: JSP or Servlets? > > Is there a reason (beside implementatio reasons) to choose one instead > of the other? > > > Thx in advance > Rui

Re: JSP vs Servlets...

2000-12-20 Thread Neal Dawson - personal account
JSP's are easier to write. You can also have your Web nerds design the pages; then you can plug in your jsp tags. pretty cool. N -- Neal Dawson Office of the Legislative Auditor [EMAIL PROTECTED] --

RE: JSP vs Servlets...

2000-12-20 Thread Kopytkovskiy, Leon
Title: RE: JSP vs Servlets... I would suggest to use both. JSP helps to isolate visual interface (html code) from Middle tier that could be implemented using Servlets. Then Servlets could call your components (JavaBeans) to access email system, database,... The implemetation scheme could be

Re: JSP vs Servlets...

2000-12-20 Thread Steve Ruby
ervlets for business logic and something JSP (or some other template language) in conjunction with servlets for layout and small time code.. So you can't really compare JSP vs servlets, they should be used together depending on the application.

Re: JSP vs Servlets...

2000-12-20 Thread Edilmar Alves
I think JSP + Servlet combination is the ideal to really implement a three-tier system like: 1) User interface => HTML+JSP 2) Business logic => Servlet 3) Database => someone I had used only Servlets and my code was strange, with HTML code into Java servlet code, and now I have had migrating all c

JSP vs Servlets...

2000-12-20 Thread Rui Oliveira
Hello, can someone tell me which one is best: JSP or Servlets? Is there a reason (beside implementatio reasons) to choose one instead of the other? Thx in advance Rui