You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Angel Java Lopez, nod...@googlegroups.com
Yes, the problem appears to be however that it is still falling back to xhr polling in worker. You can see that by opening the dev toolbar in Chrome and viewing the network traffic. I am pretty sure this was working earlier. If not, we will make it work :-)
Sent from my Windows Phone
From: Angel Java Lopez Sent: 2/11/2012 11:55 AM To: nod...@googlegroups.com Subject: Re: [nodejs] Azure node.js/socket.io with websocket transport
Glenn Block
unread,
Feb 12, 2012, 3:11:53 AM2/12/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Angel Java Lopez, nod...@googlegroups.com
It looks like it is working all.
If you head to http://gblock-chat.cloudapp.net, I have fixed it to use just WebSockets. Chrome is able to connect fine. I have also tested with using the default set of transports and it does not degrade to xhr.
Angel, can you try it out?
Thanks
Glenn
Glenn Block
unread,
Feb 12, 2012, 3:48:43 AM2/12/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to nod...@googlegroups.com
Here's a screenshot in Fiddler showing the WebSockets traffic working in the sample app I have running on worker role on Azure.
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to nod...@googlegroups.com
After some digging, many Azure deployments and generally a lot of time spent it turns out that the internet provider blocked websocket connections on port 80 and 8080 (secured websockets worked though). I have just tested my app through my own network setup and provider and it appears to work fine from there. For me the takeout is that a solution like socket.io that can fallback to more conventional HTTP based connections is very valuable in that it helps to circumvent these sorts of issues.
Thanks to Glenn who helped me along the way by suggesting solutions, testing and eliminating other possible issues!