soap icon indicating copy to clipboard operation
soap copied to clipboard

SOAP client for Elixir programming language

Results 20 soap issues
Sort by recently updated
recently updated
newest added

When I try to use any actions from my WSDL file the namespace is missing from the request, thus resulting in an invalid request. It should look like this: ```xml...

`sweet_xml` 0.7 was released in July 2021. There are already some libraries like `ex_aws` that [specify `sweet_xml ~> 0.7` in their dependencies](https://github.com/ex-aws/ex_aws/blob/c59ae58ab397cf9eb4c82f590c5c91efafe7f134/mix.exs#L52), which results in an error when `ex_aws` and...

The issue I'm trying to fix: we're sending Base64-encoded files in some SOAP requests and seeing overhead of ~200ms per request that we'd like to avoid. After some investigation I...

The function spec for `Soap.call/4` specifies that the params argument has the type map. In reality, `Request.call/4` has the params type as `any()`. This results in the following linting error,...

Hi there, With Elixir 1.9.1 I couldn't go further instead I receive this error: "(ArgumentError) could not fetch application environment :globals for application :soap because configuration :globals was not set"...

The API that we need to use is returning MTOM responses with bigger binary objects (> 100MB). This library currently does not allow me to communicate with it.

Trying to parse de following wsdl file [ws-rca-dev.24broker.ro.xml.txt](https://github.com/elixir-soap/soap/files/5535597/ws-rca-dev.24broker.ro.xml.txt) I get all lists empty ``` {:ok, %{ complex_types: [], endpoint: "", messages: [], namespaces: %{}, operations: [], schema_attributes: %{ element_form_default: "",...

Hi, the params in the call, are defined in the documentation as: %{key: value}, if i need define map into map,is accepted as valid params? i try, but i get...