Communication problem with Web Service in localhost via SSL - web-services

I have created a certificate with Powershell:
New-SelfSignedCertificate -DnsName "localhost" -CertStoreLocation "cert:\LocalMachine\My"
I have copied the certificate to trusted root certification authorities
I have enabled certificate binding in IIS
Now if I access localhost from chrome I see the ssl connection correctly
however, if I start the connection from the web application I get the following error:
The SSL connection could not be established, see inner exception.
Request text: https://localhost/webservice/api/ImboundCall/?Telephone=5551234
System.Net.Http.HttpRequestException: The SSL connection could not be established, see inner exception.
System.Security.Authentication.AuthenticationException: The remote certificate is invalid according to the validation procedure
even with Postman same message

Related

Docusign Webhook TLS exception

When DocuSign tries to call my API it throws a TLS exception, how can I solve this?
Error: Exception in EnvelopeIntegration.RunIntegration: 7f48081c-4fb1-48c5-a97a-66498625a892 :: https://dapi.altertude.com/api/1/rest/feed-master/queue/GTC_Dev/apim/DocuSign/1.0.1/Docusignwebhook :: Error - The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel.; The remote certificate is invalid according to the validation procedure.
You need to use a TLS certificate for HTTPS connections that is issued by a well-known CA, such as those listed in the Microsoft Trusted Root program. Using a self-signed certificate or any of the free certificates from untrusted CAs will not work.

Self-signed certificate installation on client side

Let's imagine we have the server with self-signed certificate and the client which want to connect to the server. Client don't have the certificate from server installed on it's store.
Is it correct that client can fetch the certificate from server, add it to it's own certificate store (after user confirmation) and have secured connection?
I am asking because I don't want to spread the sertificate to all clients by some way.
I just want them to be able to download certificate from server during first connection attempt and use it, if user confirm it's trustable.

I'm getting [Your connection isn't private] after using ssl certificate from AWS

I have a web app which consists of 2 parts, front-end(hosted on host gator via https) and a back-end on AWS.
At first I got 'Mixed Content' error when I tried to connect my https front-end to my http back-end on elastic beanstalk, so I got myself an ssl certificate from ACM and applied it to my http back-end using load balancer, so now I can access back-end via the same link but with 'https' instead of 'http', but I get this error in the browser 'Your connection isn't private, NET::ERR_CERT_COMMON_NAME_INVALID', and I have to proceed manually, same happens with my front-end when I connect it to the new https link, as I get this error in the console.
what should I do?

how to use haproxy for aws elastic service

This is my haproxy:
frontend es_front
bind 127.0.0.1:9200
mode tcp
option tcplog
default_backend es_backend
backend es_backend
mode tcp
option tcplog
balance roundrobin
server es-1 vpc-es-.eu-central-1.es.amazonaws.com:443 check ssl verify none
Here is my error:
curl -XGET 'https://127.0.0.1:9200/_cluster/health?'
curl: (35) gnutls_handshake() failed: An unexpected TLS packet was received.
So how do I deal with ES on aws with haproxy?
Thanks
ssl verify none tells HAProxy to terminate the TLS session toward the back-end. If this is used, but the front end does not also have ssl on the bind line, then you are telling HAProxy to return cleartext, not TLS, back to the browser.
Remove ssl verify none ... or access the proxy with HTTP, not HTTPS, in your curl URL.

certificate https endpoint in wso2 esb

in wso2 esb i want to add a https proxy service and but when in define proxy service in specity source url use https://... in test url get error :
Invalid WSDL URI (Unable to establish a connection)
and in next step in definr endpoint use of an endpoint https:// ... this error apear :
Unable to validate SSL Certificate of https://....
i try to certificate a crt file and in my https proxy service in wso2\repository\resources\security\client-truststore.jks with keytool
%JAVA_HOME%\bin\keytool -genkey -alias tomcat -keyalg RSA
and enable https transport sender and recsiever in axis2.xml but my problem do not solve.
I guess, you are trying to connect to a HTTPS endpoint using proxy service. Here you want to import the endpoint server's certificate chain in the the "client-truststore.jks" flie and restart the server. However; by default HTTPS transport sender and receiver are enabled. You may not need to enable them.
But few things to remember..
In transport sender, if you do NOT want to verify the host name of the end point server with its certificate, Please configure "HostnameVerifier" property to "AllowAll". If not, if your end point server's IP and certificate CN are not matched, It would create some errors.
If end point server's certificate is a self signed on, you can just import the server's certificate. If it is a CA singed on, You need to import all the CA certificate chain.
(However most common CA certificates can be found in the "client-truststore.jks" file)
If you want to change the trust store or key store files, you can do it using transport sender configurations. By default trust store file is "client-truststore.jks" Also, if you did any changes to axis2.xml file or key stores, Please restart the server.
Also If you want to expose your proxy service using SSL, you need to enable the "https" in the proxy service. And then your client needs to user ESB server's certificate to call the proxy service.