When using the org.cafesip.gwtcomp.server.FileUploadServlet class on an IPv6-enabled system, file uploads may not work correctly.
The problem is on line 212 of FileUploadServlet.java (from v0.0.2b):
File tempf = File.createTempFile(request.getRemoteAddr()
+ "-" + item.getFieldName() + "-", "");
For example, if you're using localhost, the...