Re: [b2g] socket.io

2014-08-26 Thread jose llopis
You have to include the socket.io.js client and point to your socket.io server URL ___ dev-b2g mailing list dev-b2g@lists.mozilla.org https://lists.mozilla.org/listinfo/dev-b2g

Re: [b2g] socket.io

2014-08-19 Thread jose llopis
You need a script tag pointing to your socket.io client js and then connect your client Enviado desde Yahoo Mail con Android ___ dev-b2g mailing list dev-b2g@lists.mozilla.org https://lists.mozilla.org/listinfo/dev-b2g

Re: [b2g] socket.io

2014-08-19 Thread Kartikaya Gupta
I filed bug 1055532 for this crash. Should be an easy fix. On 19/8/2014, 6:52, Axel Hecht wrote: Just tested with my phone and master, and that worked. It did crash the phone, though. https://crash-stats.mozilla.com/report/index/1bc1a838-891f-4ebd-9039-874542140819 is the crash report. Axel On

Re: [b2g] socket.io

2014-08-19 Thread jbc
- > * From: * jbc ; > * To: * ; > * Subject: * [b2g] socket.io > * Sent: * Tue, Aug 19, 2014 12:17:10 AM > > Hello. > I tested socket.io in firefoxOS 1.3 on GP Keon. > But. socket.io doesn't work. > Thank you. > ___

Re: [b2g] socket.io

2014-08-19 Thread Axel Hecht
Just tested with my phone and master, and that worked. It did crash the phone, though. https://crash-stats.mozilla.com/report/index/1bc1a838-891f-4ebd-9039-874542140819 is the crash report. Axel On 8/19/14 12:25 PM, jbc wrote: http://socket.io/demos/chat/ 2014-08-19 8:53 GMT+02:00 Salvador

Re: [b2g] socket.io

2014-08-19 Thread jbc
Or more simple: server: app.js var http = require('http'); var fs = require('fs'); var server = http.createServer( function(req, res) { fs.readFile('./index.html', function(error, data) { res.writeHead(200, { 'Content-Type': 'text/html' }); res.end(data, 'utf-8'); }); })

Re: [b2g] socket.io

2014-08-19 Thread jbc
http://socket.io/demos/chat/ 2014-08-19 8:53 GMT+02:00 Salvador de la Puente González < salvador.delapuentegonza...@telefonica.com>: > On 19/08/14 02:17, jbc wrote: > > Hello. > I tested socket.io in firefoxOS 1.3 on GP Keon. > > Can you elaborate? Paste the code, explain what is not working

Re: [b2g] socket.io

2014-08-18 Thread Salvador de la Puente González
On 19/08/14 02:17, jbc wrote: Hello. I tested socket.io in firefoxOS 1.3 on GP Keon. Can you elaborate? Paste the code, explain what is not working... But. socket.io doesn't work. Thank you. Cheers! ___ dev-b2g mail

[b2g] socket.io

2014-08-18 Thread jbc
Hello. I tested socket.io in firefoxOS 1.3 on GP Keon. But. socket.io doesn't work. Thank you. ___ dev-b2g mailing list dev-b2g@lists.mozilla.org https://lists.mozilla.org/listinfo/dev-b2g

Re: [b2g] Socket.io push server and firefox os?

2013-09-19 Thread jose llopis
server stored at ip : port / socket . io . js with the client app what can i do with this problem? De: "nsm.nik...@gmail.com" Para: dev-b2g@lists.mozilla.org Enviado: Jueves 19 de septiembre de 2013 19:48 Asunto: Re: [b2g] Socket.io push server a

Re: [b2g] Socket.io push server and firefox os?

2013-09-19 Thread nsm . nikhil
On Thursday, September 19, 2013 2:58:02 AM UTC-7, jose llopis wrote: > i've done a push notification server on nodejs with socket.io and i have some > actions like > > socket.on("message",processMessage); > > and inside my processMessage function i 've done > > socket.in("room").emit("sendData"

[b2g] Socket.io push server and firefox os?

2013-09-19 Thread jose llopis
i've done a push notification server on nodejs with socket.io and i have some actions like socket.on("message",processMessage); and inside my processMessage function i 've done socket.in("room").emit("sendData"); my question: i've read that simple push doesnt allow to send messages to push s