Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Socket.io cannot connect, resorts to "polling"

I'm trying to create a websocket client-server app where client and server will run on two different instances.

Setup

  • Server/Back-end: running on localhost:9006 with angular-fullstack generator including socket.io
  • Client/Front-end: running on localhost:9007 with angular generator + socket.io-client + btford.socket-io (a AngularJS socket.io bridge)

Client and server

Server

Note: not complete code, but the pieces I think are relevant.

// ----- socketio.js -----

// When the user connects.. perform this
function onConnect(socket) {
    // When the client emits 'info', this listens and executes
    socket.on('info', function (data) {
        console.info('[%s] %s', socket.address, JSON.stringify(data, null, 2));
        socket.emit('pong', 'OK!');
    });
    // Insert sockets below
    require('../api/thing/thing.socket').register(socket);
}

socketio.set('origins', 'http://localhost:9007');

// ----- express.js -----

app.use(function (req, res, next) {
    res.setHeader('Access-Control-Allow-Origin', 'http://localhost:9007');
    res.setHeader('Access-Control-Allow-Methods', 'GET, POST, OPTIONS, PUT, PATCH, DELETE');
    res.setHeader('Access-Control-Allow-Credentials', true);
    next();
});

// ----- app.js -----

// Start server
server.listen(config.port, config.ip, function () {
  console.log('Express server listening on %d, in %s mode', config.port, app.get('env'));
});

Client

// ----- client app.js

angular
.module('weldCommentsClientApp', [
    'ngAnimate', 'ngAria', 'ngCookies', 'ngMessages', 'ngResource', 'ngRoute', 'ngSanitize', 'ngTouch',
    'btford.socket-io'
])
.factory('mySocket', function (socketFactory) {
    var myIoSocket = window.io.connect('http://localhost:9006');
    var mySocket = socketFactory({
        ioSocket: myIoSocket
    });
    mySocket.forward('pong');
    console.log('mySocket', mySocket);
    return mySocket;
})

// ----- client main.js

angular.module('weldCommentsClientApp').controller('MainCtrl', function ($scope, mySocket) {
    $scope.$on('socket:pong', function (ev, data) {
        console.log('socket:pong', ev, data);
    });
    mySocket.emit('info');
});

Results

No console errors on server nor client, but it doesn't work and the server logs 100's of these lines:

GET /socket.io/?EIO=3&transport=polling&t=1421488528935-16027 200 2ms

...which looks like the client connects over HTTP but fails to switch over to websockets.

Any ideas?

Update

Here is the entire client/server project with instructions in README: https://github.com/weld-io/socket.io-client-server-boilerplate

like image 700
Tom Söderlund Avatar asked Jan 17 '15 10:01

Tom Söderlund


1 Answers

The path is not defined correctly in server/app.js

Try to use '/socket.io' path like this:

var socketio = require('socket.io')(server, {
  serveClient: (config.env === 'production') ? false : true,
  path: '/socket.io'
});

Next, to choose websockets instead of long-polling, you can select the websocket transport in test-client/scripts/application.js

var myIoSocket = window.io.connect('http://localhost:9006', {transports:['websocket']});
like image 108
leszek.hanusz Avatar answered Oct 15 '22 19:10

leszek.hanusz