loadrunner Hi All, If left Boundary size is more than...

  • perf-test.com need your contributions to build up a strong repository of performance engineering resources.

R

Ragul Gupta

Guest
Hi All, If left Boundary size is more than 9999999 what is the alternative for that.If I am specifying it as more than 9999999 in web_set_max_html_param_len(); than it is throwing memory violation error.Please suggest.
 
I suggest that you look more carefully at how many characters you really have in your correlation. 10 million characters? I doubt that very much.
 
U can use SaveOffset and Savelen attribute of web_reg_save_param if captured value size is so big
 
Web_reg_save_param(“Param1”,…..,SaveLen=500, SaveOffSet=0……) // This will store first half of dynamic value Web_reg_save_param(“Param2”,…,SaveOffSet=500,….) //// This will store remaining half of ViewState Web_convert_Param(“Param1”….) Web_convert_Param(“Param2”….) Now just submit at the desire place like Now we can submit this as below. {Param1}{Param2}
 
Thanks Somsubhra Chakraborty.. for your reply. But can you give me some sample code if you have already done that.
 
If correlated value > 9,999,999 bytes then you have already identified your first bottleneck, without even running a test. It is time to turn the application back to development to trim the size of information sent from the server in a single data flow. Ten megabyte data flows from server to client and back are not appropriate, this is not healthcare.gov