Giter Club home page Giter Club logo

Comments (3)

Rishabh-sx avatar Rishabh-sx commented on May 24, 2024 6

This will fix the issue:

/**
     * To get socket single instance.
     *
     * @return socket instance
     */
    public Socket getSocket() {
        if (mSocket != null)
            return mSocket;
        else {
            try {
                HostnameVerifier myHostnameVerifier = new HostnameVerifier() {
                    @Override
                    public boolean verify(String hostname, SSLSession session) {
                        return true;
                    }
                };
                SSLContext mySSLContext = SSLContext.getInstance("TLS");
                TrustManager[] trustAllCerts = new TrustManager[]{new X509TrustManager() {
                    public java.security.cert.X509Certificate[] getAcceptedIssuers() {
                        return new java.security.cert.X509Certificate[]{};
                    }

                    public void checkClientTrusted(X509Certificate[] chain,
                                                   String authType) throws CertificateException {
                    }

                    public void checkServerTrusted(X509Certificate[] chain,
                                                   String authType) throws CertificateException {
                    }
                }};

                mySSLContext.init(null, trustAllCerts, new java.security.SecureRandom());

                OkHttpClient okHttpClient = new OkHttpClient.Builder()
                        .hostnameVerifier(myHostnameVerifier)

                        .sslSocketFactory(mySSLContext.getSocketFactory(), new X509TrustManager() {
                            @Override
                            public void checkClientTrusted(X509Certificate[] chain, String authType) throws CertificateException {

                            }

                            @Override
                            public void checkServerTrusted(X509Certificate[] chain, String authType) throws CertificateException {

                            }

                            @Override
                            public X509Certificate[] getAcceptedIssuers() {
                                return new X509Certificate[0];
                            }
                        })
                        .build();


                // HttpsURLConnection.setDefaultHostnameVerifier(myHostnameVerifier);
                IO.Options options = new IO.Options();
                //options.webSocketFactory = okHttpClient;
                //options.secure = true;
                //options.transports = new String[]{WebSocket.NAME};
                //options.reconnection = true;
                //options.forceNew = true;
                options.callFactory = okHttpClient;
                options.webSocketFactory = okHttpClient;
                options.query = "authtoken=" + AppSharedPrefrence.getString(this, AppSharedPrefrence
                        .AUTH_TOKEN)
                        + "&Lang=" + (AppSharedPrefrence.
                        getString(this, AppSharedPrefrence.LANGUAGE).
                        equalsIgnoreCase(AppConstant.ENGLISH)
                        ? AppConstant.ENGLISH : AppConstant.ARABIC);


                mSocket = IO.socket(SocketConstants.SOCKET_URL, options);
                mSocket.connect();
            } catch (URISyntaxException e) {
                throw new RuntimeException(e);
            } catch (NoSuchAlgorithmException e) {
                e.printStackTrace();
            } catch (KeyManagementException e) {
                e.printStackTrace();
            }

        }
        return mSocket;

    }

from engine.io-client-java.

theasmoth avatar theasmoth commented on May 24, 2024

my mistake
host string with "http://"

from engine.io-client-java.

EduardoDornel avatar EduardoDornel commented on May 24, 2024

@Rishabh-sx thanks!!

from engine.io-client-java.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.