Reputation: 2716
How can I enable cross domain for express.io because I need for a cordova aplication, chrome says "No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin", this is my code.
server
var app = require('express.io')();
app.http().io()
app.listen(2000);
app.io.set('origins', '*:*');
app.io.set('transports', [
'websocket'
, 'flashsocket'
, 'htmlfile'
, 'xhr-polling'
, 'jsonp-polling'
]);
app.get('/', function (req, res) {
res.setHeader('Access-Control-Allow-Origin','*');
res.send(200, 'Todo fino');
req.io.route('connection');
});
app.io.route('connection', function (req) {
console.log('User connected');
});
client
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script src="https://cdn.socket.io/socket.io-1.3.3.js"></script>
<script>
var socket = io.connect('http://localhost:2000');
</script>
<title>Document</title>
</head>
<body>
Probando Socket system
</body>
</html>
Upvotes: 3
Views: 3087
Reputation: 3707
I've never used that, but this is how I set it up using Express and Socket.io separately.
**Socket.IO version --> 1.3.7 ** **Express version --> 4.13.3 **
Option 1: Force use of Websockets only
By default, websockets are cross domain. If you force Socket.io to only use that as means to connect client and server, you are good to go.
Server side
//HTTP Server
var server = require('http').createServer(app).listen(8888);
var io = require('socket.io').listen(server);
//Allow Cross Domain Requests
io.set('transports', [ 'websocket' ]);
Client side
var connectionOptions = {
"force new connection" : true,
"reconnectionAttempts": "Infinity", //avoid having user reconnect manually in order to prevent dead clients after a server restart
"timeout" : 10000, //before connect_error and connect_timeout are emitted.
"transports" : ["websocket"]
};
var socket = io("ur-node-server-domain", connectionOptions);
That's it. Problem? Won't work on browsers (for clients) who don't support websockets. With this you pretty much kill the magic that is Socket.io, since it gradually starts off with long polling to later upgrade to websockets (if client supports it.)
If you are 100% sure all your clients will access with HTML5 compliant browsers, then you are good to go.
Option 2: Allow CORS on server side, let Socket.io handle whether to use websockets or long polling.
For this case, you only need to adjust server side setup. The client connection is same as always.
Server side
//HTTP Server
var express=require('express');
//Express instance
var app = express();
//ENABLE CORS
app.all('/', function(req, res, next) {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Allow-Headers", "X-Requested-With");
next();
});
That's it. Hope it helps anyone else.
ps: this is a repost of my answer for another question, Cross-domain connection in Socket.IO
Upvotes: 1
Reputation: 7077
Try use CORS, for example:
var cors = require('cors');
app.use(cors({
origin: true,
credentials: true
}));
Upvotes: 0