The new JSP 1.3 and Servlet 2.3 specs have brought about changes aimed at fixing rough spots, improving custom tags, better tool Support, and an improved features in the programming model for Servlets. Duane Fields (co-author of Web Development with JSP) summarizes the important changes in a recent article.
Read The Presentation Layer
Java Server Pages update.
-
Whats new in the JSP 1.2 and Servlet 2.3 specs? (8 messages)
- Posted by: Floyd Marinescu
- Posted on: August 29 2001 11:39 EDT
Threaded Messages (8)
- Whats new in the JSP 1.2 and Servlet 2.3 specs? by Peter Nelson on August 29 2001 11:44 EDT
- Whats new in the JSP 1.2 and Servlet 2.3 specs? by dan daly on August 29 2001 11:51 EDT
- Whats new in the JSP 1.2 and Servlet 2.3 specs? by Kumar Mettu on August 29 2001 17:51 EDT
- Whats new in the JSP 1.2 and Servlet 2.3 specs? by Juergen Hoeller on August 30 2001 03:47 EDT
- Whats new in the JSP 1.2 and Servlet 2.3 specs? by Niles Ho on August 31 2001 07:32 EDT
- Whats new in the JSP 1.2 and Servlet 2.3 specs? by Kumar Mettu on August 30 2001 16:39 EDT
- Whats new in the JSP 1.2 and Servlet 2.3 specs? by Juergen Hoeller on August 30 2001 03:47 EDT
- Whats new in the JSP 1.2 and Servlet 2.3 specs? by Richard Vowles on August 30 2001 18:13 EDT
- Whats new in the JSP 1.2 and Servlet 2.3 specs? by smallufo huang on August 30 2001 18:47 EDT
-
Whats new in the JSP 1.2 and Servlet 2.3 specs?[ Go to top ]
- Posted by: Peter Nelson
- Posted on: August 29 2001 11:44 EDT
- in response to Floyd Marinescu
Rexip AppServer and Servletexec claim to have already implemented JSP 1.2 and Servlet 2.3 specs. Is the latest version of JRun up-to-date? How about Tomcat?
-
Whats new in the JSP 1.2 and Servlet 2.3 specs?[ Go to top ]
- Posted by: dan daly
- Posted on: August 29 2001 11:51 EDT
- in response to Peter Nelson
How do you know if the claims are valid? How do you test for compliance? -
Whats new in the JSP 1.2 and Servlet 2.3 specs?[ Go to top ]
- Posted by: Kumar Mettu
- Posted on: August 29 2001 17:51 EDT
- in response to Floyd Marinescu
Tomcat4.0Beta7 support servlet2.3 and JSP1.2 PFD3 (Yet to be updated on sun site as it still has only PFD2).
Kumar. -
Whats new in the JSP 1.2 and Servlet 2.3 specs?[ Go to top ]
- Posted by: Juergen Hoeller
- Posted on: August 30 2001 03:47 EDT
- in response to Kumar Mettu
Resin 2.0 from Caucho supports Servlet 2.3 and JSP 1.2 and had its FCS release in June 2001. So I guess Resin was the first commercial implementation of Servlet 2.3/JSP 1.2.
The only other final releases of Servlet 2.3/JSP 1.2 (PFD) compliant engines are AFAIK:
- ServletExec 4.0;
- BEA WebLogic 6.1.
The status of some other engines:
- Tomcat 4.0: still in beta;
- Rexip 1.08: still in beta;
- Orion 1.5.2: Servlet 2.3, but only JSP 1.1;
- JRun 3.1: only Servlet 2.2/JSP 1.1;
- iPlanet Web Server 6.0: only Servlet 2.2/JSP 1.1.
Has anybody more or updated information on this issue?
Juergen -
Whats new in the JSP 1.2 and Servlet 2.3 specs?[ Go to top ]
- Posted by: Niles Ho
- Posted on: August 31 2001 07:32 EDT
- in response to Juergen Hoeller
Juergen,
We are ready to release the commercial edition next week. Beyond mere Servlet and JSP, Rexip AppServer comes with many features only available in high-end app servers. The pricing will be quite compelling.
- Niles
www.rexip.com
-
Whats new in the JSP 1.2 and Servlet 2.3 specs?[ Go to top ]
- Posted by: Kumar Mettu
- Posted on: August 30 2001 16:39 EDT
- in response to Kumar Mettu
I beleive Tomcat is in BETA because Servlet2.3 and JSP1.2 is not final yet. From what I understood from tomcat mailing lists, Tomcat4 will be final coinciding with Spec going final.
Kumar. -
Whats new in the JSP 1.2 and Servlet 2.3 specs?[ Go to top ]
- Posted by: Richard Vowles
- Posted on: August 30 2001 18:13 EDT
- in response to Floyd Marinescu
What makes me really grumpy about the servlet spec is its complete lack of defining a standard way of dealing with specifying the actual way that authentication is done in a servlet container. I cannot write an authentication mechanism (username/password tested against a database for example) in a standard way that works across multiple containers. It is really aggravating and its time this was fixed, it is looney that this wasn't in the last spec!!!
Tomcat 3.2's per instance vs Resin's per web application for example, each of which is completely different. They should fix this before releasing it, its not exactly difficult. It makes the servlet spec still a joke when dealing with authentication.
Richard -
Whats new in the JSP 1.2 and Servlet 2.3 specs?[ Go to top ]
- Posted by: smallufo huang
- Posted on: August 30 2001 18:47 EDT
- in response to Floyd Marinescu
Resin 2.0 support Servlet 2.3 , I am using it , I tried it , it really works. Servlet Filter is powerful ! I believe there must be some tricks with filters .