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=21269>. 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=21269 FileUploadBase does not handle quoted boundary specification, which is required by RFC 1521 ------- Additional Comments From [EMAIL PROTECTED] 2003-10-22 11:53 ------- here is a patch that worked !!! String boundaryString; byte[] boundary; if (contentType.charAt(boundaryIndex + 9) == '"' && contentType.charAt(contentType.length() - 1) == '"') { boundaryString = contentType.substring( boundaryIndex + 10, contentType.length() - 1); } else { boundaryString = contentType.substring( boundaryIndex + 9); } boundary = boundaryString.getBytes(); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
