Skip to content
New issue

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

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

Already on GitHub? # to your account

announce "this project is not maintained anymore" #69

Open
mattqs opened this issue Jan 1, 2019 · 15 comments
Open

announce "this project is not maintained anymore" #69

mattqs opened this issue Jan 1, 2019 · 15 comments

Comments

@mattqs
Copy link
Contributor

mattqs commented Jan 1, 2019

THIS PROJECT IS DEPRECATED
Component is not maintained anymore.

I use this library in my own project. The last version that works with my project is 1.0.2.

@cmuentes
Copy link

cmuentes commented Jan 2, 2019

Was this project just recently deprecated? It appears this issue was just opened and I just recently started using it on my project

@Quobject Quobject deleted a comment from adnanafzal565 Jan 5, 2019
@Quobject Quobject deleted a comment from bug2018 Jan 11, 2019
@mattqs
Copy link
Contributor Author

mattqs commented Jan 13, 2019

Looking for someone who has the resources to write/maintain an alternative.
#70

@mattqs mattqs closed this as completed Jan 13, 2019
@mattqs mattqs reopened this Jan 16, 2019
@mattqs
Copy link
Contributor Author

mattqs commented Jan 16, 2019

New Socket.IO Client!
#71

https://github.com/IBM/socket-io

@PranKe01
Copy link

Is there any alternative? The IBM implementation does not support client certificates :| Is there any way to use socket.IO in .Net (C# or C++) with client side certificates? :|

@xzycn
Copy link

xzycn commented Feb 27, 2019

@PranKe01
Maybe this one pointed out in official README.

@PranKe01
Copy link

@PranKe01
Maybe this one pointed out in official README.

No, it does not has certificate support :|

@Archtica
Copy link

Archtica commented Apr 9, 2019

I know this is being deprecated, but I really enjoy using for it many projects.
I have one issue with connecting to a namespaces. I'm connecting to a very simple node server and namespaces works from other clients, but not from this.
My code is:

IO.Options op = new IO.Options { ForceNew = true, AutoConnect = false, Reconnection = false, ReconnectionDelay = 500, ReconnectionAttempts = 3, Secure = false, Upgrade = true }; Uri uri = new Uri(address); Manager manager = new Manager(uri, op); socket = manager.Socket("/example"); socket.Open();

It connects to root but is never lifted to the specified namespace. I tried everything for two days. Is this is a know bug then I'll stop trying

@pranathlcp
Copy link

@kissworks ,

Did you find a solution for this particular issue?

@cvaldezUM
Copy link

cvaldezUM commented Dec 11, 2019

@kissworks @pranathlcp
Use Socket.IO server version 1.7.4.
Any version below 2 should work.

  "dependencies": {
    "socket.io": "1.7.4"
  }

@YuJianghao
Copy link

YuJianghao commented Feb 11, 2020

seems this repo can work!

I have tried on 2020/02/12. It work! 😀

@markking79
Copy link

I switched over to the following repo. Appears to be working perfect using socket.io 2.3.0

https://github.com/doghappy/socket.io-client-csharp

@LadislavBohm
Copy link

I also created new C# client for the latest socket.io version here:

https://github.com/LadislavBohm/socket.io-client-core

@bnb022
Copy link

bnb022 commented Jul 16, 2020

HI,
I try to use it, but have some problems : get Net.WebException on connect

the version is 0.9.13 from Nuget( not 1.74?).
Visual studio 2017 Net Framework 4.7.

My code :

       var options = CreateOptions();
        socket = IO.Socket(textBox1.Text, options);
     
       socket.On(Socket.EVENT_CONNECT, () =>
        {
            Trace.WriteLine("EVENT_CONNECT");
        });

        socket.On(Socket.EVENT_CONNECT_ERROR, (data) =>
        {
            Trace.WriteLine("EVENT_CONNECT_ERROR");
        });
    
socket.On(Socket.EVENT_DISCONNECT,
            (data) =>
            {
                Trace.WriteLine("EVENT_DISCONNECT");
            });

        socket.On(Socket.EVENT_ERROR,
           (data) =>
           {
               Trace.WriteLine("EVENT_ERROR");
           });

        socket.On(Socket.EVENT_CONNECT_TIMEOUT, () =>
        {
            Trace.WriteLine("EVENT_CONNECT_TIMEOUT");
        });
        //    socket.Connect();
        socket.Open();

==========================================================
What is wrong?
Thanks.

@kimud6003
Copy link

i found New Socket.IO library
https://github.com/uhm0311/SocketIOSharp

@huynhtruongdyu
Copy link

@kissworks @pranathlcp
Use Socket.IO server version 1.7.4.
Any version below 2 should work.

  "dependencies": {
    "socket.io": "1.7.4"
  }

many thanks, it work :D

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

No branches or pull requests