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

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17231

POST is not work with some wml browser...

           Summary: POST is not work with some wml browser...
           Product: Tomcat 4
           Version: 4.1.8
          Platform: PC
        OS/Version: Windows NT/2K
            Status: NEW
          Severity: Critical
          Priority: Other
         Component: Servlet & JSP API
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


Some wml browser does not work with POST method.
I guess this problem is caused by HTTP header content-type("application/x-www-
form-urlencoded").

phone browser's HTTP header here: (Samsung, SK Telecom and so on...)

    content-type=application/x-www-form-urlencoded;charset=iso-8859-1

    content-type=application/x-www-form-urlencoded;SKY – charset=Korean

catalina source here: in org.apache.catalina.connector.HttpRequestBase

protected void parseParameters() {

    ...
    if ("POST".equals(getMethod()) && (getContentLength() > 0)
        && (this.stream == null)
        && "application/x-www-form-urlencoded".equals(contentType)) {
    ...
}

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

Reply via email to