hi all,
First of all i am a newbie to DWR.
i am calling java function through javascript in DWR. my code is
when u pass document.tableview.expression.value as "select * from table_name"Code:at client side function callDWR(reqPage) { tableViewController.getQueryResult(document.tableview.expression.value, reqPage, QueryResult); } at server side public Map<Object,Object> getQueryResult(String sql, int reqPage) { System.out.println("sql -->"+sql); }
then above code is working fine. but when large number of sql pass through textarea like nearly 1335 sql queries nearly 1000k lenth total then my IE get hangs and request is not sent to java code.
so can you please help me for this bug.


Reply With Quote