我可以从中等信任的 ASP.NET 应用程序运行新进程吗?
我正在构建一个 ASP.NET MVC 网站,我想在其中使用 OpenSTV 进行民意调查。要通过 OpenSTV 运行结果,我必须运行可执行文件。 中等信任 ASP.NET 应用程序是否允许这样做?
I'm building an ASP.NET MVC site where I want to use OpenSTV to conduct polls. To run results through OpenSTV, I'd have to run the executable. Is that allowed from a medium-trust ASP.NET application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除非以
FullTrust
运行,否则无法实例化System.Diagnostics.Process
对象。如果您检查装饰类的属性,您将看到对 FullTrust 的需求:
You can't instantiate a
System.Diagnostics.Process
object unless you're running atFullTrust
.If you examine the attributes decorating the class you'll see the demand for
FullTrust
: