Soap v0.2.0 Soap.Request.Headers View Source
Link to this section Summary
Functions
Headers generator by soap action and custom headers
Link to this section Functions
Link to this function
build(wsdl, operation, custom_headers) View Source
Headers generator by soap action and custom headers.
Examples
iex> {:ok, wsdl} = Fixtures.get_file_path("wsdl/SendService.wsdl") |> Soap.init_model(:file)
...> Soap.Request.Headers.build(wsdl, "SendMessage", [])
[{"SOAPAction", "com.esendex.ems.soapinterface/SendMessage"}, {"Content-Type", "text/xml;charset=utf-8"}]