aneccodeal
aneccodeal

Reputation: 8913

How is Opa handling communication between client and server?

Is Opa using AJAX or Websockets? I'm guessing it would be the former. What if I want to use websockets instead of AJAX? Or is it similar to socket.io for Javascript - if the browser supports Websockets it uses them, otherwise it falls back to AJAX & Flash sockets.

Upvotes: 4

Views: 683

Answers (2)

Cédrics
Cédrics

Reputation: 1994

OPA doesn't currently support websockets.

But it's something we considere again, since firefox 6 brings back support for websockets and a fix is proposed for the previous big security issue.

Upvotes: 3

Fred
Fred

Reputation: 1094

Opa is using AJAX currently.

Moreover, a think websocket is rarely supported (by browsers) for the moment due to security reason. And the RFC is still in draft.

Opa servers does not support websocket protocol for the moment.

Upvotes: 2

Related Questions