Link to home
Start Free TrialLog in
Avatar of Tim
Tim

asked on

ASP.NET AJAX Query response leakage

Hi All,

So I have a site using Windows Authentication and an Application Pool using a specific user account for access.

On my page it uses a JavaScript AJAX query to a code behind C# page which spits back data to JavaScript which puts it on the page.

Sometimes (more then exception than the rule) it will spit out results from another users query instead of mine or vice versa.

I am wondering if anyone has experienced this before and what be causing it.
Avatar of John Gates, CISSP, CDPSE
John Gates, CISSP, CDPSE
Flag of United States of America image

Going to need to see the code but my first guess is somehow this is using a global variable and not considering the web session id...

-D-
Can you write some detail about how data is processed? may be some things from cache is picked or may be from a database table.
Avatar of LajuanTaylor
LajuanTaylor

@tr57285 - Have you tried monitoring your client traffic using the built-in browser tools for IE, Chrome, FireFox?

You might be able to trace down the source of leak by capturing the browser traffic.

If that doesn't work, try the Fiddler web browser debugging proxy - http://www.telerik.com/fiddler
ASKER CERTIFIED SOLUTION
Avatar of Julian Hansen
Julian Hansen
Flag of South Africa image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial