518519520521522523524525526527528
/** * @see nexj.core.util.LimitInputStream#throwLimitException() */ protected int throwLimitException() throws LimitIOException { throw new RPCSizeException((bParam) ? "err.rpc.parameterSize" : "err.rpc.attachmentSize", new Object[] { new Long(m_lMaxCount) }); } };
799800801802803804805806807808809
return new LimitInputStream(m_request.getInputStream(), m_lMaxRequestSize, true); } if (nSize > m_lMaxRequestSize) { throw new RPCSizeException("err.rpc.requestSize", new Object[]{new Long(m_lMaxRequestSize)}); } } return m_request.getInputStream();