Friday, May 10, 2024
71
rated 0 times [  73] [ 2]  / answers: 1 / hits: 46322  / 11 Years ago, sat, june 1, 2013, 12:00:00

I am trying to get a super simple hub connection working cross-domain but having no luck. I've read dozens of posts and done everything mentioned but still no success.



My server hub is here



public class ChatHub : Hub
{
public void Send(string name, string message)
{
Clients.All.broadcastMessage(name, message);
}
}


My server MapHubs call is here



RouteTable.Routes.MapHubs(new HubConfiguration { EnableCrossDomain = true });


Any my javascript client is here



<!DOCTYPE html>

<html>
<head>
<meta name=viewport content=width=device-width />
<title>Index</title>
<script src=~/Scripts/jquery-2.0.1.min.js></script>
<script src=~/Scripts/jquery.signalR-1.1.2.min.js></script>
<script src=/signalr/hubs></script>
</head>
<body>
<div class=container>
<input type=text id=displayname value=Test />
<input type=text id=message value=I'm here />
<input type=button id=sendmessage value=Send />
</div>
<script type=text/javascript>
$(function ()
{
$.connection.hub.url = 'http://<my url>/';
var chat = $.connection.chatHub;
alert(chat);
$.connection.hub.start().done(function ()
{
alert(Connection succeeded);
}).fail(function ()
{
alert(Connection failed);
});
});
</script>
</body>
</html>


The problem is that it never reaches the Connection succeeded or failed alerts and the alert(chat) call returns undefined.



I've tried several combinations for the $.connection.hub.url line



$.connection.hub.url = 'http://<My url>';
$.connection.hub.url = 'http://<My url>/';
$.connection.hub.url = 'http://<My url>/signalr';
$.connection.hub.url = 'http://<My url>/signalr/';


The developer console in Chrome and Firebug give me the error



Uncaught Error: SignalR: Error loading hubs. Ensure your hubs reference is correct, e.g. <script src='/signalr/hubs'></script>. 


On the same domain it works fine. This is really starting to drive me crazy so any help would be appreciated.



Thanks,
Jason


More From » cross-domain

 Answers
8

Your server is being hosted cross domain yet you're trying to get the hubs from the current domain. Therefore it's failing to retrieve the hubs file and you don't actually have a proxy to work with (which is why everything is not working).



So you have two options:




  1. Manually create the hubs file and host it on the current domain: http://www.asp.net/signalr/overview/hubs-api/hubs-api-guide-javascript-client#manualproxy.

  2. Use the raw hub connection API and do not include the signalr/hubs file at all.



Here's a code snippet of how you can use the raw hub connection API: http://www.asp.net/signalr/overview/hubs-api/hubs-api-guide-javascript-client#nogenconnection (second code snippet).


[#77877] Thursday, May 30, 2013, 11 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
gageherberth

Total Points: 249
Total Questions: 115
Total Answers: 119

Location: Liechtenstein
Member since Sun, Sep 12, 2021
3 Years ago
;