Click here to Skip to main content
15,892,005 members
Everything / WebSocket server

WebSocket server

WebSocket-server

Great Reads

by Darko Jurić
WebSocket RPC library for .NET with auto JavaScript client code generation, supporting ASP.NET Core.
by SleepyCrat
Create a small "minigame" using asp .net core 3.0, Angular, and websockets implemented using vanilla javascript.

Latest Articles

by SleepyCrat
Create a small "minigame" using asp .net core 3.0, Angular, and websockets implemented using vanilla javascript.
by Darko Jurić
WebSocket RPC library for .NET with auto JavaScript client code generation, supporting ASP.NET Core.

All Articles

Sort by Score

WebSocket server 

14 Jan 2018 by Darko Jurić
WebSocket RPC library for .NET with auto JavaScript client code generation, supporting ASP.NET Core.
18 Feb 2020 by SleepyCrat
Create a small "minigame" using asp .net core 3.0, Angular, and websockets implemented using vanilla javascript.
26 May 2020 by Garth J Lancaster
I think, short answer 'yes', long answer, look here Key metrics for monitoring Tomcat | Datadog[^] at the notes under 'Requests and worker Threads' particularly Quote: Upon startup, Tomcat will create threads based on the value set for...
16 Feb 2024 by Andre Oosthuizen
You have basically answered your own question without knowing it - Quote: Then I made my consumers.py (here I'm a little bit confused, isn't it better to refer to my room unique_id instead of name, since the ID is unique and not the name in my...
1 Jan 2018 by Member 13602102
My node.js server randomly shuts down after a client has connected from a web and then closes the tab (simple disconnection). The server: var websocketServer = require("ws").Server, server = new websocketServer({port: 9000}); var date = require("./modules/date"); console.log("[" +...
21 May 2018 by ranio
I am getting the exception of operation not supported in WCF Test Client. I am trying to set a Client Server Communication over the Web Socket. Server Side I have set a WCF Service but on running the svc file I am getting the error mentioned "Operation not Supported in WCF Test Client" What...
23 May 2018 by ranio
I want to access the response value with in the WCF callback handler while communicating with the WCF Service hosted as server from Client Side in asp.net with c# using Visual Studio 2017. I am trying to communicate client server side over a web socket. I have hosted the WCF Web Service...
3 Jul 2018 by ranio
I want to connect via web socket in asp.net with c#. I am having client project as a windows application and server project hosted as windows service with local system mode. I am unable to connect the client to server. If server project is a windows application no such issue. What I have...
5 Jul 2018 by ranio
I want to avoid trimming of data send from a client to server interface via web socket. I am doing the connectivity and message sending with the client and server interface as separate Windows Application projects. I am able to connect with the server from client while sending smaller data....
5 Jul 2018 by ranio
I am getting the end of message send from client to server side as false via web socket in asp.net with c#. I am sending a large data via web socket. For doing the same i am adding the bytes to the buffer while receiving the message. What I have tried: Core Code is as below: ...
16 Jul 2018 by ranio
I want to split a buffer of a large data into chunks while using websocket in c#. I am trying to send over a web socket but I am not getting the entire data. byte[] buffer = encoding.GetBytes(stringtoSend); I want to split it as chunks to the server side from client. What I have tried: ...
16 Jul 2018 by Jochen Arndt
If you have problems at the receiving side, sending data in chunks will not solve them. It will make your code more complex and might introduce new problems. Try to solve the receiving problems instead. I can only guess here: You are sending a string and have problems to detect the length when...
26 May 2020 by Member 13702159
I have a webSocket server which is runnnig on Tomcat. When the client open a web socket connection, this connection corresponds with one thread from Tomcat pool? I mean when I have 200 clients then thread pool in Tomcat which is default 200...
2 Aug 2020 by Member 14876167
I need to create a page based on websocket for transfering data between visitors and between visitors and server (online auction). Process: The website is hosted on a shared server somewhere .... The website administrator opens his admin page on...
4 Jul 2020 by MadMyche
Microsoft does have tutorials for web pages using SignalR; go through them and learn how they work, and then work from there to get to where you need to be. Microsoft Docs: Get started with ASP.NET Core[^]OP: In my opinion, the solution is using...
2 Aug 2020 by Member 14876167
I dropped SignalR and used the websockets directly in VB
17 Aug 2020 by bigbits
I hope someone can help me I have looked and I know very little about websockets. P.S: We are working in a legacy code so it is pure php ( no laravel, symfony, nothing ) We have a partner that our server will have to listen to their websocket...
17 Aug 2020 by Sandeep Mewara
There are multiple examples on web with PHP/Websocket, please have a look at them: Simple PHP Chat using WebSocket - Phppot[^] Create a Bi-directional Connection to a PHP Server using HTML5 WebSockets[^] PHP and HTML5 WebSocket server and client...
3 Sep 2022 by Jakobson 2022
I am working on application in WinForms, and today certificate on remote server has been expired, so I was unable to connect to my WebSocketServer. Question : I am wondering, is there any method or property that can be used, to connect on...
3 Sep 2022 by Michael_Davies
Hi, You can use the call back to indicate true and therefore accept all certificates in your application. Here's the VB code to change to C# ServicePointManager.ServerCertificateValidationCallback = Function(s, c, h, e) True If you walk...
25 Oct 2022 by Dave Kreskowiak
You're going to have more load on the server no matter what you do. The data is always going to come from the server. You either start up a timer in your client javascript and call an API method to get the data, or you can setup a SignalR...
16 Feb 2024 by gsemerdz
I'm trying to establish a connection with my Django backend and Flutter code using WebSockets, but unfortunately I'm unable to do so, went through many articles and videos and everyone is basically doing the same without receiving an error.....
28 Jun 2018 by ranio
sorry for the repost. Here the case is the server response is coming but only after sending the client message send second time around server response coming. Hence posted on the same.
25 Oct 2022 by ravithejag
I want to implement a solution where my web page has to be refreshed whenever there is an new entry in our Influx/SQL Database. In current scenario we are refreshing the data every 5 seconds over WEB API built on C# , due to frequent calls to...
28 Jun 2018 by ranio
I want to send response messages from a server using web socket in c#. But am getting the exception as below: Object reference issue. From client to server i am able to send message using client web socket. But from server I am unable to send the message from client. But am getting...
4 Jul 2020 by Member 14876167
thank you for your answer ... I'm sure you all already went to this kind of situation : you're stacked with a project, you've been googling for 3 weeks in search of a solution . And then you decide you've been stupid enough not asking for help...
20 Jul 2020 by Member 13338759
I using SuperWebSocket library to create web socket server. I want to implement three way - handshake for socket but I don't know how to do it. What I have tried: Please tell me any solution for this problem . Thanks .