HTTPModule 和 Sharepoint 站点

发布于 2024-08-18 12:04:10 字数 890 浏览 5 评论 0原文

我在使用 HTTPModule 与共享点部署的站点时遇到问题。这是我所拥有的:

  • /layouts/[ProjectName]/ 文件夹中的我的 asp.net 页面。 aspx 文件使用共享点母版页
  • 我有一个 HTTPModule 和
  • web.config 包含的 实现 IHTTPModule {http模块} {add name="HTTPModule" type="HTTPModule,[全名程序集]WebForms,Version=1.0.0.0,Culture=neutral,PublicKeyToken=370ae5aba0a4672a"/} {/httpModules}
  • web.config 放置在layouts/[projectname] 文件夹中。

但无论出于何种原因,HTTPModule 似乎都没有被选中。 我已经验证:

  • 程序集存在于 GAC 和公钥令牌中,并且所有内容都是正确的。
  • HTTPModule web.config 的代码
  • GAC 编辑的程序集确实包含从布局文件夹中选取的
  • 。 httpmodule 没有被拾取(我在 init 中抛出异常,会话开始让它在我身上中断......但它不会抛出这些异常)

是否有某种原因导致 HTTPModule 没有被拾取。

ps:我基本上正在尝试这样做 http://vspug.com/dwise/2007/01/08/one-master-to-rule-them-all-two-actually/

I am running into an issue with using a HTTPModule with a sharepoint deployed site. Here is what I have:

  • my asp.net pages inside the /layouts/[ProjectName]/ folder. The aspx file uses a sharepoint masterpage
  • i have a HTTPModule and implments IHTTPModule
  • the web.config contains
    {httpModules}
    {add name="HTTPModule" type="HTTPModule, [fullname assembly]WebForms, Version=1.0.0.0, Culture=neutral, PublicKeyToken=370ae5aba0a4672a"/}
    {/httpModules}
  • The web.config is placed layouts/[projectname] folder.

But for whatever reason, it looks like the HTTPModule doesn't get picked up.
I've verified that:

  • the assembly exists in GAC and the publickeytoken and all the stuff is correct.
  • the GAC'ed assembly does contain the code for HTTPModule
  • web.config is being picked from the layouts folder.
  • httpmodule isn't being picked (i am throwing exception in the init, session start to have it break on me... but it doesn't throw those exceptions)

Is there some reason the HTTPModule isn't being picked up.

p.s: I am basically trying to do this http://vspug.com/dwise/2007/01/08/one-master-to-rule-them-all-two-actually/

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

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

发布评论

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

评论(2

攒一口袋星星 2024-08-25 12:04:10

您需要更新的 web.config 文件位于 Web 应用程序目录(IIS 目录)中。

The web.config file that you need to update is the one located in the web application directory (IIS directory).

梦醒时光 2024-08-25 12:04:10

如果您在集成模式下运行 IIS 7.x,则可以使用此处显示的部分:

<configuration>
<system.web>
...
</system.web>
<system.webServer>
<modules>
...
</modules>
</system.webServer>
</configuration>

If you’re running IIS 7.x in integrated mode, you use the section shown here instead:

<configuration>
<system.web>
...
</system.web>
<system.webServer>
<modules>
...
</modules>
</system.webServer>
</configuration>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文