尝试按照有关如何设置简单示例应用程序的教程进行操作。但是在运行示例时出现错误:
WebSocket 连接到“ws://127.0.0.1:41589/Generic”失败:意外响应代码:404
不确定这是我的项目还是失败的 chrome。
创建了一个项目:
在 Nuget 中运行:Install-Package XSockets
并添加了一个带有以下代码的html文件:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script src="Scripts/jquery-1.9.1.js" type="text/javascript"></script>
<script type="text/javascript" src="Scripts/XSockets.latest.js"></script>
<script>
$( document ).ready(function() {
var url = "ws://127.0.0.1:41589/";
var controller = "Generic";
var ws = new XSockets.WebSocket(url + controller);
ws.subscribe(XSockets.Events.open, function (connection) {
console.log("This is your connection properties", connection);
});
});
</script>
</head>
<body>
</body>
</html>
但是当使用 Ctrl + Shift + j 在 Chrome 中观看控制台时,它会给出以下消息:
Web 项目设置为: