XMLRPC (XMLRPC v1.4.2) View Source

Encode and decode elixir terms to XML-RPC parameters. All XML-RPC parameter types are supported, including arrays, structs and Nil (optional).

This module handles the parsing and encoding of the datatypes, but can be used in conjunction with HTTPoison, Phoenix, etc to create fully featured XML-RPC clients and servers.

XML input (ie untrusted) is validated against an XML Schema, which should help enforce correctness of input. erlsom is used to decode the xml as xmerl creates atoms during decoding, which has the risk that a malicious client can exhaust out atom space and crash the vm.

Example

iex> _request_body = %XMLRPC.MethodCall{method_name: "test.sumprod", params: [2,3]} |> XMLRPC.encode!
"<?xml version=\"1.0\" encoding=\"UTF-8\"?><methodCall><methodName>test.sumprod</methodName><params><param><value><int>2</int></value></param><param><value><int>3</int></value></param></params></methodCall>"

# Now use HTTPoison to call your RPC
response = HTTPoison.post!("http://www.advogato.org/XMLRPC", request_body).body

iex> _response = "<?xml version=\"1.0\"?><methodResponse><params><param><value><array><data><value><int>5</int></value><value><int>6</int></value></data></array></value></param></params></methodResponse>" |> XMLRPC.decode
{:ok, %XMLRPC.MethodResponse{param: [5, 6]}}

Datatypes

XML-RPC only allows limited parameter types. We map these to Elixir as follows:

XMLRPCElixir
<boolean>Boolean, eg true/false
<string>Bitstring, eg "string"
<int> (<i4>)Integer, eg 17
<double>Float, eg -12.3
<array>List, eg [1, 2, 3]
<struct>Map, eg %{key: "value"}
<dateTime.iso8601>%XMLRPC.DateTime
<base64>%XMLRPC.Base64
<nil/> (optional)nil

Note that array and struct parameters can be composed of the fundamental types, and you can nest to arbitrary depths. (int inside a struct, inside an array, inside a struct, etc). Common practice seems to be to use a struct (or sometimes an array) as the top level to pass (named) each way.

The XML encoding is performed through a protocol and so abstract datatypes can be encoded by implementing the XMLRPC.ValueEncoder protocol.

Nil

Nil is not defined in the core specification, but is commonly implemented as an option. The use of nil is enabled by default for encoding and decoding. If you want a <nil/> input to be treated as an error then pass [exclude_nil: true] in the options parameter

API

The XML-RPC api consists of a call to a remote url, passing a "method_name" and a number of parameters.

%XMLRPC.MethodCall{method_name: "test.sumprod", params: [2,3]}

The response is either "failure" and a fault_code and fault_string, or a response which consists of a single parameter (use a struct/array to pass back multiple values)

%XMLRPC.Fault{fault_code: 4, fault_string: "Too many parameters."}

%XMLRPC.MethodResponse{param: 30}

To encode/decode to xml use XMLRPC.encode/2 or XMLRPC.decode/2

Options

The en/decoder take an array of options:

  • :iodata - When false (default), converts output of encoder to a string
  • :exclude_nil - When false (default), allows nil to be a valid type in encoder/decoder

Link to this section Summary

Functions

Decode XMLRPC call or response XML into an Elixir structure

Decode XMLRPC call or response XML into an Elixir structure

Encode an XMLRPC call or response elixir structure into XML.

Encode an XMLRPC call or response elixir structure into XML.

Encode an XMLRPC call or response elixir structure into XML as iodata

Encode an XMLRPC call or response elixir structure into XML as iodata

Link to this section Types

Specs

t() ::
  nil
  | number()
  | boolean()
  | String.t()
  | map()
  | [nil | number() | boolean() | String.t()]

Link to this section Functions

Link to this function

decode(value, options \\ [])

View Source

Specs

decode(iodata(), Keyword.t()) ::
  {:ok, XMLRPC.Fault.t()}
  | {:ok, XMLRPC.MethodCall.t()}
  | {:ok, XMLRPC.MethodResponse.t()}
  | {:error, String.t()}

Decode XMLRPC call or response XML into an Elixir structure

iex> XMLRPC.decode("<?xml version=\"1.0\"?><methodResponse><params><param><value><array><data><value><int>5</int></value><value><int>6</int></value></data></array></value></param></params></methodResponse>")
{:ok, %XMLRPC.MethodResponse{param: [5, 6]}}
Link to this function

decode!(value, options \\ [])

View Source

Specs

Decode XMLRPC call or response XML into an Elixir structure

Raises an exception on error.

iex> XMLRPC.decode!("<?xml version=\"1.0\"?><methodResponse><params><param><value><array><data><value><int>5</int></value><value><int>6</int></value></data></array></value></param></params></methodResponse>")
%XMLRPC.MethodResponse{param: [5, 6]}
Link to this function

encode(value, options \\ [])

View Source

Specs

encode(t(), Keyword.t()) ::
  {:ok, iodata()} | {:ok, String.t()} | {:error, {any(), String.t()}}

Encode an XMLRPC call or response elixir structure into XML.

iex> %XMLRPC.MethodCall{method_name: "test.sumprod", params: [2,3]} |> XMLRPC.encode
{:ok, "<?xml version=\"1.0\" encoding=\"UTF-8\"?><methodCall><methodName>test.sumprod</methodName><params><param><value><int>2</int></value></param><param><value><int>3</int></value></param></params></methodCall>"}
Link to this function

encode!(value, options \\ [])

View Source

Specs

encode!(t(), Keyword.t()) :: iodata() | no_return()

Encode an XMLRPC call or response elixir structure into XML.

Raises an exception on error.

iex> %XMLRPC.MethodCall{method_name: "test.sumprod", params: [2,3]} |> XMLRPC.encode! "<?xml version=\"1.0\" encoding=\"UTF-8\"?><methodCall><methodName>test.sumprod</methodName><params><param><value><int>2</int></value></param><param><value><int>3</int></value></param></params></methodCall>"

Link to this function

encode_to_iodata(value, options \\ [])

View Source

Specs

encode_to_iodata(t(), Keyword.t()) ::
  {:ok, iodata()} | {:error, {any(), String.t()}}

Encode an XMLRPC call or response elixir structure into XML as iodata

Link to this function

encode_to_iodata!(value, options \\ [])

View Source

Specs

encode_to_iodata!(t(), Keyword.t()) ::
  {:ok, iodata()} | {:error, {any(), String.t()}}

Encode an XMLRPC call or response elixir structure into XML as iodata

Raises an exception on error.