使用NServiceBus比使用RabbitMQ的.net驱动程序有什么好处(假设我们可以用AMQP替换MSMQ).NSB是否提供AMQP中无法直接提供的任何其他功能或抽象.
当我尝试为我的最新应用创建第一个排行榜时,我收到了上述错误.有谁知道如何解决这个错误?
我确实有另一个带排行榜的应用程序,但肯定不会影响这个应用程序.作为参考,我正在尝试创建一个单一的排行榜.
当我尝试浏览到我的 IIS 站点时,当前出现内部服务器错误,但没有有用的错误消息。我注意到的一件事是,当我访问 IIS 模块时,出现上述错误或类似错误。我的 web.config 非常基本,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
</handlers>
<aspNetCore processPath="dotnet" arguments=".\MyWebsite.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" />
</system.webServer>
</configuration>
Run Code Online (Sandbox Code Playgroud)
当我注释掉时:
<aspNetCore processPath="dotnet" arguments=".\MyWebsite.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" />
Run Code Online (Sandbox Code Playgroud)
我的 IIS 模块已加载,但我仍然收到内部服务器错误。
最初,我认为这可能是我如何安装 .Net Core 1.1 运行时的错误,但是当我从命令行运行命令 dotnet MyWebsite.dll 时,我的网站运行良好。
任何想法/帮助表示赞赏,谢谢!
.net ×1
.net-core ×1
amqp ×1
game-center ×1
iis ×1
ios ×1
nservicebus ×1
rabbitmq ×1
web-config ×1