Posts

Showing posts with the label ssl

XAMPP SSL not working outside localhost

XAMPP SSL not working outside localhost I have configured apache for SSL like this- <VirtualHost *:443> ServerAdmin root@mysite.com ServerName mysite.com ServerAlias mysite.com ServerAlias www.mysite.com DefaultType text/html ErrorLog "logs/mysite.log" CustomLog "logs/mysiteCustom.log" common SSLEngine On #SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL #SSLCACertificateFile "D:xamppapacheconfsslca_bundle.crt" SSLCertificateFile "D:xamppapacheconfssl.crtserver.crt" SSLCertificateKeyFile "D:xamppapacheconfssl.keyserver.key" ProxyRequests off ProxyPreserveHost On ProxyPass / ajp://127.0.0.1:8009/ #smax=0 ttl=60 retry=5 #ProxyPass / http://localhost:8080/ #ProxyPassReverse / ajp://127.0.0.1:8009/ </VirtualHost> It works fine on localhost, but as I tries to access mysite.com from outside of localhost, browser says...

Weblogic/Java not sending Client Certificate in Mutual SSL Integration with IIS

Weblogic/Java not sending Client Certificate in Mutual SSL Integration with IIS I'm having trouble understanding why Weblogic/Java are not sending the Client certificate requested by the server(IIS server) during SSL Handshake via the CertificateRequest message. I have already checked and tried all the other questions/answer in SO such as : Java not providing client certificate for mutual SSL? and similar. I have created a custom keystore called Identity.jks and I've follwed the WL guides (and everything else I could find on the Internet) to do the right settings. Here are the debug logs for the SSL handshake: *** CertificateRequest Cert Types: RSA, DSS, ECDSA Supported Signature Algorithms: SHA512withRSA, SHA512withECDSA, SHA256withRSA, SHA384withRSA, SHA1withRSA, SHA256withECDSA, SHA384withECDSA, SHA1withECDSA, SHA1withDSA Cert Authorities: <Empty> *** ServerHelloDone Warning: no suitable certificate found - continuing without client authentication *** Certificate chain...