elixir-xml_rpc
elixir-xml_rpc copied to clipboard
Encode and decode elixir terms to XML-RPC parameters
Added a Tesla Middleware that can be used to easily encode / decode XMLRPC request/response. Tesla is optional dependency. Fixes #17 BTW I also ran mix format on entire project,...
Hello, we are using your library together with Tesla in Telnyx. We wrote custom middleware that encodes and decodes XMLRPC using your library. I was thinking about open sourcing this...
Closes #21 Also set the latest version in README (1.4).
The following code ```elixir case XMLRPC.decode!(body) do %XMLRPC.Fault{fault_code: 2} -> IO.inspect("fault 2") end ``` makes dialyzer complain: ```console The pattern can never match the type. Pattern: %XMLRPC.Fault{:fault_code => 2} Type:...