如何修改我的设置以允许 VS2010 从“未经授权的区域”加载第 3 方 XSD 文件?

发布于 2024-09-07 07:39:55 字数 549 浏览 7 评论 0 原文

我在 Visual Studio 2010 中打开了第 3 方 XSD 文件,该文件从同一第 3 方的其他架构文件导入命名空间。

在架构文件的 XML 编辑器视图中,xs:import 元素带有下划线,并显示以下错误:请求类型为“System.Security.Permissions.FileIOPermission”的权限,mscorlib,Version=4.0.0.0,Culture=neutral, PublicKeyToken=b77a5c561934e089' 失败。

我阅读了以下博客文章: 链接指出这是安全区域违规,Visual Studio 将架构放置在 XML 架构资源管理器中的“未经授权的区域”中。

我的问题是 - 如何更改安全设置以允许引用这些架构,或者我可以做些什么来使与它们关联的架构和命名空间“受信任”?

I have opened a 3rd party XSD file in Visual Studio 2010 that imports namespaces from other schema files from the same 3rd party.

In the XML editor view of the schema file, the xs:import element is underlined with the following error: Request for the permission of type 'System.Security.Permissions.FileIOPermission', mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.

I read the following blog post: Link which states that it's a security zone violation and Visual Studio places the schemas in the "Unauthorized zone" in the XML Schema Explorer.

My question is - how do I change my security settings to allow these schemas to be referenced, or is there something I can do to make the schemas and namespaces associated with them "trusted"?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

甜味拾荒者 2024-09-14 07:39:55

我自己也遇到过这个问题 - 实际上是因为 Win 7 阻止了架构文件,因为它们是从网络位置复制的。

要取消阻止单个文件,请导航到该文件并使用“属性”>“解锁
输入图像描述这里

对于多个文件,最快的方法是使用 Sysinternals 的 Streams 批量更改位置,如所述 在此博文中

Had this issue myself - it was actually because Win 7 had blocked the schema files due to them being copied in from a network location.

To unblock individual files navigate to the file and use Properties > Unblock
enter image description here

For multiple files it's quickest to use Sysinternals' Streams to bulk change the location as described in this blog post.

煮茶煮酒煮时光 2024-09-14 07:39:55

使用 Powershell 命令提示符:

Get-Item "C:\<path to folder with blocked files>\*\*.*" | Unblock-File

https://technet.microsoft.com/en-us/library/hh849924.aspx

Use Powershell command prompt:

Get-Item "C:\<path to folder with blocked files>\*\*.*" | Unblock-File

https://technet.microsoft.com/en-us/library/hh849924.aspx

玩世 2024-09-14 07:39:55

我也遇到过同样的情况,就是没有解锁按钮。就我而言,帮助了以下内容
如果Windows策略不允许解锁。

  1. 尝试存档文件,例如。本地驱动器中包含 7zip(但不是任何共享驱动器,也不是 Onedrive/Dropbox/等目录。因为这些软件可以根据系统配置向文件添加区域)。
  2. 然后将存档解压到另一个本地目录
  3. 文件现在应该没有未经授权的区域。

I had the same situation that I did not have unblock button. In my case helped the following
If Windows policy does not allow to unlock.

  1. Try to archive the file eg. with 7zip in local drive (but not any shared drive and not directory of Onedrive/Dropbox/etc.. because those soft can add zones to files depending on system configuration).
  2. Then unpack the archive to another local directory
  3. File now should be without unauthorized zone.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文