- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想对当前托管在 IIS7 中的 WCF 应用程序使用 netTcpBinding,这意味着将其配置为使用 WAS。这相当简单,但是,我的应用程序之前使用了 global.asax 文件中的 Application_Start 事件。我不需要访问 httpContext(据我所知,访问权限已在 IIS7 中删除),但我仍然想 Hook 启动或 init 方法?
在 WAS 中托管应用程序时是否存在与 IIS7 相同的等效项?
使用经典模式不是一个选项(同样,我对 httpcontext 不感兴趣,这似乎只有在使用 http 绑定(bind)时才有效) - 而且我看到了一个将静态类放入 app_code 文件夹的示例,其中看起来像一个可怕的黑客。
最佳答案
我相信 AppInitialize()
是您正在寻找的方法。下面是一篇关于使用它在 WAS 托管的 WCF 服务中初始化 CaSTLe Windsor 的文章:
本文的本质是,不要使用在 WAS 中不会被调用的 Application_Start()
:
protected void Application_Start(object sender, EventArgs e)
{
var container = new WindsorContainer("ioc.config");
DefaultServiceHostFactory.RegisterContainer(container.Kernel);
}
用途:
public class InitialiseService
{
/// <summary>
/// Application initialisation method where we register our IOC container.
/// </summary>
public static void AppInitialize()
{
var container = new WindsorContainer("ioc.config");
DefaultServiceHostFactory.RegisterContainer(container.Kernel);
}
}
引用马特的话:
I confess I spent a while looking at the Host Factory in more detail, looking to wrap the
DefaultServiceHostFactory
. However, there appears to be a far simpler solution and that is to make use of the little documented AppInitialize method. If you create a class (any class), put it into the ASP.NETApp_Code
folder in your project and give it a method signature as defined below, this little baby will get fired exactly when you want it to. You can then initialise your IoC container in there.
关于wcf - 在 IIS7 中使用 WAS 时,global.asax Application_Start 等效项是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2453353/
我研究了很多但一无所获...... Application_Start 事件在发布站点时未触发。但是它在本地主机上运行良好。发布后,我在 Bin 文件夹中获得了 App_global.asax.dll
我在 global.asax 文件的 application_start() 方法中编写了一些代码。当我在 IIS 服务器上部署我的应用程序时,它不会被调用。当我在 .NET 框架中运行代码时,它是可
我们目前使用这行代码来获取 Application_Start 事件中的当前应用程序 url。 string sApplicationURL = HttpContext.Current.Request
我有一个正在开发的 ASP.NET MVC(测试版)应用程序,但我无法确定是我做错了什么,还是我的 Application_Start 方法在 Global.当我尝试调试应用程序时,asax.cs 实
我有一个在 asp.net MVC 2 上制作的应用程序,它位于我电脑上的 IIS 7.5 上,我尝试对其进行分析,发现 Application_Start 被调用多次, 有人知道为什么会发生这种情况
我正在使用 sitecore 7.5,我需要在 application_start 中添加新路由以便在 ajax 调用中使用它,但是当我运行应用程序时,sitecore 似乎将路由作为内容项处理,请提
我必须处理用 .NET Framework 1.1 编写的遗留 ASP.NET 应用程序。在检查应用程序代码时,我发现了有趣的部分。应用程序在 Application_Start 事件处理程序 (Gl
是否可以在 Application_Start 上创建一个可以在所有 Controller 中使用的类实例? 我希望能够创建例如: var globalHelper = new LoadsStuff(
我希望将这篇文章塑造成一个合法的 StackOverflow 问题,因为我真的很想深入了解这种情况,但我绝对可以看看它是否过于本地化或被视为“意见”。 这是我的场景:当我加载我的网络应用程序时,我从数
我一直在尝试在全局 asax 的 Application_Start 事件上获取我的项目的应用程序路径我可以在未路由的页面上使用 server.mappath 但是当我在路由页面上时我得到新的虚拟pa
我正在使用 IIS7.5 强制我的 Web 应用程序自动加载 (startMode="AlwaysRunning"),现在我想预加载我的缓存数据。不过我有点困惑,因为两种方法看起来是一样的: 在 gl
我无法使用 获取 Application_Start 中的当前物理路径 HttpContext.Current.Request.PhysicalApplicationPath 因为当时没有Reques
我不明白为什么在我的 ASP.NET 应用程序启动时 Application_Start 事件会被调用两三次? Application_End 不在 Application_Start 调用之间调用。
在我们的 Application_Start事件处理程序我们正在执行一些由于文件锁定问题而间歇性失败的操作。在这种情况下,我们希望将应用程序返回到“未启动”状态。 我的意思是,用户将看到一个错误页面,
问题: Application_Start 事件没有在我的包含 TCP 端点的 WCF 服务中触发。 背景: 我正在尝试从控制台应用程序访问该服务。如果服务尚未启动,则调用将失败,因为 Applica
我正在调试一个初始页面加载缓慢的 ASP.NET 2.0 应用程序。 通过添加日志记录,我发现 Application_Start事件在启动时触发两次,两个事件之间有很短的延迟。 Session_St
... Application_Start 方法是否会为下一个请求再次运行? 它是否取决于 ASP.NET 版本、托管服务器版本和/或其他上下文? 我试图确定在那里加载关键程序集是否是一件好事。例如,
我目前正在更改我们的数据库部署策略以使用 FluentMigration,并一直在阅读如何运行它。有些人建议它可以从 Application_Start 运行,我喜欢这个想法,但其他人说不,但没有具体
我有一个应用程序在我的开发工作站上运行良好,但在将应用程序部署到实时环境时失败。看来 Application_Start 没有在实时环境中被调用。 最佳答案 我可以通过删除测试服务器上网站根目录中的
我有一个 ASP.NET Web 应用程序开始显示一些非常奇怪的行为。下面是一些示例代码: // in Bar.cs public class Bar { public static Baz
我是一名优秀的程序员,十分优秀!