DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=28983>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=28983

Unimplemented Servlet 2.3 methods in MultipartRequestWrapper





------- Additional Comments From [EMAIL PROTECTED]  2004-05-31 19:26 -------
can we check the major and minor version of the Java Servlet API that this 
servlet container supports by invoking the following methods?
  ServletContext scntxt = this.getServletContext();
  int majorVersion = scntxt.getMajorVersion();
  int minorVersion = scntxt.getMinorVersion();
if the version is 2.2 or lower, the four new methods in Servlet 2.3 still just 
return null. Otherwise, the current implementation of the 4 additional 2.3 
methods can be delegated to the real request object.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to