Re: Is there size limitation on data passed thru GWT-RPC?

2009-05-26 Thread Zmitro Lapcjonak
More details: the data is gzipped by GWT-RPC on server-side class RPCServletUtils writeResponse() { byte[] responseBytes = responseContent.getBytes(CHARSET_UTF8); ... ByteArrayOutputStream output = new ByteArrayOutputStream (responseBytes.length); gzipOutputStream = new GZIPOutputStrea

Is there size limitation on data passed thru GWT-RPC?

2009-05-25 Thread Zmitro Lapcjonak
Hi. Our application on server side generates complex data structure which is serialized by RPC class into array with lenght near 37K of chars: responsePayload "//OK[0,82 ],0,4]" value char[37088] Then the response is successfully sent from server (no errors in log files). But on t