Hello, please use this WSDL link http://banktest.ir/gateway/saman/Payments/InitPayment?wsdl
elixir: v1.8.0 , {:soap, "~> 1.0.1"}
when I use it like this:
defmodule Khatoghalam.Extera.Bank.Saman do
def get_saman_token do
wsdl_url = "http://banktest.ir/gateway/saman/Payments/InitPayment?wsdl"
with {:ok, wsdl} <- Soap.init_model(wsdl_url, :url) do
IO.inspect(wsdl)
else
nil -> {:unknown_error}
_ -> {:unknown_error}
end
end
end
Hello, please use this WSDL link
http://banktest.ir/gateway/saman/Payments/InitPayment?wsdl
elixir: v1.8.0 ,
{:soap, "~> 1.0.1"}
when I use it like this:
I have this error:
How can I fix this ?
I think this def doesn't work
and the end output is nil when I comment that function