-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Operations not found in our WSDL #67
Comments
Hi, thanks for comment, i will research this problem at soon or you can make the pr for resolve this :) |
@sigmen do you have any progress with it? |
We did not work either with the european vat validition service. Link here: |
Might be related... I just ran into all defp get_operations(wsdl, protocol_ns, soap_ns) do wsdl |> xpath(~x"//#{ns("definitions", protocol_ns)}/#{ns("binding", protocol_ns)}/#{ns("operation", protocol_ns)}"l) |> Enum.map(fn node -> node |> xpath(~x".", name: ~x"./@name"s, soap_action: ~x"./#{ns("operation", soap_ns)}/@soapAction"s) |> Map.put(:input, get_operation_input(node, protocol_ns, soap_ns)) end) |> Enum.reject(fn x -> x[:soap_action] == "" end) end @sigmen @Nitrino This may not have been a use case identified yet? |
@cscholle1 I am having the same difficulty on an Experian API that has blank values for |
Hi,
we waited for your release and tried 1.0.1. We still have problems with your library.
Here is our wsdl file
api.wsdl.txt
When we parse it no operations are found, and therefore we can't call any action:
Obviously, operations should not be empty.
The text was updated successfully, but these errors were encountered: