-2
votes
1answer
66 views

How my win form application can interact with signalr

I develop an asp.net & signalr based chat apps where people can send message to specific user. Now I want to develop a win form chat apps which will connect to my asp.net based signalr hub and ...
0
votes
2answers
26 views

How to broad cast message or fire any event from web apps to win apps

suppose i have one web site from where job applicant post their CV along with other data. i have another win form apps which is invoke by win scheduler periodically. when win form apps run then ...
3
votes
1answer
382 views

SignalR C# Client 407 Proxy Authentication Required

I'm trying to build a C# SignalR app (console app on the server, winforms app on the client), and it works great (in Visual Studio) when both the client and server are on the same PC, but when I ...
0
votes
3answers
533 views

Self Hosting SignalR and Access Control Allow Origin

I'm trying to achieve the following: 1. Server (WinForms for now) that hosts a SignalR persistent connection 2. ASP.NET MVC client The server runs on port 8000 and the client runs (via Visual Studio) ...
0
votes
1answer
69 views

How to show a windows from in a SignalR callback method?

I am working on a simple chat application that uses SignalR for its communication. I want to show a MessageForm whenever a private message is received from another user. The problem is , the callback ...
2
votes
2answers
1k views

how to setup a C# winforms application to host SignalR Hubs?

I have read through the SignalR docs and watched a few of the videos, however I can not get SignalR to host within a winforms application. I have tried using source code off the SignalR wiki: ...
1
vote
1answer
796 views

Signalr hub connection management in client winforms app

I'm looking for advice on how best to handle Signalr hub connections in a winforms app acting as the client. I have a web app as the Signalr (v0.5.1) server and a client winforms app using hubs. ...
0
votes
1answer
729 views

Want to use SignalR in Windows Application to sync my clients

i want to create a application where i will use a Windows application as a server and a web application as a client. Now i want to sync my client(web application) with my server(Windows application). ...