I have done a little bit of homework and it looks like the version of
the server you are using is using the hixie75/76 version of the
specification. This is a woefully outdated version of the web socket
specification and is not compatible with the current specification. I
believe that Juggernaut is using a Node.js implementation of web
sockets. You might try using the
https://github.com/asutherland/WebSocket-Node
implementation instead. It is also a Node.js implementation of web
sockets and should be rather straightforward to use in place of the
current server implementation. It supports rev07 of the specification
and should work well with the UnittWebSocketClient. Though it is
incompatible with the ZIMT library.
> I am working on a Rails app that has both a web admin and an iPad client
> component. I've set up a Juggernaut server and have been able to
> successfully utilize it to deliver real-time poll results to a page within
> the web admin.
>
> What we'd like to do is have the iPad application make a websocket
> connection and receive results in real-time just as the web page does. My
> first thought was to simply use a web view within the client and load a
> specialized page that would display the results. This would be almost
> identical to the page I've implemented within my Rails app already except
> the UI would be tailored for the iPad.
>
> However, what we'd really like to do is keep all of the UI within the iPad
> application meaning it would need to make that websocket connection