Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Not able to build connection in .Net C# using SocketIOClient.SocketIO class #376

Open
NandishNR opened this issue May 9, 2024 · 2 comments

Comments

@NandishNR
Copy link

@doghappy,

  1. Server package version: "https://www.npmjs.com/package/socket.io/v/2.5.0"
  2. Client package version: Latest version, 2.0.0, 2.3.0,3.0.0, etc..
  3. Client built using .Net 6.0
  4. Able to build connection using postman
  5. Checked Wireshark logs as well - nothing blocked on laptop like antivirus or proxy

Below is the code, where not able to build connection and execution will not comeout from "await _socketIO.ConnectAsync();". Connected flag is false and not able emit the message.

SocketIOOptions options = new SocketIOOptions();
options.Path = SocketPath;
options.Query = new List<KeyValuePair<string, string>>
{
new KeyValuePair<string, string>("token", Accesstoken),
new KeyValuePair<string, string>("deviceId", DeviceId)
};
options.Transport = SocketIOClient.Transport.TransportProtocol.WebSocket;
options.Reconnection = true;
options.ReconnectionDelayMax = 10;
options.ReconnectionDelay = 1000;
options.ConnectionTimeout = TimeSpan.FromMilliseconds(10000);

Uri uri = new Uri(SocketUri);
SocketIOClient.SocketIO _socketIO = new SocketIOClient.SocketIO(uri, options);
_socketIO.OnConnected += OnSocketIOConnected;
_socketIO.OnReconnected += OnSocketIOReconnected;
_socketIO.OnError += OnSocketIOError;
await _socketIO.ConnectAsync();

@NandishNR
Copy link
Author

Hi @doghappy,

Upgraded sever to latest package and able to connect .net client. However, what ever sever emit the events .net client is not received but received in react client.

Any inputs on this?

@doghappy
Copy link
Owner

Hi @NandishNR sorry for the slow response. Are you tried to set the options.EIO = EngineIO.V3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants