Visual Studio Error
-
Hi All, I'm accessing the inetpub folder from a share (mapped drive) of our development web server. When I try running the application from Visual Studio on my machine I receive the below error message. However, when I run the application from the web server, browse through IIS, the application shows up with no issues. Error message: “Could not load file or assembly 'DataWindowInterop, Version=2.5.0.0, Culture=neutral, PublicKeyToken=cc0f66dd9541b3da' or one of its dependencies. Failed to grant minimum permission requests. (Exception from HRESULT: 0x80131417)”. Could anyone point me in the right direction as to how to solve this DataWindowInterop error? Does it have something to do with the DataWindow not being accessible from the web server? When I bypass the error message in Visual Studio all that is shown in the browser is the directories, as expected being that the Data Window isn't accessible. Any help would be really appreciated. Thank you
-
Hi All, I'm accessing the inetpub folder from a share (mapped drive) of our development web server. When I try running the application from Visual Studio on my machine I receive the below error message. However, when I run the application from the web server, browse through IIS, the application shows up with no issues. Error message: “Could not load file or assembly 'DataWindowInterop, Version=2.5.0.0, Culture=neutral, PublicKeyToken=cc0f66dd9541b3da' or one of its dependencies. Failed to grant minimum permission requests. (Exception from HRESULT: 0x80131417)”. Could anyone point me in the right direction as to how to solve this DataWindowInterop error? Does it have something to do with the DataWindow not being accessible from the web server? When I bypass the error message in Visual Studio all that is shown in the browser is the directories, as expected being that the Data Window isn't accessible. Any help would be really appreciated. Thank you
Try it from a local drive. Running an application from a network drive is more restricted than from a local drive.
Philippe Mori
-
Try it from a local drive. Running an application from a network drive is more restricted than from a local drive.
Philippe Mori
I was hoping to get it working on the local machine. Working on the server would be my last resort. I located a reference to the DataWindowInterop in the project file and the actual .dll file is in the bin folder. Any ideas as to why this error is being received? Thank you
-
Hi All, I'm accessing the inetpub folder from a share (mapped drive) of our development web server. When I try running the application from Visual Studio on my machine I receive the below error message. However, when I run the application from the web server, browse through IIS, the application shows up with no issues. Error message: “Could not load file or assembly 'DataWindowInterop, Version=2.5.0.0, Culture=neutral, PublicKeyToken=cc0f66dd9541b3da' or one of its dependencies. Failed to grant minimum permission requests. (Exception from HRESULT: 0x80131417)”. Could anyone point me in the right direction as to how to solve this DataWindowInterop error? Does it have something to do with the DataWindow not being accessible from the web server? When I bypass the error message in Visual Studio all that is shown in the browser is the directories, as expected being that the Data Window isn't accessible. Any help would be really appreciated. Thank you
using System.Security.Permissions
The problem is that the webserver is running everything locally through its own IIS user and your code on the local machine is accessing through a "remote" connection. I once ran into a similar problem using a mapped folder. You only need to set up the permissions for your development machine, NOT the development SERVER, just the machine you are actually writing code on. You'll need to figure out just which permissions you need to set but here is the MSDN link for the above namespace. System.Security.Permissions Namespace
I once knew a man with a wooden leg named Smith, I never asked what he named his other leg.
-
Hi All, I'm accessing the inetpub folder from a share (mapped drive) of our development web server. When I try running the application from Visual Studio on my machine I receive the below error message. However, when I run the application from the web server, browse through IIS, the application shows up with no issues. Error message: “Could not load file or assembly 'DataWindowInterop, Version=2.5.0.0, Culture=neutral, PublicKeyToken=cc0f66dd9541b3da' or one of its dependencies. Failed to grant minimum permission requests. (Exception from HRESULT: 0x80131417)”. Could anyone point me in the right direction as to how to solve this DataWindowInterop error? Does it have something to do with the DataWindow not being accessible from the web server? When I bypass the error message in Visual Studio all that is shown in the browser is the directories, as expected being that the Data Window isn't accessible. Any help would be really appreciated. Thank you
Double click that error it will shows some line in design page...Delete it