Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
344 views

How do I do an HTTPS request with Erlang?

I tried the inets library but it times out. I don't think it supports HTTP. I am trying to use ibrowse, but it isn't working.
5
votes
3answers
2k views

Where does Nitrogen get the best performance - yaws, mochiweb, or inets?

The Nitrogen project web page declares equal support for yaws, mochiweb, and inets, but with which of these web servers is it going to perform the best? I.e. for a large scale application with mostly ...
3
votes
3answers
615 views

Working example for Erlang Server Interface

I am trying to make Erlang's Inets mode_esi work and run some function. So, far, I did not succeed. Can someone post a minimal example of how to run Inets so that a url like ...
2
votes
3answers
582 views

Erlang HTTP Client: inets or ibrowse or …?

I am working with Erlang and need to make efficient HTTP requests. What is the current "standard" HTTP Client for Erlang/OTP? Is it inets or ibrowse or something else entirely? Any advice or ...
2
votes
1answer
665 views

Erlang: HTTP GET Parameters with Inets

The following post indicates how to make a simple get http request with Erlang's inets. exploring erlang's http client Sometimes, URLs have GET parameters: ...
2
votes
3answers
204 views

Erlang Web and Inets BindAddress

After installing Erlang Web 1.3 and starting it in interactive mode, I get the following error in the logs: Failed to start service: "config/inets.conf" due to: "httpd_conf: 0.0.0.0 is an ...
1
vote
0answers
21 views

How to define server root for inets tftp server

Seems trivial, but property {server_root, Path} in server config doesn't work. Any hints?
1
vote
2answers
273 views

Erlang HTTP: How do you include Body in an Inets or Ibrowse request?

I am currently using Inets with the following request:    http:request(put, {Url, [{"User-Agent", UA}, {"Content-type", "application/json"}]}, Bodytext, []), But the request fails. Any suggestions? ...
1
vote
1answer
150 views

Erlang: HTTP Accept Header with Inets

I am trying to do the equivalent of the following curl command : curl -H "Accept: text/plain" http://127.0.0.1:8033/stats I tried with an Inets simple http request. But, it isn't processed. How ...
1
vote
1answer
353 views

Erlang: when to perform `inets:start()`?

What is the appropriate place for performing inets:start() ? in `applicationname_app' module? in applicationname_sup supervisor module? in a child process hanging from the supervisor?\ someplace ...
1
vote
1answer
351 views

Erlang: how to embed inets:httpd?

What is the proper way to embed the inets:httpd module inside an existing application? I would like an example / guidelines to achieving this, please. Updated: I want to be able to start an ...
0
votes
3answers
101 views

Inets http client + authorization

How should I specify user/password for client authorization in http request made by httpc:request() function??
0
votes
2answers
100 views

Erlang custom httpd module - how to send custom HTTP headers and Content-Type

I'm implementing a custom module for Erlang's httpd (inets) server. I can successfully respond with HTML content with the following implementation of do method: do(_ModData) -> Body = ...
0
votes
4answers
775 views

Handling Erlang inets http client errors

I have an Erlang app which makes a large number of http calls to external sites using inets, using the code below case http:request(get, {Url, []}, [{autoredirect, false}], []) of {ok, {{_, Code, _}, ...