64 questions
0
votes
0
answers
69
views
Socket.IO not connecting in Chrome browser (HTTPS, custom port 6530)
Socket issue:
My Laravel backend is hosted on https://example001.com/, while my React app is hosted on https://example002.com/ React uses the 4.8.1 version of the socket.io client, and Laravel uses ...
0
votes
1
answer
55
views
Where do I find server response data in socket.io-client?
I am interested in creating (for testing purposes) a fake client that mimics a browser accessing a route in a Node.js HTTP server. In the minimal example below, I am able to point an actual browser to ...
-1
votes
1
answer
73
views
Socket.io-client in node.js
I want to use socket.io-client cdn in the node js project
Sometimes I do connection to the different socket servers with the different socket io versions. So I need to handle it using socket io client ...
0
votes
2
answers
89
views
Socket.IO: No acknowledgment received from client after server emits event
I am using Socket.IO to emit an event from the server to a specific client. The event is being successfully received on the client side, and the client processes the data without any errors. However, ...
1
vote
1
answer
153
views
args[1] is received as null instead of socket acknowledgment callback
Problem:
Emitting event from server along with the callback and expecting client to trigger callback as the event received to acknowledge the server. Client is getting args[1] as null when is should ...
1
vote
0
answers
126
views
Azure Speech recognition not working with Angular + .NET Core
We are trying to implement Azure speech recognition in realtime using its PushStream. The audio is recorded at angular app using navigator.mediaDevices.getUserMedia(). The recorded audio when sent to ...
0
votes
0
answers
159
views
Socket.io.client for iOS: How to extend socket timeout?
I am attempting to use socket.io to connect to an NTRIP server. I can see the auth request go out and an ICY 200 OK response come back but the connection times out after 60 seconds and is stuck in a ...
0
votes
1
answer
68
views
Socket.io Flutter connection
I have a socket connection. Inside Bloc Constructor. Since the userInformation is not yet available at first initialization of the Bloc.
will the OnConnectSocket event will work? . esp the _socket.io....
1
vote
1
answer
101
views
Duplicated call of onConnected() in Spring when calling io() socket.io-client function
I'm trying to set up a Socket.IO server with Spring boot, which also serves as an API for my application. I have an Angular frontend that looks like this:
The problem is when I call my service to ...
0
votes
1
answer
112
views
Can't connect to SSL websocket after upgrading node to 20.10 (from 14.7) and socket.io 4.7.2 (from 1.4.36)
I'm completely lost at this point, so any insights would be most appreciated...
I'm maintaing code that creates a secure websocket using express. The original socket.io libraries were v1 which I've ...
0
votes
1
answer
489
views
React Native WebRTC Remote Stream is black
React Native Webrtc remote stream is black during Video Call. It's getting both audio/video from remote candidate but it just won't display.
{"_id": "28967b2b-d555-4438-a8e8-...
0
votes
2
answers
1k
views
Socket IO, React - Not receiving events emitted from server
In my react app, I initialize a connection with the backend socket Io server. Inside the server, I console.log the socket that has connected, and everything works as expected, the client connects fine....
0
votes
0
answers
63
views
socket.io-client CORS
Maybe I'm asking a stupid question, but I really don't understand.
I have two scripts: socket server and socket client.
socket server:
this.io = new Server(HTTPServer, {
wsEngine: eiows....
3
votes
0
answers
1k
views
Socket.io implementation in Next.js 14.1.0 app directory
I want to implement a video conference app where I need to implement socket connection for specific rooms. Since Next.js is a serverless framework, I had to create a default GET method and initialize ...
0
votes
0
answers
79
views
Node Socket.io works only on localhost but not on domain
This is Node.js server code.
Server.js
const express = require("express");
const cors = require("cors");
const http = require("http");
const SocketServer = require("....