Castle ActiveRecord - SessionScopeWebModule

发布于 2024-11-11 12:52:59 字数 773 浏览 5 评论 0原文

我时不时地收到以下错误 “似乎框架配置不正确。(isWeb != true 并且 SessionScopeWebModule 正在使用)检查文档以获取更多信息”

并且我的 Web 应用程序崩溃了

我的 web.config 是这样..

<activerecord isweb="true">
    <config>
      <add key="connection.driver_class" value="NHibernate.Driver.SqlClientDriver" />
      <add key="dialect" value="NHibernate.Dialect.MsSql2005Dialect" />
      <add key="connection.provider" value="NHibernate.Connection.DriverConnectionProvider" />
      <add key="connection.connection_string_name" value="main" />
      <add key="proxyfactory.factory_class" value="NHibernate.ByteCode.Castle.ProxyFactoryFactory, NHibernate.ByteCode.Castle"/>

    </config>
  </activerecord>

关于我需要什么的任何想法更改\添加? 谢谢

Now and again im getting the following error
"Seems that the framework isn't configured properly. (isWeb != true and SessionScopeWebModule is in use) Check the documentation for further information"

and my web app crashes

my web.config is so..

<activerecord isweb="true">
    <config>
      <add key="connection.driver_class" value="NHibernate.Driver.SqlClientDriver" />
      <add key="dialect" value="NHibernate.Dialect.MsSql2005Dialect" />
      <add key="connection.provider" value="NHibernate.Connection.DriverConnectionProvider" />
      <add key="connection.connection_string_name" value="main" />
      <add key="proxyfactory.factory_class" value="NHibernate.ByteCode.Castle.ProxyFactoryFactory, NHibernate.ByteCode.Castle"/>

    </config>
  </activerecord>

any ideas, on what I need to change\add?
thank you

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

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

发布评论

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

评论(1

¢蛋碎的人ぎ生 2024-11-18 12:52:59

isWeb 区分大小写。

<activerecord isWeb="true">

来自消息来源:

XmlAttribute isWebAtt = section.Attributes["isWeb"]; 

他们对案件并不友善:)

isWeb is case sensitive.

<activerecord isWeb="true">

From the source:

XmlAttribute isWebAtt = section.Attributes["isWeb"]; 

They aren't being nice about case :)

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