Due to some architectural constraint, i am forced to send the result as a query string in the url. But some how it is chopping of the length. But at the same time if i hardcode value or its not chopping of. can anyone have idea?
Working method
--------------
----
//This method work fine
String a="kkkkkkkkkkkkkkkkkkkkkk"; //my length is 780
response.sendRedirect("
Not Working method
====================
String k=data retrived from mainframe
k.length=780;
response.sendRedirect("
Here in the url i am getting only 247.
Pls note that i need to pass the string in the query.
Working method
--------------
----
//This method work fine
String a="kkkkkkkkkkkkkkkkkkkkkk"; //my length is 780
response.sendRedirect("
Not Working method
====================
String k=data retrived from mainframe
k.length=780;
response.sendRedirect("
Here in the url i am getting only 247.
Pls note that i need to pass the string in the query.