UPDATE4: (SOLVED)
- made new project;
- imported sources;
- updated SignalR to latest version (through NuGet Package Manager Console);
- made corresponding changes (according to official doc: https://github.com/SignalR/SignalR/wiki/QuickStart-Hubs).
In the end, everything worked like a charm. Thanks SignalR team!
good job with this SignalR, can't wait to try it!
I found this tutorial - SignalR - 5 Minute Demo (http://www.youtube.com/watch?v=tEBaDo_sFfA)
BUT, I have some problems: - i installed VS2012Ultimate, after creating a sample ASP.NET MVC4 Internet App, right click on References -> Manage NuGet Packages, search SignalR.... doesn't appear like in the video, none of those: SignalR, SignalR.Js, SignalR.Server... :( Does anyone knows why?
UPDATE1: I installed SignalR (http://nuget.org/packages/microsoft.aspnet.signalr) and after that, i installed that asp.net fall update (http://www.microsoft.com/en-us/download/details.aspx?id=35493).
BUT i get the error from below regarding function "writeMessage" from ChatHub.cs.
"Error1'Microsoft.AspNet.SignalR.Hubs.HubConnectionContext' does not contain a definition for 'writeMessage'
and no extension method 'writeMessage' accepting a first argument of type
'Microsoft.AspNet.SignalR.Hubs.HubConnectionContext' could be found (are you missing a using directive or an
assembly reference? ..\MvcApplication1\Hubs\ChatHub.cs"
After "resolving" this error using Clients.All. or Clients.Others. and start hub just after chat initialization and using chat.writeMessage, i get two errors when loading in GoogleChrome Console:
in Index.cshtml:
"Uncaught TypeError: Cannot set property 'writeMessage' of undefined"in localhost:3420/signalr/hubs:
"Uncaught TypeError: Object #<Object> has no method 'createProxy'"on this line:
// Create and store the hub proxy hub._.proxy = hubConnection.createProxy(hub._.hubName);
After "resolving" this error using Clients.All. or Clients.Others. and start hub just at the end, and using chat.client.writeMessage (i installed Microsoft.AspNet.SignalR.Client), i get two errors when loading in GoogleChrome Console:
in Index.cshtml:
"Uncaught TypeError: Cannot read property 'client' of undefined"
Can anyone help me, please?! :(
Thanks in advance!!
File ChatHub.cs:
namespace MvcApplication1.Hubs
{
//[Microsoft.AspNet.SignalR.Hubs.HubName("chathub")]
[Microsoft.AspNet.SignalR.Hubs.HubName("chatHub")]
public class ChatHub : Microsoft.AspNet.SignalR.Hubs.Hub
{
public void BroadcastMessage(string message)
{
//rebroadcast the message to all the connected clients
Clients.writeMessage(message);//ERROR on compile
//I tried both of the followings, give no error, BUT when i press Submit doesn't appear messages anywhere
//Clients.All.writeMessage(message);
//Clients.Others.writeMessage(message);
}
}
}
File Index.cshtml:
@section scripts
{
<script type="text/javascript" src="~/Scripts/jquery.signalR-1.0.0-alpha2.js"></script>
@*not working, GET localhost:3420/SignalR 500 (Internal Server Error)*@
@*<script type="text/javascript" src="SignalR"></script>*@
@* with any of these declarations i don't get 500 error any more, but still not working *@
<script type="text/javascript" src="~/signalr/hubs"></script>
@*<script type="text/javascript" src="../signalr/hubs"></script>*@
<script type="text/javascript">
$(document).ready(function()
{
//i tried these, but in vain..
//var connection = new Microsoft.AspNet.SignalR.Connection("localhost:3420/");
//$.connection.hub.url = 'localhost:3420/signalr/';
var chat = $.connection.chatHub;
$.connection.hub.start();
//Uncaught TypeError: Cannot set property 'writeMessage' of undefined
//chat.writeMessage = function (msg)
//Uncaught TypeError: Cannot read property 'client' of undefined
chat.client.writeMessage = function (msg) {
{
$("#messages").append("<li>" + msg + "</li>");
}
$("#buttonSubmit").click(function ()
{
//chat.broadcastMessage($("#txtInput").val());
chat.server.broadcastMessage($("#txtInput").val());
});
$.connection.hub.start();//just one error at client
});
</script>
}
<h5>Chat with SignalR</h5>
<fieldset>
<legend>SignalR Demo</legend>
<label for="txtInput">Chat Message</label>
<input id="txtInput" type="text" />
<button id="buttonSubmit">Submit</button>
<fieldset>
<legend>Messages</legend>
<ul id="messages"></ul>
</fieldset>
</fieldset>
UPDATE2:
After Tim B James'advices, I:
- created new ASP.NET MVC 4 project;
- installed SignalR via NuGet with suggested commands;
- tried the source code example with Hubs from https://github.com/SignalR/SignalR/wiki/QuickStart-Hubs but NOT working!
Mentions:
- put the code from function Main, into my HomeController.cs -> function: public ActionResult Index();
- changed this line:
var hubConnection = new HubConnection("localhost/mysite");
with this one:
var hubConnection = new HubConnection("localhost:14079");
BUT, my page doesn't load ("Waiting for localhost...")
- if i don't put the code from Main into controller's function,
i get this error:
"Uncaught TypeError: Cannot read property 'chat' of undefined "
on this line:
var chat = $.connection.chat;
UPDATE3:
UPDATE2 with strikethrough lines
UPDATE4: (SOLVED)
Indications at the beginning.
maininto a controller. That is not how it works. That is code for a console application, and not an MVC controller. Have you read over the documentation? How to create apersistentconnection, JavaScript Client, and .Net Client? – Tim B James Nov 20 '12 at 8:55Can not read property 'chat' of undefined"– Florin Vîrdol Nov 20 '12 at 9:16