You need to sign in to do that
Don't have an account?
~Onkar
Use Asp.net WSDL in APEX class
Hi,
How can we aceess or use "ASP.net WSDL" in Apex class.
when i am trying to use this its give the following error
"Failed to parse wsdl: Found more than one wsdl:binding. WSDL with multiple binding not supported"
Please help
How can we aceess or use "ASP.net WSDL" in Apex class.
when i am trying to use this its give the following error
"Failed to parse wsdl: Found more than one wsdl:binding. WSDL with multiple binding not supported"
Please help
Try removing the soap12 binding and the soap12 port. They look something like this:
<wsdl:binding name="ServiceSoap12" type="tns:ServiceSoap">
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
...............
</wsdl:binding>
...
..
..
...
<wsdl: port name="ServiceSoap12" binding="tns:ServiceSoap12">
..........
</wsdl: port>
All Answers
Try removing the soap12 binding and the soap12 port. They look something like this:
<wsdl:binding name="ServiceSoap12" type="tns:ServiceSoap">
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
...............
</wsdl:binding>
...
..
..
...
<wsdl: port name="ServiceSoap12" binding="tns:ServiceSoap12">
..........
</wsdl: port>
Thank you for the post! Worked perrfectly
Thanks, this worked great.