Reputation: 633
Login page url: https://www.xyz.com/BankAwayRetail/(S(e0x2et4504nzrn45z31vqy45))/RetailSignOn.aspx?RequestId=32421307
Page once logged in: https://www.xyz.com/BankAwayRetail/(S(e0x2et4504nzrn45z31vqy45))/main.aspx?RequestId=63780285
Check above link for reference
RequestId
composed of some random 8 digit numberRequestId
which is different from the previous oneWhy do you need to have a randomly generated RequestId
for each request?
The href for that particular page reads like this:
href="tranHttpHandler.aspx?bwayparam=qDoMNTYEhwvj0TpGy2N1HXlySZCfb3%2f9T7WT5Mm1fg%3d%3d"
It might be possible that RequestId
is encoded in var bwayparam
?
Please explain why you would do this.
Upvotes: 0
Views: 2107
Reputation: 6632
Browsers will cache data based on the given URL. Having a unique request id ensures the browser will always request and re-load the page data.
For example, since it appears what you are referring to is a bank application, if the site is designed to show up-to-date values in the user's account, a cached web-page may not show the most recent transaction. Adding a request id will ensure the page gets reloaded, thereby displaying the most recent information.
Upvotes: 2