0
votes
1answer
64 views

Using ServiceStack.Text as JSON Serializer for SignalR

To have consistent serialization across my application layers, I want to use the same Serialization library (ServiceStack.Text) for SignalR that I use everywhere else. While following SignalR's Wiki ...
0
votes
1answer
129 views

signalr stops working in ie10

I am trying to learn signalR and i have a little test working. It works in IE 9 and chrome but when i try to run it on ie10, i get t Please ensure json2.js is referenced before the SignalR.js ...
0
votes
2answers
250 views

ASP.NET Web API: Use the default serializer

Is there a simple way to use ASP.NET Web API's default serializer? Mine is configured in that fashion in WebApiConfig.cs config.Formatters.JsonFormatter.SerializerSettings.Converters.Add(new ...
0
votes
1answer
62 views

SingalR Maping json object to c# object

Does SignlaR automatily map json object sent from to client to c# object? if so, what could i be doing wrong here? C# Object public class ChatHub :Hub { public void ...
1
vote
1answer
405 views

Sending JSON with SignalR

I want to send objects from Javascript to Server using Signalr, but the server side method isn't invoked. // Model-Class generated by EF5.0 public partial class ttFragen { ... public ...
2
votes
1answer
246 views

Using JavaScript to deserialize references in a complex object graph from SignalR/Json.NET

I'm using SignalR to return a complex object graph to my JavaScript client. This object graph has multiple references throughout to the same object, so the JSON that SignalR/Json.NET returns looks a ...
1
vote
1answer
83 views

How to force signalR to use POST instead of GET on IE? (To workaround the max RequestUrl length limitation)

I am using SignalR to submit JSON data from client to server. This works fine on Firefox and Chrome but fails on IE. Digging deeper, i see that though all three are using 'Long-Polling' mechanism ...
0
votes
0answers
93 views

Sending base class over json and converting to parent class on client side

I have two classes Group and Contact. They both extend my base class ChatTarget. I am using Signalr to send these objects to my clients. My server sends and my client endpoints expect a ChatTarget ...
2
votes
2answers
298 views

SignalR Unexpected character encountered while parsing value: <

I am using a WinRT client. I receive this exception when I try to send a message. Unexpected character encountered while parsing value: <. The problem occurs when you send an object to the hub, ...
1
vote
0answers
127 views

Wijmo LineChart Live feed from SignalR, initial data points from JSON URL

I have been struggling for a while with this. Too long. Hopefully soon somebody can help me with the code that allows me to do the following: Over the course of a users session, we are creating ...
0
votes
1answer
427 views

How to return JSON to browser from model class using SignalR and URL call to Web API?

Here's what's going on. I have an ASP.NET MVC 4 Web API web application. I can call API resources via URL. One of these functions get performance monitoring data for a specified amount of time and ...
0
votes
1answer
520 views

SignalR : Not invoking method in hub to return JSON in real-time

I am on the verge of returning JSON in real-time while a performance monitoring process is running using SignalR (although it not working). Currently I can get the full JSON to return once the process ...
0
votes
1answer
308 views

SignalR client connection.receive(data) is treated as an array of characters instead of an array of objects

I have a SignalR client application that receives a Json serialized list of objects. When I run the following script on the incoming data: connection.received(function (data) { $.each(divIds, ...