如何将反射权限添加到IIS或将其添加到web.config?
我正在使用 FileHelpers 来读取 csv 文件,直到我从 VS 开发服务器切换到 IIS 为止一切都很好,我得到一个“PolicyException:无法获取所需的权限”,我用谷歌搜索并发现我需要添加反射权限才能使其工作,有人知道怎么做吗?
I'm using FileHelpers for reading csv files, and all it was ok until I switched from VS dev server to IIS, I get a "PolicyException: Required permissions cannot be acquired", I googled and found that I need to add Reflection Permission for this to work, anybody knows how ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的 asp.net 应用程序可能正在低信任或中等信任下运行。反射权限是完全信任的。
您可以按照 Rick Strahl 的这篇文章启用此特定的反射权限,而无需完全信任:
http://www.west-wind.com/Weblog/posts/6344.aspx
注意:如果您是托管的并且没有覆盖某些安全设置的权限,则它可能不起作用。
Your asp.net application is probably running in low-trust or medium trust. Reflection permission is in full trust.
You can enable this specific Reflection Permission without going full trust by following this post by Rick Strahl :
http://www.west-wind.com/Weblog/posts/6344.aspx
Note: it might not work if you're hosted and don't have permissions to override some security settings.