[Ericsson AB]

3 HTTP Client

3.1 Introduction

The HTTP client will be started when the inets application is started and is then available to all processes on that erlang node. The client will spawn a new process to handle each request unless there is a possibility to pipeline a request. The client will add a host header and an empty te header if there are no such headers present in the request. The client supports ipv6 as long as the underlying mechanisms also do so.

3.2 Configuration

It is possible to configure what directory the HTTP client should use to store information. Currently the only information stored here is cookies. If the HTTP client service is not configured all cookies will be treated as session cookies. Here follows a description of a configuration entry for the HTTP client in the application configuration file.

      [{inets, [{services, [{httpc, {Profile, Dir}}]}]}]
    

Profile = atom() - default is the only valid value, as profiles are currently not supported.

Dir = string()

3.3 Using the HTTP Client API

 1 > application:start(inets).
      ok
    

Use the proxy "www-proxy.mycompany.com:8000", but not for requsts to localhost. This will apply to all subsequent requests

      2 > http:set_options([{proxy, {{"www-proxy.mycompany.com", 8000},
      ["localhost"]}}]).
      ok
    

An ordinary synchronous request.

      3 > {ok, {{Version, 200, ReasonPhrase}, Headers, Body}} =
      http:request(get, {"http://www.erlang.org", []}, [], []).
    

With all default values, as above, a get request can also be written like this.

      4 > {ok, {{Version, 200, ReasonPhrase}, Headers, Body}} =
      http:request("http://www.erlang.org").
    

An ordinary asynchronous request. The result will be sent to the calling process on the form {http, {ReqestId, Result}}

      5 > {ok, RequestId} =
      http:request(get, {"http://www.erlang.org", []}, [], [{sync, false}]).
    

In this case the calling process is the shell, so we receive the result.

      6 >  receive {http, {RequestId, Result}} -> ok after 500 -> error end.
      ok
  

Send a request with a specified connection header.

      7 > {ok, {{NewVersion, 200, NewReasonPhrase}, NewHeaders, NewBody}} =
      http:request(get, {"http://www.erlang.org", [{"connection", "close"}]},
      [], []).
    

Copyright © 1991-2005 Ericsson AB