hello
I am using xmlHttpRequest method in my application, this method is giving problem in the following browsers
1) Internet Explorer 7
2) Mozila Firefox(2.0.0.16)
I got solution for Mozilla issue
let me explain what i did
In the about:config (for this we have to open browser and type in the address bar as about:config, after that in filter place type as signed) of mozilla brower
you need to set 'signed.applets.codebase_principal_support' to true and add the line
'netscape.security.PrivilegeManager.enablePrivileg e("UniversalBrowserRead");
in my script(means above xmlHttpRequest.open)
But I am facing this issue in IE7 there i am getting Permission Denied to open xmlHttpRequest.
Anybody knows solution for this problem