Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I get cookies or session that I created earlier for a SELECT in mysql, and as I can not do that. I was trying to do with "express" but idk if I can put the same port to listen, to date info received nothing cookies.

I'm using the HTML5 WebSocket class to connect, socket.io not use that I have to do with the kind of html5.

    var mysql = require('mysql');
 db = mysql.createConnection({
    host : 'localhost',
    user : 'root',
    password : ''
}); 
db.connect();
db.query('USE database'); 

var WebSocketServer = require('ws').Server
  , wss = new WebSocketServer({port: 4002});

wss.on('connection', function(ws) {
    ws.on('message', function(message) 
    {
          console.log("Recibido: %s",message);
   });
ws.send('la cookie o session es: %s',cookie['id']);
});
share|improve this question
What is your question? Also please write proper English, because it's really hard to understand what you're talking about. – Arnold Daniels Feb 3 at 2:32

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.