我正在使用 SignalR 和 ASP.NET 4.5 webforms。我无法让客户端与服务器通信,反之亦然。我想要实现的只是能够测试客户端如何触发服务器功能以及服务器如何触发客户端功能。这是我使用的代码:
客户端代码(HitCounter.aspx)
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script type="text/javascript" src="Scripts/jquery-1.8.2.js"></script>
<script src="Scripts/jquery.signalR-0.5.3.min.js"></script>
<script type="text/javascript" src="SignalR/Hubs"></script>
<style>
#currentHitCount {
font-family: Arial;
font-size:40pt;
margin-left:auto;
margin-right:auto;
display:block;
text-align:center;
}
</style>
</head>
<body>
<div id="currentHitCount"></div>
<script type="text/javascript">
$(function () {
var hub = $.connection.hitCounter;
$.extend(hub, {
showHitCount: function (hitCount){
if(hitCount > 1){
$('#currentHitCount')
.html("This site has had " + hitCount + " hits.");
}
else{
$('#currentHitCount')
.html("This site has had " + hitCount + " hit.");
}
},
addMessage: function (str) {
$('#currentHitCount')
.html("Getting Message: " + str);
}
});
$.connection.hub.start(function () {
hub.addMessage("test");
hub.addHit();
});
$.connection.hub.stateChanged(function (change) {
if ($.signalR.connectionState["connected"] === change.newState) {
}
});
$.connection.hub.error(function () {
});
});
</script>
<div style="background-color:red; width:290px; height:200px; color:white; position:absolute; top:100px; left:30px;" id="thebutton">test</div>
</body>
</html>
服务器端代码(App_Code / HitCounterHub.cs)
using SignalR.Hubs;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Web;
[HubName("hitCounter")]
public class HitCounterHub : Hub, IDisconnect
{
static int _hitCount;
public void addHit(string pageId)
{
_hitCount += 1;
Clients.showHitCount(_hitCount);
}
public Task ClientCallingServer()
{
_hitCount += 1;
return Clients["foo"].showHitCount(_hitCount);
}
public Task Join()
{
return Groups.Add(Context.ConnectionId, "foo");
}
public Task Send(string message)
{
_hitCount += 1;
return Clients["foo"].addMessage(message);
}
public Task Disconnect()
{
return Clients["foo"].leave(Context.ConnectionId);
}
}
我在IIS7.5上本地运行代码但是在Visual Studio 2012中运行代码时我得到并出错。
错误:
本地主机/ signalr / signalr /发送传输= serverSentEvents&安培;?的ConnectionId = 400f1302-6c8e-418E-的14 C-da95f836a29d 500(内部服务器错误)
使用Chrome调试程序,错误页面显示: 无法解析'addHit'方法。
同样,我要做的是做一个简单的测试来检查如何从服务器调用服务器和客户端服务器。
感谢。
答案 0 :(得分:2)
您无法解决addHit方法的原因是因为您在服务器上具有与客户端相同的功能名称。
AKA要调用服务器,你正在做hub.addHit(“laksjdf”)。但要打电话给客户端它是同一件事:hub.addHit(“laksjdfldksj”);因此存在歧义。更改客户端或服务器端功能的名称,使其在命名意义上是唯一的。
此问题将在SignalR的下一版本中修复。