just found soap generates multiple equals functions (the only difference is specs) from WSDL with the same overloaded RPC calls. This ends up with errors during compilation like:
api_client.erl:48: spec for 'CardIssueRequest'/3 already defined
api_client.erl:51: function 'CardIssueRequest'/3 already defined
api_client.erl:54: spec for 'CardIssueRequest'/3 already defined
api_client.erl:57: function 'CardIssueRequest'/3 already defined
After removing duplicate lines from erlang file and editing specs it works fine.
Hello,
just found soap generates multiple equals functions (the only difference is specs) from WSDL with the same overloaded RPC calls. This ends up with errors during compilation like:
After removing duplicate lines from erlang file and editing specs it works fine.