- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个小型网络应用程序。在我在应用程序中添加两个 genericHandler 之前,它工作得很好。
我对 http 处理程序进行了以下更改
<system.web>
<authentication mode="Forms" >
<forms protection="All" timeout="720" defaultUrl="Default.aspx" loginUrl="Login.aspx" >
</forms>
</authentication>
<authorization>
<deny users="?"/>
</authorization>
<compilation debug="true" targetFramework="4.0" />
<httpHandlers>
<!--Code Log Handler-->
<add verb="*" path="*.aspx" type="System.Web.UI.PageHandlerFactory" />
<add verb="*" type="InfoDomeNewUI.Handler.SendOWA" path="SendOWA.ashx" />
<add verb="*" type="InfoDomeNewUI.Handler.SendSOS" path="SendSOS.ashx" />
</httpHandlers>
<customErrors mode="Off">
<error statusCode="404" redirect="Templates/PageNotFound.html" />
</customErrors>
</system.web>
<system.webServer>
<validation validateIntegratedModeConfiguration="false" />
<handlers>
<!--Code Log Handler-->
<add name="LogHandler1" path="SendOWA.ashx" verb="*" type="InfoDomeNewUI.Handler.SendOWA"/>
<!-- SMS SENDER-->
<add name="SendSOS" path="SendSOS.ashx" verb="*" type="InfoDomeNewUI.Handler.SendSOS"/>
</handlers>
</system.webServer>
Could not load file or assembly 'Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.
我使用的是asp.net4.0和C#。 我没有使用 MVC
在本地主机上它工作正常。
但是当我托管已发布的代码时,它给了我上述错误。
堆栈跟踪:-
[FileNotFoundException: Could not load file or assembly 'Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.] System.Web.Http.WebHost.SuppressFormsAuthRedirectModule.Register() +0
[InvalidOperationException: The pre-application start initialization method Start on type System.Web.Http.WebHost.PreApplicationStartCode threw an exception with the following error message: Could not load file or assembly 'Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified..] System.Web.Compilation.BuildManager.InvokePreStartInitMethods(ICollection`1 methods) +11708830 System.Web.Compilation.BuildManager.CallPreStartInitMethods() +465 System.Web.Hosting.HostingEnvironment.Initialize(ApplicationManager appManager, IApplicationHost appHost, IConfigMapPathFactory configMapPathFactory, HostingEnvironmentParameters hostingParameters, PolicyLevel policyLeve
[HttpException (0x80004005): The pre-application start initialization method Start on type System.Web.Http.WebHost.PreApplicationStartCode threw an exception with the following error message: Could not load file or assembly 'Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified..] System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +11697760 System.Web.HttpRuntime.EnsureFirstRequestInit(HttpContext context) +141 System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) +4866485
最佳答案
即使 .net(4.0 或 4.5 或其他)已成功安装在 Windows Server 上,GAC 中似乎也未安装 Microsoft.Web.Infrastruct.dll。在本地主机(通常是 Windows 客户端)上,安装工具/平台(Visual Studio 等)时,它似乎位于 GAC 中。
作为一种可能的修复方法,请尝试以下操作:
在程序包管理器控制台中运行以下命令。 (如果您使用的是 Visual Studio,可以通过菜单选项“工具 --> 库包管理器 --> 包管理器控制台:)
PM> Install-Package Microsoft.Web.Infrastructure
如果安装成功,您将看到以下消息。
Successfully installed 'Microsoft.Web.Infrastructure 1.0.0.0'.
Successfully added 'Microsoft.Web.Infrastructure 1.0.0.0' to Web.
您会注意到 Microsoft.Web.Infrastruct.dll 现已添加为引用(可以在解决方案资源管理器中项目的引用文件夹中看到)
如果您查看此引用的属性,您会发现“复制本地”默认设置为“True”。
现在,当您“发布”项目时,Microsoft.Web.Infrastruct.dll 将被部署。
关于asp.net - 错误 Microsoft.Web.Infrastruct,版本 = 1.0.0.0,文化 = 中性,PublicKeyToken = 31bf3856ad364e35,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12669206/
这是我的解释器的代码: program=list(raw_input('Program: ')) array = [0 for i in range(100)] pointer=0 prgpointe
我写了简单的 brainfuck2c 翻译器。我添加了轻微的优化(针对指针移动),但我考虑优化加法/减法,例如我们有像 ++++ 这样的代码,它会转换为 mem[0]+= 1;内存[0]+=1;内存[
我正在寻找用深奥的语言 brainf*** 将伪随机数分配给存储单元的代码。我找到了 this sample code ,但发现它有些困惑。据我所知,这是一个“需要一些组装”(不是双关语?)样本。运行
我有一个Solr实例,其中包含文档,文档的'startTime'字段范围从上个月到现在为止。我想添加一个增强查询/函数来增强其startTime字段接近当前时间的文档的分数。 到目前为止,我已经看到了
我有一个包含字节序列 c3 82 c2 bf 的文本数据源。在上下文中,我认为它应该是大写的希腊 Phi 符号 (Φ)。 无论如何,我无法弄清楚正在使用什么编码;我正在编写一个 Python 脚本来处
我读过很多关于使用 SIFT 和蛮力匹配将一张图像与多张图像进行匹配的问题,例如 this和 this .是否可以进行多对一的匹配?我想做的是以下内容。 遍历目录中的查询图像 为每个图像提取 SIFT
我正在尝试使用 Microsoft Bing API。 $data = file_get_contents("http://api.microsofttranslator.com/V2/Ajax.sv
我正在使用第三方软件,它以加密模式 CBC 和 IV 为 0xFFFFFFFFFFFFFFFF 在河豚中创建 key 。如何将这样的 IV 传递给 openssl_encrypt?源字符串的编码是 w
我的一个项目中有一堆 JSON 文件设置为 Embedded resource。我正在使用 Newtonsoft.Json 来解析这些文件: public static string ReadStri
我是一名优秀的程序员,十分优秀!