I've been given a Url like:
https://xxxx.gr/xxx/xxx/xxx/xxx?WSDL
to create a consumer.
For testing reasons I've started a new desktop application in C# and when I tried to add the service reference I get the following error:
The request was aborted: Could not create SSL/TLS secure channel.
Then I tried to hit that Url direct from each browser (IE, FireFox, Chrome). They all report that it is insecure connection.
For example, in FireFox I get this info:
https:xxxx/xxx/xxx?WSDL
Peer's Certificate issuer is not recognized.
HTTP Strict Transport Security: false
HTTP Public Key Pinning: false
Certificate chain:
-----BEGIN CERTIFICATE-----
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
-----END CERTIFICATE-----
I search the web and also SO but I couldn't figure it out.
Is there something I could do or the problem is from service side?
PS I'm completely ignorant about certificates etc.
Thanks.