|
Originally posted by shikhar singh:
I am tring to pass a huge string from JavaScript to the JSP page. But it is giving runtime script error. This might be due the limited data you can send through GET method.
Peter den Haan | peterdenhaan.com | quantum computing specialist, Objectivity Ltd
Originally posted by shikhar singh:
Actually In my application, while loading, I populates a javaobject with all data which I want to display to the user. Then I converts this object into a string which contains the data. I passes this huge string (which contains most most of the data which I want to display to client) to JavaScript (after encoding). In java script I decodes this string and converts this back to Javascript object.
Now for a particular operation (sorting the data, in my case), I want to pass this object back to JSP to do manipulation.
Peter den Haan | peterdenhaan.com | quantum computing specialist, Objectivity Ltd
Originally posted by shikhar singh:
My application is a email management system. Emails from a single customer are grouped together to form a 'ticket'. Person using this application can have 100-150 tickets(i.e. 100*(2or 3) emails)... So you can imagine how big the object is. Now each user will have his own mailBox. So if I hold this object in session at server side, and if the number of users are high, (say 50-100), the load on the server will be tremendous.
Thats why, I prefered to pass the object back to JSP, sort it and send it back to Javascript.
1. I don't want to do in Javascript , as this will be a huge processing at client.
2. I don't want to fire the query again to get the sorted information, as this will try to un-necessarily try to fetch the data again which we already have. This will also incrase the load on server.
Can you just tell me how to pass this huge object from JavaScript to JSP, with the help of POST or any other way....
Peter den Haan | peterdenhaan.com | quantum computing specialist, Objectivity Ltd
<B>Memo 13</B>
pie. tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
|