I am trying to connect to a web service. I have a wsdl that I converted to class using SVCUTIL..
When calling the service from .net console application, I get this error
There was no endpoint listening at https://rest.developer.yodlee.com:8080/yodsoap/services/RoutingNumberServiceService_2017Q1 that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details.
Inner exception : Unable to connect to remote server
I am not sure what I am doing here and how to fix this..
Below is the wsdl's service info..
<wsdl:service name="RoutingNumberServiceService">
<wsdl:port binding="impl:RoutingNumberServiceSoapBinding" name="RoutingNumberService">
<wsdlsoap:address location="http://localhost:8080/yodsoap/services/RoutingNumberService_2017Q1/" />
</wsdl:port>
</wsdl:service>
This is the client's config
<client>
<endpoint address="https://rest.developer.yodlee.com:8080/yodsoap/services/RoutingNumberServiceService_2017Q1"
binding="basicHttpBinding" bindingConfiguration="RoutingNumberServiceSoapBinding"
contract="RoutingNumberServiceService.RoutingNumberService" name="RoutingNumberService" />
</client>
Can someone help me understand what is that I am missing here.. Appreciate the help. I tried a lot of solutions online and nothing helped me. Thanks in advance!!