我花了太多时间试图解决这个问题,而且我开始用尽这些问题来处理这个问题。请随意链接到有关此问题的其他主题,但我可能已经咨询过那些没有成功的主题。
我正在通过此网址关注Microsoft的Signalr示例应用:https://docs.microsoft.com/en-us/aspnet/signalr/overview/getting-started/tutorial-getting-started-with-signalr
我在Windows Server 2012 R2,SignalR 2.2.1和.Net 4.5.2上运行IIS 8.5,当我从Visual Studio运行应用程序时,这个简单的聊天应用程序按预期运行。一旦我把它扔到IIS上,它就会中断(404生成的代理)。下面是我正在使用的代码和错误输出。
的index.html:
<!DOCTYPE html>
<html>
<head>
<title>SignalR Simple Chat</title>
<style type="text/css">
.container {
background-color: #99CCFF;
border: thick solid #808080;
padding: 20px;
margin: 20px;
}
</style>
</head>
<body>
<div class="container">
<input type="text" id="message" />
<input type="button" id="sendmessage" value="Send" />
<input type="hidden" id="displayname" />
<ul id="discussion"></ul>
</div>
<!--Script references. -->
<!--Reference the jQuery library. -->
<script src="Scripts/jquery-3.1.1.min.js"></script>
<!--Reference the SignalR library. -->
<script src="Scripts/jquery.signalR-2.2.1.min.js"></script>
<!--Reference the autogenerated SignalR hub script. -->
<script src="signalr/hubs"></script>
<!--Add script to update the page and send messages.-->
<script type="text/javascript">
$(function () {
// Declare a proxy to reference the hub.
var chat = $.connection.chatHub;
// Create a function that the hub can call to broadcast messages.
chat.client.broadcastMessage = function (name, message) {
// Html encode display name and message.
var encodedName = $('<div />').text(name).html();
var encodedMsg = $('<div />').text(message).html();
// Add the message to the page.
$('#discussion').append('<li><strong>' + encodedName
+ '</strong>: ' + encodedMsg + '</li>');
};
// Get the user name and store it to prepend to messages.
$('#displayname').val(prompt('Enter your name:', ''));
// Set initial focus to message input box.
$('#message').focus();
// Start the connection.
$.connection.hub.start().done(function () {
$('#sendmessage').click(function () {
// Call the Send method on the hub.
chat.server.send($('#displayname').val(), $('#message').val());
// Clear text box and reset focus for next comment.
$('#message').val('').focus();
});
});
});
</script>
</body>
</html>
ChatHub.cs:
using System;
using System.Web;
using Microsoft.AspNet.SignalR;
namespace SOChatApp
{
public class ChatHub : Hub
{
public void Send(string name, string message)
{
// Call the broadcastMessage method to update clients.
Clients.All.broadcastMessage(name, message);
}
}
}
Startup.cs:
using Microsoft.Owin;
using Owin;
[assembly: OwinStartup(typeof(SignalRChat.Startup))]
namespace SignalRChat
{
public class Startup
{
public void Configuration(IAppBuilder app)
{
// Any connection or hub wire up and configuration should go here
app.MapSignalR();
}
}
}
浏览器控制台错误:
Failed to load resource: the server responded with a status of 404 (Not Found)
指向http://sub.domain.com/MyApp/signalr/hubs
我的应用程序以我在本文顶部链接的演示应用程序的指示开始作为空Web应用程序,因此与MVC样式应用程序相关的脚本引用问题不应适用于此。
我尝试了许多与Signalr 2相关的解决方案。因为我在IIS 8.5上,所以它不应该与无扩展名网址有关。我的IIS上还有一些建议安装的功能,包括WebSocket协议,但我被告知这不是100%必要的。我已经尝试重新启动w3svc,回收应用程序池,以及清除ASP.NET临时文件缓存。
我只是搞砸了吗?
更新
在@klabranche的广泛帮助下,我决定不使用我在此问题顶部链接的基本示例教程。
相反,他建议我在这里尝试这个教程:https://docs.microsoft.com/en-us/aspnet/signalr/overview/getting-started/tutorial-getting-started-with-signalr-and-mvc
遵循本教程就足以让应用程序在IIS上运行。 我必须以.net 4.5而不是4.5.2为目标。
答案 0 :(得分:0)
404表示Web服务器找不到您的文件。您从localhost移动到链接相关性发生变化的服务器。在ASP.Net中,相对路径由波形符(~/
)表示。
在我看来,您的脚本引用不是相对的,因为您将它移动到服务器的位置不符合预期。
将〜/添加到所有脚本路径。
而不是<script src="signalr/hubs"></script>
尝试&lt; script src="~/signalr/hubs"></script>
docs使用〜/但遗憾的是样本没有。正如您所表达的,它将与IIS Express一起使用localhost。
您也可以generate the proxy file。阅读&#34;如何为SignalR生成的代理部分创建物理文件,了解如何执行此操作。你不必这样做才能让SignalR工作,但是想把它扔到那里作为另一种选择。