Tagged Questions
0
votes
1answer
61 views
Client-Server-Client messaging with Windows Azure
Let's assume there are number of clients that asynchronously send messages for processing to Azure Cloud. The messages are pushed to a queue and processed relatively quickly (few seconds for each). ...
5
votes
1answer
95 views
Security alert when using “longpoling” connection with SignalR, while in secure connection (HTTPS) | IE8
There is only one problem, I am just getting a "Securty Waring" alert in IE 8 in my SignalR chat application while in HTTPS
I am using longpolling as transport type when in IE8. Its working fine in ...
0
votes
2answers
491 views
Asp.Net Signal R - Detect Changes in Database ? Asp.net Web Forms
So I have a List View inside an Update Panel
Update Panel
List View
Email 1
Email 2
Email 3
...
I'm trying to do an inbox similar to GMAIL in ASP.NET, the ...
0
votes
0answers
75 views
refreshing MVC webgrid when server side action is completed
I have a file upload application. Once the user uploads a file, the user is redirected to a status page with a web grid that displays all the files uploaded and their corresponding processed files(The ...
1
vote
1answer
160 views
Long running ajax vs polling
I'm trying to decide what the best solution would be for my web application. I have a page that will fire an arbitrary number of ajax requests to retrieve data from the server. For example a page on ...
0
votes
1answer
184 views
Polling for database changes: OracleDependency, SignalR, or is that too much?
I suppose I'm looking for a best practice, but I've read conflicting information on the various ways to do this. I'm attempting to put together an example of a webpage that contains a grid of ...
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 ...
1
vote
1answer
192 views
SignalR: somtimes no data returnes when trying to load images
Once in a while when loading image like this:
dispatch_async(dispatch_get_global_queue(0, 0), ^
{
NSData *data = [[NSData alloc] initWithContentsOfURL:someImgUrl.jpg];
if (data == nil)
{
...
0
votes
0answers
122 views
Any tips on using SignalR (ajax long polling) over cellular network?
I'm working on a web application that uses SignalR (ajax long polling and server sent events) where the primary way to access the application is over the cellular network. I've noticed in some ...
0
votes
0answers
199 views
SignalR opens 1 connection per second, using both long polling and server sent events
I am using SignalR 5.1, which I got using NuGet. The client is a Windows Phone 7 app, so it is using "SignalR.Client.WP7". The server is hosted on IIS8. My development machine is Windows 8, the ...
0
votes
1answer
1k views
SignalR long polling transport
I'm using SignalR 0.5.3 with hubs and I'm explicitely setting transport to long polling like this:
$.connection.hub.start({ transport: 'longPolling' }, function () {
console.log('connected');
});
...
1
vote
0answers
217 views
How to close connection just after getting Long Polling request? (SignalR)
I hit the following problem. Sometimes the server should make a response just after getting the long polling request like this:
/MvcSignalRTest/signalr/?transport=longPolling&...
So I would like ...
2
votes
2answers
1k views
Simple jquery ajax vs SignalR vs AspComet
I'm reading about long polling, comet etc and, working on .Net, I read all I have found about SignalR and AspComet. I'm a newbie about comet & similar but it is not clear to me what are the ...
8
votes
3answers
3k views
How to determine server disconnection from SignalR client?
The question is how can SignalR JavaScript client detect when connection with server is lost?
Thanks for any reply!