@Override
public ServletInputStream getInputStream() throws IOException {
if (rdr != null) throw new IllegalStateException();
if (bin == null) {
rin = new RewindableInputStream(super.getInputStream());
bin = new BufferedServletInputStream(rin);
}
return bin;
}