XSockets.NET is an open-source real-time framework for .NET 4.0+ and Mono.
Questions tagged [xsockets.net]
96 questions
0
votes
2 answers
Is there a limit to the number of function inside a XSockets Controller
I have a working controller (plugin) with lots of methods inside, however adding an additional method prevents the worker role from plugin-in the controller.
I'm running XSockets 4.0 on an Azure Worker Role

pmeyer
- 890
- 7
- 31
0
votes
1 answer
No Definition for Plugin in XSockets.net
I am working on a RTC Project in ASP.net and using XSockets.net for signalling purpose in VS 2013. But as I install XSockets.net 4.1.0 and try to create Xsockets.Net.BootStrapper class under App_Start folder it comes up with an error that Project…

Faisal Naseer
- 4,110
- 1
- 37
- 55
0
votes
1 answer
Detecting xSocket connection loss in client
This is for Xsockets.
I have a client connected to a socket, lets say the client looses internet connection, is there a xSocket function that will get called on the client that will let me know that the client (itself) is not connected to the socket…

pmeyer
- 890
- 7
- 31
0
votes
1 answer
XSockets with .NET Compact Framework
I've been trying to set up a new Smart Device Project (VS 2008) with XSockets.Client 4.0.0 for .NET 3.5, but after lots and lots of trials and errors, still no such luck.
The thing is, if I add all three package dependencies (XSockets.Client35,…

Isabelle
- 631
- 1
- 7
- 14
0
votes
1 answer
How to make XSockets.WebSocket work on HTTPS?
First I'd like to apologize if this question has already been answered on other posts.
I'm pretty new in WebSockets and WebRTC and here's my scenario.
I created an MVC4 application in VS 2012 and install the a sample WebRTC project via nuget package…

Red
- 1
0
votes
1 answer
XSockets InvokeToAll memory exception
I am using XSockets to send real time image data to any connected clients. Each image is fairly large(up to 1080p quality) and the video can be up to 30fps. Therefore there is a fair amount of data being shifted around. Whenever I get a new image I…

const_ref
- 4,016
- 3
- 23
- 38
0
votes
1 answer
XSocketController.SendTo replacement method in Xsockets 4.0
What I am trying to do is to recreate that sample with 4.0.
In the WebRTCSample in CustomBroker and ContextHelper files is called a method SentTo witch sends an object as an ITextArgs
obj.SendTo(c => c.Peer.Context.Equals(context), obj.Find(q =>…

viktorfilim
- 135
- 2
- 10
0
votes
1 answer
Rendering series of images as video onto a webpage
I am trying to incorporate the rendering of H264 IP cameras/Video streams onto a webpage.
I have seen tutorials that use things like XSockets and render a webcam's footage onto a Video element or onto a canvas and would like to replicate this but…

const_ref
- 4,016
- 3
- 23
- 38
0
votes
1 answer
Using PrincipalPermissions attribute in XSockets.Net 4.0
Inside XSockets controller I need to call Api (Assembly) that has
PrincipalPermissions attribute on its methods for specific roles, and is not aware of host it is running in (can be also called in batch process, WebApi controller, etc...)
I…

Alex Michel
- 416
- 3
- 13
0
votes
2 answers
XSockets.Net - how to manage NHibernate Session Context
I wonder what is the best way to manage NHibernate Session Context
when using NH data layer from Xsockets controller.
Particularly I refer to self hosted winservice/console application or Azure worker role,
where HTTPContext is not available.
Of…

Alex Michel
- 416
- 3
- 13
0
votes
1 answer
Socket prog in real time system for C#
i am interested in Client & Server application. By the way, i am working on real time project. I have come accross a series problem for me and i cannot figure out. Would you help me about this sowftware. Let me explain my project below;
my project…

Gökhan
- 1
0
votes
1 answer
WebSockets in Azure scalable environment
I have plain old SOAP "REST" service written in WCF which is hosted on Azure as WebRole. I am currently writing website which will consume this service and show some nice GUI for it. WebSite will be hosted as WebRole too and is written in ASP MVC…

LightCZ
- 695
- 1
- 8
- 20
0
votes
1 answer
Message not recieved when sent from OnOpen event
I am using XSockets 3.x (latest).
I have set up a controller:
public class NotificationsController : XSocketController
{
public NotificationsController()
{
// Bind an event for once the connection has been opened.
this.OnOpen…

tomsseisums
- 13,168
- 19
- 83
- 145
0
votes
0 answers
XSocket Upgrade from 3.x to 4.0 - System.InvalidOperationException on GetExport
We have a server application that runs as a Console Application and it has all been working great with 3.x version of XSockets. We are currently upgrading to 4.0 to benefit from the improved binary messaging.
At the moment we have everything…

David Ritchie
- 527
- 3
- 17
0
votes
1 answer
XSockets 4.0 ClientGuid replacment?
I'm re-factoring a project that currently uses XSockets 3.x where we keep track of the mapping between our playback sessions and clients using the old ClientGuid property.
With 4.0 what is the intended replacement for ClientGuid? I can find…

David Ritchie
- 527
- 3
- 17