6

Debian Sid,单声道 3.0。我正在尝试运行 mvc 应用程序(它在将 mono 升级到 3.0 之前工作)。这是抛出的异常:

Exception caught during reading the configuration file:
System.MissingMethodException: Method not found: 'System.Configuration.IConfigurationSectionHandler.Create'.
  at System.Configuration.ClientConfigurationSystem.System.Configuration.Internal.IInternalConfigSystem.GetSection (System.String configKey) [0x00000] in <filename unknown>:0 
  at System.Configuration.ConfigurationManager.GetSection (System.String sectionName) [0x00000] in <filename unknown>:0 
  at System.Configuration.ConfigurationManager.get_AppSettings () [0x00000] in <filename unknown>:0 
  at Mono.WebServer.Apache.Server.get_AppSettings () [0x00000] in <filename unknown>:0 
  at Mono.WebServer.Apache.Server+ApplicationSettings..ctor () [0x00000] in <filename unknown>:0 

我还找到了在 /usr/bin/mod-mono-server4 中进行更改的提示:

#!/bin/sh
exec /usr/bin/mono $MONO_OPTIONS "/usr/lib/mono/4.0/mod-mono-server4.exe" "$@"

至:

#!/bin/sh
exec /usr/bin/mono $MONO_OPTIONS "/usr/lib/mono/4.5/mod-mono-server4.exe" "$@"

不幸的是,没有这样的文件:/usr/lib/mono/4.5/mod-mono-server4.exe(/usr/lib/mono/4.5/ 目录中没有这样的文件)。

你有什么想法吗?我的应用程序是 ServiceStack 简单网页,它适用于 mono 2.10。但是升级到3.0之后就不行了。

4

1 回答 1

7

您需要为该文件添加符号链接

# ln -s /usr/lib/mono/4.0/mod-mono-server4.exe /usr/lib/mono/4.5/mod-mono-server4.exe

这样它仍然会使用 mod-mono-server4.exe 但使用 4.5 dll

于 2013-05-16T16:17:34.140 回答