Tagged Questions
WebMachine is an Erlang framework for creating RESTful Web Services using Erlang/OTP best practices.
5
votes
2answers
223 views
What are the differences between the Erlang Web Gateway Interface (EWGI) and Webmachine?
Both EWGI and Webmachine provide abstractions of HTTP in Erlang. I would like to know what the key conceptual differences are in their approach?
4
votes
1answer
83 views
How can I process a POST submission in Webmachine?
Can some kind soul show me how to write, or point me to, a SIMPLE Webmachine request to process a POST request; e.g. submitted by something like:
<form name="input" action="yada yada" ...
3
votes
1answer
125 views
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 ...
3
votes
1answer
378 views
Webmachine with http and https?
What is the recommended way of getting https working with webmachine?
I see that there is an example for getting mochiweb working with https and http. I just can seem to translate that to webmachine. ...
3
votes
3answers
192 views
Erlang: is there a way to export some other module's exports from my module?
I'm writing several resources for webmachine that share lots of same functions. So I'm wondering if it's possible to write the common functions in a separate module, then somehow include it, and have ...
2
votes
1answer
103 views
webmachine and redirect unauthenticated users
In my new project I want to use webmachine and mochiweb. First thing i want to do is authentication.
I edit "dispatch.conf" and make some resources, like:
{["auth"], my_res_auth, []}.
...
2
votes
2answers
154 views
Debugging Erlang Webmachine resource functions
I'm trying to learn how to write Erlang Webmachine resources. One resource throws an error, but I can't tracking it down. The error message in the crash report does not provide enough information.
...
2
votes
4answers
2k views
Getting started with mochiweb and Webmachine?
Mochiweb and webmachine are very promising applications when you see how those who have found they're way around them are using it. I need to be directed to where I can find beginners' tutorials on ...
1
vote
2answers
164 views
How can I integrate Webmachine into an Erlang Application?
I read and re-read the docs and tutorials, but my understanding of how to create Erlang Applications, and Rebar for that matter, still has enough holes to resemble Swiss cheese. Very simple stuff ...
1
vote
1answer
103 views
Webmachine: Who sets static_resource:init/1?
I'm looking at two versions static_resource:init/1 in two Webmachine applications:
https://github.com/basho/wriaki/blob/master/apps/wriaki/src/session_resource.erl
...
0
votes
1answer
26 views
Webmachine: How can I retrieve multiple values from URL via wrq:get_qs_value?
I get this:
T = wrq:get_qs_value("name",ReqData)
But suppose I want to retrieve "fname", "lname", "gnder", "age", etc. from a form submission. Do I need to repeat variations on the line above for ...
0
votes
3answers
182 views
How to pattern match structures returned by mochijson2?
I've just started tinkering with Erlang and am building a very simple test web application which is just intended to show my twitter timeline.
I'm using webmachine to write the app and erlyDTL to ...