Lookup paramMap = new HashTab();
MIMEHeader header = new MIMEHeader(null, m_request.getHeader("Content-Type"));
if (header.getFirstValue() == null || !header.getFirstValue().getName().equals(MULTIPART_FORM_DATA))
{
throw new MultipartDataException("Unexpected content type");
}
String sSeparator = header.getFirstValue().findArg("boundary");
if (sSeparator == null || sSeparator.length() == 0)
{
throw new MultipartDataException("Missing multipart boundary in content-type");
}
String sEncoding = m_request.getCharacterEncoding();
if (sEncoding == null)