websocket

WebSocket for HTML5

I am going to develop an instant messaging application that runs in the browser. What browsers support the WebSocket API? ...

How does the HTML5 Web Sockets Interface work?

I heard about the Web Sockets Interface in the HTML file specification from a relevant question here. It sounds very promising! I don't understand how it works does it still use the HTTP protocol and works-around it or does it work something like TCP sockets? ...

html5 websocket need server?

may i know to use websocket , need to write server code? in other words, javascript in my client application will need to connect to extra server rather than just my existing Apache server? ...

what is Orbited?

from my understanding obited can do both comet and xmpp ? it is better than using typical comet library dwr right? ...

How feasible is it to translate this Ruby websocket / flashsocket server into PHP?

How feasible is it to translate this Ruby websocket server to PHP? http://github.com/gimite/web-socket-ruby/blob/master/lib/web_socket.rb I know a little bit of Ruby and a decent amount of PHP, thought I've never done socket programming. I'd like to build a chat app on top of what gimite has put up on git, but all my sites are in PHP. ...

How to Use Sockets in JavaScript\HTML?

How to Use Sockets in JavaScript\HTML? May be using some cool HTML5 technics? Libs? Tutorials? Blog Articles? ...

Boost Asio and Web Sockets?

Does anyone know of any attempt to implement the Web Sockets API using Boost asio? ...

Will html5 websockets be crippled by firewalls?

I'm extremely excited about html5's websockets spec but I have a concern. These days everyone is operating off of some network, with routers (wired/wireless) that have built in firewalls, windows has a built in firewall too. With that in mind when the server attempts to connect back to the browser that started the websocket handshake...

Websocket and Java Swing front end

Is it doable to make Websocket interfaced with Java Swing front end? If so how? ...

Web sockets server side processing model

To implement a server supporting clients using web sockets, do servers keep an open HTTP connection with each client? How can this scale? What are the "programming models" when implementing this type of server? Ie: most web apps have servlets, etc which support a connect->request->response->close type model. Whereas with web sockets ...

Is there a WebSocket client implemented for .NET?

I would like to use WebSockets in my Windows Forms or WPF-application. Is there a .NET-control that is supporting WebSockets implemented yet? Or is there any open source project started about it? An open source solution for a Java Client supporting WebSockets could also help me. ...

Best way to show notifications and messages LIVE on a webpage?

I am interested in a really good way of doing instant messaging like meebo and facebook and myspace all have, also for notifications on a page. Example on my site now, when a user receives a new mail message, photo comment, profile comment, friend request, some other things, they will receive a notification message and link on the page ...

How quickly will websocket in the dev versions of Firefox and Chrome be moved to the official releases?

I realize that this is hard/maybe impossible to estimate - but any estimation, even plus or minus 6 months, would be nice. ...

Is there a WCF server implementation of Web Sockets form HTML 5?

I would like to play with the new Web Socket support in Chrome (and soon Firefox), but have been unable to find a WCF implementation that will act as the server. Have somebody implemented a .net WCF Web Socket based server? ...

WebSocket stress testing

Hi, I would like to do some stress testing to a WebSocket based application. Anyone knows a tool that may help me in this task? Update: I forgot to mention, but I'm favoring open source or free tools, given that the tests I'm performing are not for production. Thanks, Luís M. Costa ...

Python example of Joe's Erlang websocket example

I've just been working through the erlang websockets example from Joe Armstrong's blog I'm still quite new to erlang so I decided to write a simple server in python that would help teach me about websockets (and hopefully some erlang by interpreting joe's code). I'm having two issues: 1) Data I receive from the page includes a 'ÿ' as th...

After handshake of websocket, chrome disconnects. Is this due to domain mismatch? Or Chrome bug?

I made my own simple WebSocket server in Python but Chrome 4.0.249.78 dev (36714) ALWAYS disconnects after the handshake. To make sure it wasn't my code I used the WebSocket server found at http://stackoverflow.com/questions/2153294?tab=newest#tab-top to test it and got the same result (below). listening... connection! GET / HTTP/1.1 Up...

WebSockets served by a Servlet Container

I was taking a look at WebSockets last week and made a few thoughts on how to implement the server side with the Java Servlet API. I didn't spend too much time, but ran into the following problems during a few tests with Tomcat, which seem impossible to solve without patching the container or at least making container specific modificati...

How to implement websockets on an embedded device server?

Hello all, I am working with an electronics appliance manufacturer to embed LAN based control systems into the products. The idea is to serve up a system configuration/control interface through a web browser so clients never need to install software. We can communicate with the appliance by sending and receiving serial data through the ...

Why don't current websocket client implementations support proxies?

A Web Socket detects the presence of a proxy server and automatically sets up a tunnel to pass through the proxy. The tunnel is established by issuing an HTTP CONNECT statement to the proxy server, which requests for the proxy server to open a TCP/IP connection to a specific host and port. Once the tunnel is set up, communication can ...