WebSockets will not work through nginx. Neither will flashsocket. And based on your experience with xhr-multicast not working, I'd guess that htmlfile (IE only) will not work either. Xhr-polling will work in all modern browsers, and jsonp-polling will work in older browsers. So, you can just use "transports: ['xhr-polling', 'jsonp-polling']".
If you want to take advantage of websockets, you'll have to run WiaB beside (separate port), instead of behind, nginx. -Tad On Sun, Dec 12, 2010 at 11:16 AM, kislo_metal <[email protected]> wrote: > currently : > transports: [*'xhr-polling'*, 'websocket', 'flashsocket', > 'htmlfile','jsonp-polling', 'xhr-multipart'] > > and it is work. > > original : transports: ['websocket', 'flashsocket', 'htmlfile', > 'xhr-multipart', 'xhr-polling', 'jsonp-polling'], > > -- > You received this message because you are subscribed to the Google Groups > "Wave Protocol" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<wave-protocol%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/wave-protocol?hl=en. > -- You received this message because you are subscribed to the Google Groups "Wave Protocol" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/wave-protocol?hl=en.
