Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to suppress "This page is accessing information not under its control"

Tags:

I get this message when I am trying to access a web service from Jquery located in SAME the URL (but different directory).

I know it is IE security setting. The question is, how do I suppress it...surely, people don't put web services in the same web site, same directory....

like image 384
sarsnake Avatar asked Dec 11 '09 20:12

sarsnake


1 Answers

In case this is helpful for someone running Visual Studio 2013. I had upgraded my Visual Studio from 2010 to 2013 and then started seeing the seurity warning.

Using Fiddler I found that VS 2013 kept sending arterySignalR requests.

I turned this off by setting the following in the web.config under appSettings

<add key="vs:EnableBrowserLink" value="false" /> 

which caused the security warning to go away.

like image 94
ATM Avatar answered Oct 03 '22 19:10

ATM