matehat
matehat

Reputation: 5374

How to make webmachine play nice with websockets?

Webmachine seems like a great system to build REST web services, but I know it does not provide websocket compatibility. My question is rather straightforward : What would be a good approach to add websocket capabilities on top of a web service built with webmachine?

Upvotes: 4

Views: 1082

Answers (3)

chops
chops

Reputation: 2612

Late answer, but just stumbled upon this, but another option is to run SimpleBridge (https://github.com/nitrogen/simple_bridge), which adds an abstraction layer (conditionally bypassed using webmachines routing system) which adds websocket support to any erlang webserver it supports (includes webmachine).

Upvotes: 0

dryymoon
dryymoon

Reputation: 131

For easy use websockets in webmachine I implemented that by changing sources of webmachine (adding support mochiweb_websockets ) and mochiweb (add support secure websockets).

You can download from git full solution (webmachine with websockets support) by this link: https://github.com/Dryymoon/webmachine.git
And by this link example usage of solution.

Or if want dig a little deeper: I changed only two files of sources:
1) webmachine_decision_core.erl changed (add support websocket handler).
2) mochiweb_websocket.erl (add support secure websockets and patch existig).

Upvotes: 0

David Dossot
David Dossot

Reputation: 33413

I'm running Misultin alongside Webmachine for that exact matter.

Upvotes: 1

Related Questions