Hi Shane,
Noticed a typo in MultipartRequest.java
public String getFileName(String name)
{
Param p = getParam(name);
return (p != null && p instanceof FileParam) ?
((FileParam) p).getContentType() : null;
}public String getFileName(String name)
{
Param p = getParam(name);
return (p != null && p instanceof FileParam) ?
((FileParam) p).getFilename() : null;
}Fixed in cvs - thanks for pointing it out.