Closed GoogleCodeExporter closed 9 years ago
If you add the following method to UploadServlet
@Override
public String getInitParameter(String name) {
String value = getServletContext().getInitParameter(name);
if (value == null) {
value = super.getInitParameter(name);
}
return value;
}
And then change all ctx.getInitParameter("...") to getInitParameter("..."), the
issue can be solved without backwards compatibility issues.
Original comment by jasonmp...@gmail.com
on 18 Aug 2011 at 1:59
This issue was closed by revision r938.
Original comment by manuel.carrasco.m
on 9 Nov 2011 at 7:39
Original issue reported on code.google.com by
jasonmp...@gmail.com
on 18 Aug 2011 at 1:38