The proposed final draft 2 for the Servlet 2.3 and the JSP 1.2 specifications are available for download. PDF2 changes are mostly minor API changes and clarifications.
Download the specs here.
-
Servlet 2.3 and JSP 1.2 Specifications proposed final draft 2 (7 messages)
- Posted by: Floyd Marinescu
- Posted on: May 07 2001 12:23 EDT
Threaded Messages (7)
- Servlet 2.3 and JSP 1.2 Specifications proposed final draft 2 by Dion Almaer on May 07 2001 15:53 EDT
- Servlet 2.3 and JSP 1.2 Specifications proposed final draft 2 by Harikrishna Neerkaje on May 07 2001 21:57 EDT
-
Servlet 2.3 and JSP 1.2 Specifications proposed final draft 2 by Kumar Mettu on May 08 2001 12:18 EDT
-
Servlet 2.3 and JSP 1.2 Specifications proposed final draft 2 by Taras Zhugayevich on May 08 2001 10:31 EDT
-
Servlet 2.3 and JSP 1.2 Specifications proposed final draft 2 by Dion Almaer on May 08 2001 11:43 EDT
- Servlet 2.3 and JSP 1.2 Specifications proposed final draft 2 by Dion Almaer on May 11 2001 01:01 EDT
-
Servlet 2.3 and JSP 1.2 Specifications proposed final draft 2 by Dion Almaer on May 08 2001 11:43 EDT
- Servlet 2.3 and JSP 1.2 Specifications proposed final draft 2 by Dion Almaer on May 08 2001 11:40 EDT
-
Servlet 2.3 and JSP 1.2 Specifications proposed final draft 2 by Taras Zhugayevich on May 08 2001 10:31 EDT
-
Servlet 2.3 and JSP 1.2 Specifications proposed final draft 2 by Kumar Mettu on May 08 2001 12:18 EDT
- Servlet 2.3 and JSP 1.2 Specifications proposed final draft 2 by Harikrishna Neerkaje on May 07 2001 21:57 EDT
-
Servlet 2.3 and JSP 1.2 Specifications proposed final draft 2[ Go to top ]
- Posted by: Dion Almaer
- Posted on: May 07 2001 15:53 EDT
- in response to Floyd Marinescu
I wish they would add support for multipart forms.
I know that there are support classes out there (e.g. from oreilly), but I feel that this should be built-in.
Most other API's will check the ENCTYPE of the form and
"do the right thing". Now, If a designer changes the ENCTYPE of a form, the developers have to be aware of it,
and have to totally change their code to be able to accept
it. I don't think we should have this strong coupling.
What do you guys think? -
Servlet 2.3 and JSP 1.2 Specifications proposed final draft 2[ Go to top ]
- Posted by: Harikrishna Neerkaje
- Posted on: May 07 2001 21:57 EDT
- in response to Dion Almaer
I agree that support for MultiPart form should be there as should built in support be there for file upload via multipart forms too. So that request.getParameter(NameOfFileTypeField) may return us the file which was selected by the user just like what is available in PHP -
Servlet 2.3 and JSP 1.2 Specifications proposed final draft 2[ Go to top ]
- Posted by: Kumar Mettu
- Posted on: May 08 2001 00:18 EDT
- in response to Harikrishna Neerkaje
I believe Sun has not added support for multipart/form-data as RFC1867 is still experimental and not a standard.
http://www.faqs.org/rfcs/rfc1867.html
See the Status of the Memo.
request.getParameter(NameOfFileTypeField) cannot return a file as current API returns String. There got to be a new method to retrieve file. -
Servlet 2.3 and JSP 1.2 Specifications proposed final draft 2[ Go to top ]
- Posted by: Taras Zhugayevich
- Posted on: May 08 2001 10:31 EDT
- in response to Kumar Mettu
Does somebody know "what is new" in Servlet 2.3 and JSP 1.2 or maybe somebody can provide reference to the document with this information.
-
Servlet 2.3 and JSP 1.2 Specifications proposed final draft 2[ Go to top ]
- Posted by: Dion Almaer
- Posted on: May 08 2001 11:43 EDT
- in response to Taras Zhugayevich
There are a few additions like: filters, and listeners.
There is some info at:
http://www.onjava.com/pub/a/onjava/2001/03/22/servlets23.html -
Servlet 2.3 and JSP 1.2 Specifications proposed final draft 2[ Go to top ]
- Posted by: Dion Almaer
- Posted on: May 11 2001 01:01 EDT
- in response to Dion Almaer
Servlet 2.3: New features exposed
A full update on the latest Servlet API spec
Summary
In October 2000, Sun released the "Proposed Final Draft" specification for Servlet API 2.3. This article explains the differences between Servlet API 2.2 and 2.3, discusses the reasons for the changes, and shows you how to write servlets (and now filters!) using 2.3. (4,000 words)
By Jason Hunter
http://www.javaworld.com/javaworld/jw-01-2001/jw-0126-servletapi.html -
Servlet 2.3 and JSP 1.2 Specifications proposed final draft 2[ Go to top ]
- Posted by: Dion Almaer
- Posted on: May 08 2001 11:40 EDT
- in response to Kumar Mettu
I think that is a kop out by Sun. Lots of people
use multipart, so they should support what is in use.
This is where standards bodies lag behind the real world.
They could add getFileParameter() or getStreamParameter()
which is what you would use to get the actual file back.
getParameter("myfile") could return the filename that
was sent up.
Or they could do it totally differently.... they should
just do it :)
Dion