4 Replies Latest reply on Aug 16, 2012 3:36 AM by virendrapatidar

    HTTPS/SSL on jBOSS AS 7 Using Dummy Certificate.

    virendrapatidar

      Hi,

       

      I am using apache HTTPClient lib to send the HTTPS/Post sequest to one server deployed on jBOSS AS 7.

       

      A. From client application..I m setting certificate as below

       

      HttpClient httpclient = wrapClient(new DefaultHttpClient());

       

      public static HttpClient wrapClient(HttpClient base) {

          try {

              SSLContext ctx = SSLContext.getInstance("TLS");

              X509TrustManager tm = new X509TrustManager() {

                  public void checkClientTrusted(X509Certificate[] xcs, String string) throws CertificateException { }

       

                  public void checkServerTrusted(X509Certificate[] xcs, String string) throws CertificateException { }

       

                  public X509Certificate[] getAcceptedIssuers() {

                      return null;

                  }

              };

              ctx.init(null, new TrustManager[]{tm}, null);

              SSLSocketFactory ssf = new SSLSocketFactory(ctx);

              ssf.setHostnameVerifier(SSLSocketFactory.ALLOW_ALL_HOSTNAME_VERIFIER);

              ClientConnectionManager ccm = base.getConnectionManager();

              SchemeRegistry sr = ccm.getSchemeRegistry();

              sr.register(new Scheme("https", ssf, 443));

              return new DefaultHttpClient(ccm, base.getParams());

          } catch (Exception ex) {

              return null;

          }

      }

       

       

      B. HTTPS/SSL configuration on standalone.xml JBOSS AS7 is as below

      <subsystem xmlns="urn:jboss:domain:web:1.1" default-virtual-server="default-host">

                  <connector name="http" protocol="HTTP/1.1" scheme="http" socket-binding="http"/>

                  <connector name="https" protocol="HTTP/1.1" scheme="https" socket-binding="https" secure="true">

                      <ssl password="password" certificate-key-file="/Users/Virendra/jboss/jboss-as-7.1.1.Final/newkey.pem" protocol="TLSv1" verify-client="false" certificate-file="/Users/Virendra/jboss/jboss-as-7.1.1.Final/newcert.pem"/>

                  </connector>

                  <virtual-server name="default-host" enable-welcome-root="true">

                      <alias name="localhost"/>

                      <alias name="example.com"/>

                  </virtual-server>

              </subsystem>

       

       

      C. When send request from client program using ceritifate as in step A above. I get below error on JBOSS AS 7. While the request if I sent to Tomcat 7, it gets accepted I get response as well.

       

      12:35:28,580 ERROR [stderr] (http--127.0.0.1-8443-1) javax.net.ssl.SSLHandshakeException: Remote host closed connection during handshake

      12:35:28,581 ERROR [stderr] (http--127.0.0.1-8443-1)           at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:849)

      12:35:28,582 ERROR [stderr] (http--127.0.0.1-8443-1)           at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1170)

       

      Can anyone give some clue, if I need to set/change some paramters in JBOSS AS 7 to so that i can work?

      My requirement is to make request working without ceritificates (using dummy ceritificate).

       

       

       

       


        • 1. Re: HTTPS/SSL on jBOSS AS 7 Using Dummy Certificate.
          jaysensharma

          Hi,

           

           

              Run your JBoss AS7 with the following system property to get more details:  

          -Djavax.net.debug=all

            

           

             Just in case while running your Java Client if you see the following kind of error in JBoss AS7 console:

          [stdout] (http-localhost/127.0.0.1:8443-1) http-localhost/127.0.0.1:8443-1, handling exception: javax.net.ssl.SSLHandshakeException: SSLv2Hello is disabled

           

          17:58:04,643 INFO  [stdout] (http-localhost/127.0.0.1:8443-1) http-localhost/127.0.0.1:8443-1, setSoTimeout(60000) called

          17:58:04,652 INFO  [stdout] (http-localhost/127.0.0.1:8443-1) [Raw read]: length = 5

          17:58:04,653 INFO  [stdout] (http-localhost/127.0.0.1:8443-1) 0000: 80 62 01 03 01                                     .b...

          17:58:04,653 INFO  [stdout] (http-localhost/127.0.0.1:8443-1) http-localhost/127.0.0.1:8443-1, handling exception: javax.net.ssl.SSLHandshakeException: SSLv2Hello is disabled

          17:58:04,653 INFO  [stdout] (http-localhost/127.0.0.1:8443-1) http-localhost/127.0.0.1:8443-1, SEND TLSv1 ALERT:  fatal, description = handshake_failure

          17:58:04,653 INFO  [stdout] (http-localhost/127.0.0.1:8443-1) http-localhost/127.0.0.1:8443-1, WRITE: TLSv1 Alert, length = 2

          17:58:04,653 INFO  [stdout] (http-localhost/127.0.0.1:8443-1) [Raw write]: length = 7

          17:58:04,654 INFO  [stdout] (http-localhost/127.0.0.1:8443-1) 0000: 15 03 01 00 02 02 28                               ......(

          17:58:04,654 INFO  [stdout] (http-localhost/127.0.0.1:8443-1) http-localhost/127.0.0.1:8443-1, called closeSocket()

          17:58:04,654 INFO  [stdout] (http-localhost/127.0.0.1:8443-1) http-localhost/127.0.0.1:8443-1, IOException in getSession():  javax.net.ssl.SSLHandshakeException: SSLv2Hello is disabled

          17:58:04,654 INFO  [stdout] (http-localhost/127.0.0.1:8443-1) http-localhost/127.0.0.1:8443-1, called close()

          17:58:04,654 INFO  [stdout] (http-localhost/127.0.0.1:8443-1) http-localhost/127.0.0.1:8443-1, called closeInternal(true)

           

            If you see above kind of Error on JBossAs7 side then while running your client make sure to use the below System property "-Dhttps.protocols=TLSv1":

           

          java -Dhttps.protocols=TLSv1 -Djavax.net.debug=all TestHttpsClient

          • 2. Re: HTTPS/SSL on jBOSS AS 7 Using Dummy Certificate.
            virendrapatidar

            No.. it does not help.. i m putting all logs..please see if you find anything in this..

             

             

             

            18:34:34,873 INFO  [com.titlevest.realecsimulator.controller.RealECController] (http--127.0.0.1-8443-2) RealEC-Simulator : requestType:::::::::http

            18:34:34,883 INFO  [TitleVestHttpRequest] (http--127.0.0.1-8443-2) Sending Request to TV-RealEC Serverhttps://localhost:8443/TV-RealEC/TitleVestServlet

            18:34:34,943 INFO  [stdout] (http--127.0.0.1-8443-2) trigger seeding of SecureRandom

            18:34:34,943 INFO  [stdout] (http--127.0.0.1-8443-2) done seeding SecureRandom

            18:34:34,958 INFO  [stdout] (http--127.0.0.1-8443-2) trustStore is: /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/security/cacerts

            18:34:34,959 INFO  [stdout] (http--127.0.0.1-8443-2) trustStore type is : jks

            18:34:34,959 INFO  [stdout] (http--127.0.0.1-8443-2) trustStore provider is :

            18:34:34,960 INFO  [stdout] (http--127.0.0.1-8443-2) init truststore

            18:34:35,088 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,088 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Secure Global CA, O=SecureTrust Corporation, C=US

            18:34:35,089 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Secure Global CA, O=SecureTrust Corporation, C=US

            18:34:35,090 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x75622a4e8d48a894df413c8f0f8eaa5

            18:34:35,090 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Tue Nov 07 23:42:28 GST 2006 until Mon Dec 31 23:52:06 GST 2029

            18:34:35,091 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,092 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,092 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: EMAILADDRESS=personal-freemail@thawte.com, CN=Thawte Personal Freemail CA, OU=Certification Services Division, O=Thawte Consulting, L=Cape Town, ST=Western Cape, C=ZA

            18:34:35,093 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  EMAILADDRESS=personal-freemail@thawte.com, CN=Thawte Personal Freemail CA, OU=Certification Services Division, O=Thawte Consulting, L=Cape Town, ST=Western Cape, C=ZA

            18:34:35,094 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x0

            18:34:35,095 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Jan 01 04:00:00 GST 1996 until Fri Jan 01 03:59:59 GST 2021

            18:34:35,096 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,096 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,097 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Buypass Class 2 CA 1, O=Buypass AS-983163327, C=NO

            18:34:35,099 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Buypass Class 2 CA 1, O=Buypass AS-983163327, C=NO

            18:34:35,101 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1

            18:34:35,102 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Oct 13 14:25:09 GST 2006 until Thu Oct 13 14:25:09 GST 2016

            18:34:35,102 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,103 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,103 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Belgium Root CA2, C=BE

            18:34:35,104 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Belgium Root CA2, C=BE

            18:34:35,104 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x2affbe9fa2f0e987

            18:34:35,105 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Oct 04 14:00:00 GST 2007 until Wed Dec 15 12:00:00 GST 2021

            18:34:35,106 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,106 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,107 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: EMAILADDRESS=server-certs@thawte.com, CN=Thawte Server CA, OU=Certification Services Division, O=Thawte Consulting cc, L=Cape Town, ST=Western Cape, C=ZA

            18:34:35,108 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  EMAILADDRESS=server-certs@thawte.com, CN=Thawte Server CA, OU=Certification Services Division, O=Thawte Consulting cc, L=Cape Town, ST=Western Cape, C=ZA

            18:34:35,109 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1

            18:34:35,109 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Aug 01 04:00:00 GST 1996 until Fri Jan 01 03:59:59 GST 2021

            18:34:35,110 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,110 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,111 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: OU=Trustis FPS Root CA, O=Trustis Limited, C=GB

            18:34:35,112 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  OU=Trustis FPS Root CA, O=Trustis Limited, C=GB

            18:34:35,113 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1b1fadb620f924d3366bf7c7f18ca059

            18:34:35,113 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Tue Dec 23 16:14:06 GST 2003 until Sun Jan 21 15:36:54 GST 2024

            18:34:35,114 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,115 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,115 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=AddTrust Qualified CA Root, OU=AddTrust TTP Network, O=AddTrust AB, C=SE

            18:34:35,116 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=AddTrust Qualified CA Root, OU=AddTrust TTP Network, O=AddTrust AB, C=SE

            18:34:35,117 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1

            18:34:35,117 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Tue May 30 14:44:50 GST 2000 until Sat May 30 14:44:50 GST 2020

            18:34:35,118 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,118 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,120 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=QuoVadis Root Certification Authority, OU=Root Certification Authority, O=QuoVadis Limited, C=BM

            18:34:35,122 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=QuoVadis Root Certification Authority, OU=Root Certification Authority, O=QuoVadis Limited, C=BM

            18:34:35,126 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x3ab6508b

            18:34:35,135 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Mar 19 22:33:33 GST 2001 until Wed Mar 17 22:33:33 GST 2021

            18:34:35,136 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,140 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,143 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=StartCom Certification Authority, OU=Secure Digital Certificate Signing, O=StartCom Ltd., C=IL

            18:34:35,144 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=StartCom Certification Authority, OU=Secure Digital Certificate Signing, O=StartCom Ltd., C=IL

            18:34:35,145 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1

            18:34:35,146 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Sun Sep 17 23:46:36 GST 2006 until Wed Sep 17 23:46:36 GST 2036

            18:34:35,150 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,151 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,152 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Echoworx Root CA2, OU=Certification Services, O=Echoworx Corporation, L=Toronto, ST=Ontario, C=CA

            18:34:35,158 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Echoworx Root CA2, OU=Certification Services, O=Echoworx Corporation, L=Toronto, ST=Ontario, C=CA

            18:34:35,160 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x0

            18:34:35,161 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Oct 06 14:49:13 GST 2005 until Mon Oct 07 14:49:13 GST 2030

            18:34:35,161 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,162 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,162 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=AffirmTrust Premium ECC, O=AffirmTrust, C=US

            18:34:35,163 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=AffirmTrust Premium ECC, O=AffirmTrust, C=US

            18:34:35,174 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: EC; Serial number: 0x7497258ac73f7a54

            18:34:35,176 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Jan 29 18:20:24 GST 2010 until Mon Dec 31 18:20:24 GST 2040

            18:34:35,177 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,177 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,178 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=SecureSign RootCA11, O="Japan Certification Services, Inc.", C=JP

            18:34:35,178 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=SecureSign RootCA11, O="Japan Certification Services, Inc.", C=JP

            18:34:35,179 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1

            18:34:35,180 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed Apr 08 08:56:47 GST 2009 until Sun Apr 08 08:56:47 GST 2029

            18:34:35,180 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,182 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,184 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=XRamp Global Certification Authority, O=XRamp Security Services Inc, OU=www.xrampsecurity.com, C=US

            18:34:35,186 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=XRamp Global Certification Authority, O=XRamp Security Services Inc, OU=www.xrampsecurity.com, C=US

            18:34:35,188 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x50946cec18ead59c4dd597ef758fa0ad

            18:34:35,189 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Nov 01 21:14:04 GST 2004 until Mon Jan 01 09:37:19 GST 2035

            18:34:35,190 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,190 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,190 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Equifax Secure Global eBusiness CA-1, O=Equifax Secure Inc., C=US

            18:34:35,191 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Equifax Secure Global eBusiness CA-1, O=Equifax Secure Inc., C=US

            18:34:35,192 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1

            18:34:35,192 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Jun 21 08:00:00 GST 1999 until Sun Jun 21 08:00:00 GST 2020

            18:34:35,193 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,194 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,194 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=AdminCA-CD-T01, OU=Certification Authorities, OU=Services, O=admin, C=CH

            18:34:35,195 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=AdminCA-CD-T01, OU=Certification Authorities, OU=Services, O=admin, C=CH

            18:34:35,196 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1

            18:34:35,196 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed Jan 25 17:36:19 GST 2006 until Mon Jan 25 16:36:19 GST 2016

            18:34:35,199 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,200 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,200 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=AffirmTrust Commercial, O=AffirmTrust, C=US

            18:34:35,201 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=AffirmTrust Commercial, O=AffirmTrust, C=US

            18:34:35,201 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x7777062726a9b17c

            18:34:35,202 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Jan 29 18:06:06 GST 2010 until Tue Dec 31 18:06:06 GST 2030

            18:34:35,203 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,203 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,204 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=UCA Root, O=UniTrust, C=CN

            18:34:35,205 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=UCA Root, O=UniTrust, C=CN

            18:34:35,205 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x9

            18:34:35,207 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Jan 01 04:00:00 GST 2004 until Mon Dec 31 04:00:00 GST 2029

            18:34:35,208 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,210 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,211 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Cisco Root CA 2048, O=Cisco Systems

            18:34:35,211 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Cisco Root CA 2048, O=Cisco Systems

            18:34:35,212 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x5ff87b282b54dc8d42a315b568c9adff

            18:34:35,213 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Sat May 15 00:17:12 GST 2004 until Tue May 15 00:25:42 GST 2029

            18:34:35,227 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,228 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,228 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: EMAILADDRESS=personal-freemail@thawte.com, CN=Thawte Personal Freemail CA, OU=Certification Services Division, O=Thawte Consulting, L=Cape Town, ST=Western Cape, C=ZA

            18:34:35,230 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  EMAILADDRESS=personal-freemail@thawte.com, CN=Thawte Personal Freemail CA, OU=Certification Services Division, O=Thawte Consulting, L=Cape Town, ST=Western Cape, C=ZA

            18:34:35,231 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x123df0e7da2a2247a43889e08aeec967

            18:34:35,234 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Jan 01 04:00:00 GST 1996 until Sat Jan 02 03:59:59 GST 2021

            18:34:35,235 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,235 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,235 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=A-Trust-nQual-03, OU=A-Trust-nQual-03, O=A-Trust Ges. f. Sicherheitssysteme im elektr. Datenverkehr GmbH, C=AT

            18:34:35,236 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=A-Trust-nQual-03, OU=A-Trust-nQual-03, O=A-Trust Ges. f. Sicherheitssysteme im elektr. Datenverkehr GmbH, C=AT

            18:34:35,238 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x16c1e

            18:34:35,240 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Aug 18 02:00:00 GST 2005 until Tue Aug 18 02:00:00 GST 2015

            18:34:35,248 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,249 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,250 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=TC TrustCenter Universal CA III, OU=TC TrustCenter Universal CA, O=TC TrustCenter GmbH, C=DE

            18:34:35,250 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=TC TrustCenter Universal CA III, OU=TC TrustCenter Universal CA, O=TC TrustCenter GmbH, C=DE

            18:34:35,251 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x632500010002148d331502e46cf4

            18:34:35,252 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed Sep 09 12:15:27 GST 2009 until Tue Jan 01 03:59:59 GST 2030

            18:34:35,253 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,253 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,254 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Juur-SK, O=AS Sertifitseerimiskeskus, C=EE, EMAILADDRESS=pki@sk.ee

            18:34:35,254 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Juur-SK, O=AS Sertifitseerimiskeskus, C=EE, EMAILADDRESS=pki@sk.ee

            18:34:35,258 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x3b8e4bfc

            18:34:35,265 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Aug 30 18:23:01 GST 2001 until Fri Aug 26 18:23:01 GST 2016

            18:34:35,268 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,269 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,269 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Baltimore CyberTrust Root, OU=CyberTrust, O=Baltimore, C=IE

            18:34:35,273 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Baltimore CyberTrust Root, OU=CyberTrust, O=Baltimore, C=IE

            18:34:35,274 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x20000b9

            18:34:35,275 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri May 12 22:46:00 GST 2000 until Tue May 13 03:59:00 GST 2025

            18:34:35,277 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,278 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,285 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=T?B?TAK UEKAE K?k Sertifika Hizmet Sa?lay?c?s? - S?r?m 3, OU=Kamu Sertifikasyon Merkezi, OU=Ulusal Elektronik ve Kriptoloji Ara?t?rma Enstit?s? - UEKAE, O=T?rkiye Bilimsel ve Teknolojik Ara?t?rma Kurumu - T?B?TAK, L=Gebze - Kocaeli, C=TR

            18:34:35,290 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=T?B?TAK UEKAE K?k Sertifika Hizmet Sa?lay?c?s? - S?r?m 3, OU=Kamu Sertifikasyon Merkezi, OU=Ulusal Elektronik ve Kriptoloji Ara?t?rma Enstit?s? - UEKAE, O=T?rkiye Bilimsel ve Teknolojik Ara?t?rma Kurumu - T?B?TAK, L=Gebze - Kocaeli, C=TR

            18:34:35,291 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x11

            18:34:35,292 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Aug 24 15:37:07 GST 2007 until Mon Aug 21 15:37:07 GST 2017

            18:34:35,293 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,293 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,293 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: OU=Class 1 Public Primary Certification Authority, O="VeriSign, Inc.", C=US

            18:34:35,294 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  OU=Class 1 Public Primary Certification Authority, O="VeriSign, Inc.", C=US

            18:34:35,295 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x3f691e819cf09a4af373ffb948a2e4dd

            18:34:35,296 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Jan 29 04:00:00 GST 1996 until Thu Aug 03 03:59:59 GST 2028

            18:34:35,297 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,301 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,302 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Buypass Class 3 CA 1, O=Buypass AS-983163327, C=NO

            18:34:35,302 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Buypass Class 3 CA 1, O=Buypass AS-983163327, C=NO

            18:34:35,303 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x2

            18:34:35,304 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon May 09 18:13:03 GST 2005 until Sat May 09 18:13:03 GST 2015

            18:34:35,305 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,305 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,306 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: OU=ePKI Root Certification Authority, O="Chunghwa Telecom Co., Ltd.", C=TW

            18:34:35,306 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  OU=ePKI Root Certification Authority, O="Chunghwa Telecom Co., Ltd.", C=TW

            18:34:35,310 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x15c8bd65475cafb897005ee406d2bc9d

            18:34:35,311 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Dec 20 06:31:27 GST 2004 until Wed Dec 20 06:31:27 GST 2034

            18:34:35,312 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,312 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,313 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=NetLock Uzleti (Class B) Tanusitvanykiado, OU=Tanusitvanykiadok, O=NetLock Halozatbiztonsagi Kft., L=Budapest, C=HU

            18:34:35,314 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=NetLock Uzleti (Class B) Tanusitvanykiado, OU=Tanusitvanykiadok, O=NetLock Halozatbiztonsagi Kft., L=Budapest, C=HU

            18:34:35,315 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x69

            18:34:35,315 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Feb 25 18:10:22 GST 1999 until Wed Feb 20 18:10:22 GST 2019

            18:34:35,316 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,316 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,317 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=QuoVadis Root CA 2, O=QuoVadis Limited, C=BM

            18:34:35,318 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=QuoVadis Root CA 2, O=QuoVadis Limited, C=BM

            18:34:35,318 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x509

            18:34:35,319 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Nov 24 22:27:00 GST 2006 until Mon Nov 24 22:23:33 GST 2031

            18:34:35,321 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,322 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,322 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=TC TrustCenter Class 4 CA II, OU=TC TrustCenter Class 4 CA, O=TC TrustCenter GmbH, C=DE

            18:34:35,323 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=TC TrustCenter Class 4 CA II, OU=TC TrustCenter Class 4 CA, O=TC TrustCenter GmbH, C=DE

            18:34:35,325 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x5c00001000241d0060a4dce7510

            18:34:35,326 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Mar 23 18:10:23 GST 2006 until Thu Jan 01 02:59:59 GST 2026

            18:34:35,327 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,328 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,328 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Entrust.net Certification Authority (2048), OU=(c) 1999 Entrust.net Limited, OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.), O=Entrust.net

            18:34:35,329 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Entrust.net Certification Authority (2048), OU=(c) 1999 Entrust.net Limited, OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.), O=Entrust.net

            18:34:35,330 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x3863def8

            18:34:35,331 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Dec 24 21:50:51 GST 1999 until Tue Jul 24 18:15:12 GST 2029

            18:34:35,332 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,332 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,332 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Trusted Certificate Services, O=Comodo CA Limited, L=Salford, ST=Greater Manchester, C=GB

            18:34:35,333 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Trusted Certificate Services, O=Comodo CA Limited, L=Salford, ST=Greater Manchester, C=GB

            18:34:35,334 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1

            18:34:35,335 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Jan 01 04:00:00 GST 2004 until Mon Jan 01 03:59:59 GST 2029

            18:34:35,335 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,336 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,336 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: EMAILADDRESS=ca@SwissSign.com, CN=SwissSign CA (RSA IK May 6 1999 18:00:58), O=SwissSign, C=CH

            18:34:35,337 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  EMAILADDRESS=ca@SwissSign.com, CN=SwissSign CA (RSA IK May 6 1999 18:00:58), O=SwissSign, C=CH

            18:34:35,338 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x610c279ab773df2

            18:34:35,339 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Nov 27 03:27:41 GST 2000 until Thu Nov 27 03:27:41 GST 2031

            18:34:35,344 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,345 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,345 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=DST Root CA X4, O=Digital Signature Trust Co.

            18:34:35,352 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=DST Root CA X4, O=Digital Signature Trust Co.

            18:34:35,353 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0xd01e46500000298c0000000200000002

            18:34:35,354 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed Sep 13 10:22:50 GST 2000 until Sun Sep 13 10:22:50 GST 2020

            18:34:35,355 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,355 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,356 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: O=(c) 2005 T?RKTRUST Bilgi ?leti?im ve Bili?im G?venli?i Hizmetleri A.?., L=ANKARA, C=TR, CN=T?RKTRUST Elektronik Sertifika Hizmet Sa?lay?c?s?

            18:34:35,358 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  O=(c) 2005 T?RKTRUST Bilgi ?leti?im ve Bili?im G?venli?i Hizmetleri A.?., L=ANKARA, C=TR, CN=T?RKTRUST Elektronik Sertifika Hizmet Sa?lay?c?s?

            18:34:35,359 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1

            18:34:35,359 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri May 13 14:27:17 GST 2005 until Sun Mar 22 14:27:17 GST 2015

            18:34:35,360 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,360 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,361 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: OU=VeriSign Trust Network, OU="(c) 1998 VeriSign, Inc. - For authorized use only", OU=Class 2 Public Primary Certification Authority - G2, O="VeriSign, Inc.", C=US

            18:34:35,362 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  OU=VeriSign Trust Network, OU="(c) 1998 VeriSign, Inc. - For authorized use only", OU=Class 2 Public Primary Certification Authority - G2, O="VeriSign, Inc.", C=US

            18:34:35,363 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0xb92f60cc889fa17a4609b85b706c8aaf

            18:34:35,364 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon May 18 04:00:00 GST 1998 until Wed Aug 02 03:59:59 GST 2028

            18:34:35,365 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,365 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,365 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=COMODO Certification Authority, O=COMODO CA Limited, L=Salford, ST=Greater Manchester, C=GB

            18:34:35,366 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=COMODO Certification Authority, O=COMODO CA Limited, L=Salford, ST=Greater Manchester, C=GB

            18:34:35,367 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x4e812d8a8265e00b02ee3e350246e53d

            18:34:35,368 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Dec 01 04:00:00 GST 2006 until Tue Jan 01 03:59:59 GST 2030

            18:34:35,369 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,369 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,370 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Izenpe.com, O=IZENPE S.A., C=ES

            18:34:35,371 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Izenpe.com, O=IZENPE S.A., C=ES

            18:34:35,371 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x6e846272f1f0a8fd1845ce369f6d5

            18:34:35,372 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Dec 13 17:08:27 GST 2007 until Sun Dec 13 12:27:25 GST 2037

            18:34:35,372 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,373 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,373 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: OU=Class 2 Public Primary Certification Authority, O="VeriSign, Inc.", C=US

            18:34:35,374 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  OU=Class 2 Public Primary Certification Authority, O="VeriSign, Inc.", C=US

            18:34:35,375 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x2d1bfc4a178da391ebe7fff58b45be0b

            18:34:35,375 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Jan 29 04:00:00 GST 1996 until Wed Aug 02 03:59:59 GST 2028

            18:34:35,376 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,376 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,378 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: OU=RSA Security 2048 V3, O=RSA Security Inc

            18:34:35,379 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  OU=RSA Security 2048 V3, O=RSA Security Inc

            18:34:35,379 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0xa0101010000027c0000000a00000002

            18:34:35,380 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Feb 23 00:39:23 GST 2001 until Mon Feb 23 00:39:23 GST 2026

            18:34:35,381 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,381 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,382 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=TC TrustCenter Universal CA I, OU=TC TrustCenter Universal CA, O=TC TrustCenter GmbH, C=DE

            18:34:35,383 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=TC TrustCenter Universal CA I, OU=TC TrustCenter Universal CA, O=TC TrustCenter GmbH, C=DE

            18:34:35,384 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1da200010002ecb76080788db606

            18:34:35,384 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed Mar 22 19:54:28 GST 2006 until Thu Jan 01 02:59:59 GST 2026

            18:34:35,385 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,385 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,386 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: EMAILADDRESS=premium-server@thawte.com, CN=Thawte Premium Server CA, OU=Certification Services Division, O=Thawte Consulting cc, L=Cape Town, ST=Western Cape, C=ZA

            18:34:35,387 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  EMAILADDRESS=premium-server@thawte.com, CN=Thawte Premium Server CA, OU=Certification Services Division, O=Thawte Consulting cc, L=Cape Town, ST=Western Cape, C=ZA

            18:34:35,388 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1

            18:34:35,390 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Aug 01 04:00:00 GST 1996 until Fri Jan 01 03:59:59 GST 2021

            18:34:35,391 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,392 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,392 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=China Internet Network Information Center EV Certificates Root, O=China Internet Network Information Center, C=CN

            18:34:35,393 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=China Internet Network Information Center EV Certificates Root, O=China Internet Network Information Center, C=CN

            18:34:35,394 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x489f0001

            18:34:35,395 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Tue Aug 31 11:11:25 GST 2010 until Sat Aug 31 11:11:25 GST 2030

            18:34:35,396 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,397 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,397 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=DigiCert Global Root CA, OU=www.digicert.com, O=DigiCert Inc, C=US

            18:34:35,398 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=DigiCert Global Root CA, OU=www.digicert.com, O=DigiCert Inc, C=US

            18:34:35,399 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x83be056904246b1a1756ac95991c74a

            18:34:35,399 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Nov 10 04:00:00 GST 2006 until Mon Nov 10 04:00:00 GST 2031

            18:34:35,400 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,401 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,401 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: EMAILADDRESS=info@valicert.com, CN=http://www.valicert.com/, OU=ValiCert Class 2 Policy Validation Authority, O="ValiCert, Inc.", L=ValiCert Validation Network

            18:34:35,403 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  EMAILADDRESS=info@valicert.com, CN=http://www.valicert.com/, OU=ValiCert Class 2 Policy Validation Authority, O="ValiCert, Inc.", L=ValiCert Validation Network

            18:34:35,408 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1

            18:34:35,409 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Sat Jun 26 04:19:54 GST 1999 until Wed Jun 26 04:19:54 GST 2019

            18:34:35,410 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,411 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,412 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=A-Trust-Qual-02, OU=A-Trust-Qual-02, O=A-Trust Ges. f. Sicherheitssysteme im elektr. Datenverkehr GmbH, C=AT

            18:34:35,413 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=A-Trust-Qual-02, OU=A-Trust-Qual-02, O=A-Trust Ges. f. Sicherheitssysteme im elektr. Datenverkehr GmbH, C=AT

            18:34:35,418 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0xe248

            18:34:35,419 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Dec 03 03:00:00 GST 2004 until Wed Dec 03 03:00:00 GST 2014

            18:34:35,420 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,420 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,421 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Class 2 Primary CA, O=Certplus, C=FR

            18:34:35,421 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Class 2 Primary CA, O=Certplus, C=FR

            18:34:35,422 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x85bd4bf3d8dae369f694d75fc3a54423

            18:34:35,425 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed Jul 07 21:05:00 GST 1999 until Sun Jul 07 03:59:59 GST 2019

            18:34:35,429 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,429 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,430 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=AddTrust External CA Root, OU=AddTrust External TTP Network, O=AddTrust AB, C=SE

            18:34:35,431 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=AddTrust External CA Root, OU=AddTrust External TTP Network, O=AddTrust AB, C=SE

            18:34:35,432 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1

            18:34:35,433 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Tue May 30 14:48:38 GST 2000 until Sat May 30 14:48:38 GST 2020

            18:34:35,435 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,436 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,436 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=NetLock Arany (Class Gold) F?tan?s?tv?ny, OU=Tan?s?tv?nykiad?k (Certification Services), O=NetLock Kft., L=Budapest, C=HU

            18:34:35,437 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=NetLock Arany (Class Gold) F?tan?s?tv?ny, OU=Tan?s?tv?nykiad?k (Certification Services), O=NetLock Kft., L=Budapest, C=HU

            18:34:35,452 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x49412ce40010

            18:34:35,453 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Dec 11 19:08:21 GST 2008 until Wed Dec 06 19:08:21 GST 2028

            18:34:35,453 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,454 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,454 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=A-Trust-nQual-01, OU=A-Trust-nQual-01, O=A-Trust, C=AT

            18:34:35,455 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=A-Trust-nQual-01, OU=A-Trust-nQual-01, O=A-Trust, C=AT

            18:34:35,455 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0xe242

            18:34:35,456 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed Dec 01 03:00:00 GST 2004 until Mon Dec 01 03:00:00 GST 2014

            18:34:35,457 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,458 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,458 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: OU=Equifax Secure Certificate Authority, O=Equifax, C=US

            18:34:35,460 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  OU=Equifax Secure Certificate Authority, O=Equifax, C=US

            18:34:35,465 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x35def4cf

            18:34:35,466 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Sat Aug 22 20:41:51 GST 1998 until Wed Aug 22 20:41:51 GST 2018

            18:34:35,467 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,467 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,467 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=KISA RootCA 1, OU=Korea Certification Authority Central, O=KISA, C=KR

            18:34:35,468 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=KISA RootCA 1, OU=Korea Certification Authority Central, O=KISA, C=KR

            18:34:35,469 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x4

            18:34:35,469 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed Aug 24 12:05:46 GST 2005 until Sun Aug 24 12:05:46 GST 2025

            18:34:35,470 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,470 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,471 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Equifax Secure eBusiness CA-1, O=Equifax Secure Inc., C=US

            18:34:35,472 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Equifax Secure eBusiness CA-1, O=Equifax Secure Inc., C=US

            18:34:35,472 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x4

            18:34:35,473 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Jun 21 08:00:00 GST 1999 until Sun Jun 21 08:00:00 GST 2020

            18:34:35,473 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,474 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,474 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: OU=Starfield Class 2 Certification Authority, O="Starfield Technologies, Inc.", C=US

            18:34:35,475 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  OU=Starfield Class 2 Certification Authority, O="Starfield Technologies, Inc.", C=US

            18:34:35,476 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x0

            18:34:35,476 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Tue Jun 29 21:39:16 GST 2004 until Thu Jun 29 21:39:16 GST 2034

            18:34:35,477 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,477 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,478 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Apple Root CA, OU=Apple Certification Authority, O=Apple Inc., C=US

            18:34:35,479 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Apple Root CA, OU=Apple Certification Authority, O=Apple Inc., C=US

            18:34:35,479 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x2

            18:34:35,480 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed Apr 26 01:40:36 GST 2006 until Sat Feb 10 01:40:36 GST 2035

            18:34:35,480 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,481 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,481 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: OU=VeriSign Trust Network, OU="(c) 1998 VeriSign, Inc. - For authorized use only", OU=Class 1 Public Primary Certification Authority - G2, O="VeriSign, Inc.", C=US

            18:34:35,482 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  OU=VeriSign Trust Network, OU="(c) 1998 VeriSign, Inc. - For authorized use only", OU=Class 1 Public Primary Certification Authority - G2, O="VeriSign, Inc.", C=US

            18:34:35,484 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x4cc7eaaa983e71d39310f83d3a899192

            18:34:35,484 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon May 18 04:00:00 GST 1998 until Wed Aug 02 03:59:59 GST 2028

            18:34:35,485 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,485 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,486 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=DigiCert Assured ID Root CA, OU=www.digicert.com, O=DigiCert Inc, C=US

            18:34:35,486 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=DigiCert Assured ID Root CA, OU=www.digicert.com, O=DigiCert Inc, C=US

            18:34:35,487 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0xce7e0e517d846fe8fe560fc1bf03039

            18:34:35,488 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Nov 10 04:00:00 GST 2006 until Mon Nov 10 04:00:00 GST 2031

            18:34:35,489 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,489 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,489 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=CertiNomis, OU=AC Racine - Root CA, O=CertiNomis, C=FR

            18:34:35,490 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=CertiNomis, OU=AC Racine - Root CA, O=CertiNomis, C=FR

            18:34:35,491 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x30303030393733373537333836303030

            18:34:35,492 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Nov 09 04:00:00 GST 2000 until Fri Nov 09 04:00:00 GST 2012

            18:34:35,492 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,493 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,493 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: EMAILADDRESS=ips@mail.ips.es, CN=IPS CA CLASE3 Certification Authority, OU=IPS CA CLASE3 Certification Authority, O="ips@mail.ips.es C.I.F.  B-60929452", O=IPS Internet publishing Services s.l., L=Barcelona, ST=Barcelona, C=ES

            18:34:35,495 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  EMAILADDRESS=ips@mail.ips.es, CN=IPS CA CLASE3 Certification Authority, OU=IPS CA CLASE3 Certification Authority, O="ips@mail.ips.es C.I.F.  B-60929452", O=IPS Internet publishing Services s.l., L=Barcelona, ST=Barcelona, C=ES

            18:34:35,496 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x0

            18:34:35,497 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Dec 31 15:19:31 GST 2001 until Mon Dec 29 15:19:31 GST 2025

            18:34:35,497 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,498 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,498 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: EMAILADDRESS=info@valicert.com, CN=http://www.valicert.com/, OU=ValiCert Class 3 Policy Validation Authority, O="ValiCert, Inc.", L=ValiCert Validation Network

            18:34:35,499 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  EMAILADDRESS=info@valicert.com, CN=http://www.valicert.com/, OU=ValiCert Class 3 Policy Validation Authority, O="ValiCert, Inc.", L=ValiCert Validation Network

            18:34:35,500 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1

            18:34:35,501 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Sat Jun 26 04:22:33 GST 1999 until Wed Jun 26 04:22:33 GST 2019

            18:34:35,502 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,502 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,502 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=GlobalSign Root CA, OU=Root CA, O=GlobalSign nv-sa, C=BE

            18:34:35,503 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=GlobalSign Root CA, OU=Root CA, O=GlobalSign nv-sa, C=BE

            18:34:35,504 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x40000000001154b5ac394

            18:34:35,504 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Tue Sep 01 16:00:00 GST 1998 until Fri Jan 28 16:00:00 GST 2028

            18:34:35,506 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,506 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,507 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=QuoVadis Root CA 3, O=QuoVadis Limited, C=BM

            18:34:35,508 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=QuoVadis Root CA 3, O=QuoVadis Limited, C=BM

            18:34:35,508 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x5c6

            18:34:35,509 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Nov 24 23:11:23 GST 2006 until Mon Nov 24 23:06:44 GST 2031

            18:34:35,510 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,510 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,510 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: EMAILADDRESS=personal-premium@thawte.com, CN=Thawte Personal Premium CA, OU=Certification Services Division, O=Thawte Consulting, L=Cape Town, ST=Western Cape, C=ZA

            18:34:35,511 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  EMAILADDRESS=personal-premium@thawte.com, CN=Thawte Personal Premium CA, OU=Certification Services Division, O=Thawte Consulting, L=Cape Town, ST=Western Cape, C=ZA

            18:34:35,513 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x4005b253a01a46435009818f121076ec

            18:34:35,513 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Jan 01 04:00:00 GST 1996 until Sat Jan 02 03:59:59 GST 2021

            18:34:35,514 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,514 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,515 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Certum CA, O=Unizeto Sp. z o.o., C=PL

            18:34:35,515 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Certum CA, O=Unizeto Sp. z o.o., C=PL

            18:34:35,516 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x10020

            18:34:35,519 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Tue Jun 11 14:46:39 GST 2002 until Fri Jun 11 14:46:39 GST 2027

            18:34:35,520 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,520 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,521 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: EMAILADDRESS=ips@mail.ips.es, CN=IPS CA Timestamping Certification Authority, OU=IPS CA Timestamping Certification Authority, O="ips@mail.ips.es C.I.F.  B-60929452", O=IPS Internet publishing Services s.l., L=Barcelona, ST=Barcelona, C=ES

            18:34:35,525 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  EMAILADDRESS=ips@mail.ips.es, CN=IPS CA Timestamping Certification Authority, OU=IPS CA Timestamping Certification Authority, O="ips@mail.ips.es C.I.F.  B-60929452", O=IPS Internet publishing Services s.l., L=Barcelona, ST=Barcelona, C=ES

            18:34:35,529 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x0

            18:34:35,531 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Dec 31 15:26:43 GST 2001 until Mon Dec 29 15:26:43 GST 2025

            18:34:35,532 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,532 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,532 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=GlobalSign, O=GlobalSign, OU=GlobalSign Root CA - R2

            18:34:35,533 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=GlobalSign, O=GlobalSign, OU=GlobalSign Root CA - R2

            18:34:35,534 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x400000000010f8626e60d

            18:34:35,534 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Dec 15 12:00:00 GST 2006 until Wed Dec 15 12:00:00 GST 2021

            18:34:35,535 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,535 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,536 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=NetLock Kozjegyzoi (Class A) Tanusitvanykiado, OU=Tanusitvanykiadok, O=NetLock Halozatbiztonsagi Kft., L=Budapest, ST=Hungary, C=HU

            18:34:35,537 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=NetLock Kozjegyzoi (Class A) Tanusitvanykiado, OU=Tanusitvanykiadok, O=NetLock Halozatbiztonsagi Kft., L=Budapest, ST=Hungary, C=HU

            18:34:35,538 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x103

            18:34:35,538 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Feb 25 03:14:47 GST 1999 until Wed Feb 20 03:14:47 GST 2019

            18:34:35,539 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,539 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,540 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: EMAILADDRESS=premium-server@thawte.com, CN=Thawte Premium Server CA, OU=Certification Services Division, O=Thawte Consulting cc, L=Cape Town, ST=Western Cape, C=ZA

            18:34:35,541 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  EMAILADDRESS=premium-server@thawte.com, CN=Thawte Premium Server CA, OU=Certification Services Division, O=Thawte Consulting cc, L=Cape Town, ST=Western Cape, C=ZA

            18:34:35,542 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x36122296c5e338a520a1d25f4cd70954

            18:34:35,543 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Aug 01 04:00:00 GST 1996 until Sat Jan 02 03:59:59 GST 2021

            18:34:35,544 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,544 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,544 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: EMAILADDRESS=personal-basic@thawte.com, CN=Thawte Personal Basic CA, OU=Certification Services Division, O=Thawte Consulting, L=Cape Town, ST=Western Cape, C=ZA

            18:34:35,545 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  EMAILADDRESS=personal-basic@thawte.com, CN=Thawte Personal Basic CA, OU=Certification Services Division, O=Thawte Consulting, L=Cape Town, ST=Western Cape, C=ZA

            18:34:35,547 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0xd8e1512e1acbb778d38e324df8c30f2

            18:34:35,547 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Jan 01 04:00:00 GST 1996 until Sat Jan 02 03:59:59 GST 2021

            18:34:35,548 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,548 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,549 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Chambers of Commerce Root, OU=http://www.chambersign.org, O=AC Camerfirma SA CIF A82743287, C=EU

            18:34:35,549 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Chambers of Commerce Root, OU=http://www.chambersign.org, O=AC Camerfirma SA CIF A82743287, C=EU

            18:34:35,550 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x0

            18:34:35,551 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Tue Sep 30 20:13:43 GST 2003 until Wed Sep 30 20:13:44 GST 2037

            18:34:35,551 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,552 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,552 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=AOL Time Warner Root Certification Authority 1, OU=America Online Inc., O=AOL Time Warner Inc., C=US

            18:34:35,553 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=AOL Time Warner Root Certification Authority 1, OU=America Online Inc., O=AOL Time Warner Inc., C=US

            18:34:35,554 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1

            18:34:35,554 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed May 29 10:00:00 GST 2002 until Fri Nov 20 19:03:00 GST 2037

            18:34:35,555 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,555 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,557 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=A-Trust-Qual-01, OU=A-Trust-Qual-01, O=A-Trust Ges. f?r Sicherheitssysteme im elektr. Datenverkehr GmbH, C=AT

            18:34:35,558 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=A-Trust-Qual-01, OU=A-Trust-Qual-01, O=A-Trust Ges. f?r Sicherheitssysteme im elektr. Datenverkehr GmbH, C=AT

            18:34:35,559 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0xe243

            18:34:35,560 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed Dec 01 03:00:00 GST 2004 until Mon Dec 01 03:00:00 GST 2014

            18:34:35,561 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,561 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,561 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: OU=Class 2 Public Primary Certification Authority, O="VeriSign, Inc.", C=US

            18:34:35,562 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  OU=Class 2 Public Primary Certification Authority, O="VeriSign, Inc.", C=US

            18:34:35,563 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0xaba1e006232e8b436265d1f7ccd8966

            18:34:35,563 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Jan 29 04:00:00 GST 1996 until Thu Aug 03 03:59:59 GST 2028

            18:34:35,571 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,571 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,572 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Wells Fargo Root Certificate Authority, OU=Wells Fargo Certification Authority, O=Wells Fargo, C=US

            18:34:35,573 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Wells Fargo Root Certificate Authority, OU=Wells Fargo Certification Authority, O=Wells Fargo, C=US

            18:34:35,574 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x39e4979e

            18:34:35,575 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed Oct 11 20:41:28 GST 2000 until Thu Jan 14 20:41:28 GST 2021

            18:34:35,575 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,575 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,576 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Hongkong Post Root CA 1, O=Hongkong Post, C=HK

            18:34:35,577 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Hongkong Post Root CA 1, O=Hongkong Post, C=HK

            18:34:35,577 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x3e8

            18:34:35,578 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu May 15 09:13:14 GST 2003 until Mon May 15 08:52:29 GST 2023

            18:34:35,578 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,579 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,579 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: EMAILADDRESS=personal-basic@thawte.com, CN=Thawte Personal Basic CA, OU=Certification Services Division, O=Thawte Consulting, L=Cape Town, ST=Western Cape, C=ZA

            18:34:35,582 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  EMAILADDRESS=personal-basic@thawte.com, CN=Thawte Personal Basic CA, OU=Certification Services Division, O=Thawte Consulting, L=Cape Town, ST=Western Cape, C=ZA

            18:34:35,583 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x0

            18:34:35,584 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Jan 01 04:00:00 GST 1996 until Fri Jan 01 03:59:59 GST 2021

            18:34:35,587 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,587 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,588 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: OU=FNMT Clase 2 CA, O=FNMT, C=ES

            18:34:35,591 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  OU=FNMT Clase 2 CA, O=FNMT, C=ES

            18:34:35,592 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x36f11b19

            18:34:35,593 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Mar 18 18:56:19 GST 1999 until Mon Mar 18 19:26:19 GST 2019

            18:34:35,593 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,594 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,594 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=VeriSign Class 3 Public Primary Certification Authority - G5, OU="(c) 2006 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Network, O="VeriSign, Inc.", C=US

            18:34:35,596 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=VeriSign Class 3 Public Primary Certification Authority - G5, OU="(c) 2006 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Network, O="VeriSign, Inc.", C=US

            18:34:35,600 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x18dad19e267de8bb4a2158cdcc6b3b4a

            18:34:35,600 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed Nov 08 04:00:00 GST 2006 until Thu Jul 17 03:59:59 GST 2036

            18:34:35,601 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,601 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,602 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=GeoTrust Global CA, O=GeoTrust Inc., C=US

            18:34:35,602 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=GeoTrust Global CA, O=GeoTrust Inc., C=US

            18:34:35,603 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x23456

            18:34:35,603 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Tue May 21 08:00:00 GST 2002 until Sat May 21 08:00:00 GST 2022

            18:34:35,604 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,604 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,605 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Admin-Root-CA, OU=Certification Authorities, OU=Services, O=admin, C=ch

            18:34:35,606 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Admin-Root-CA, OU=Certification Authorities, OU=Services, O=admin, C=ch

            18:34:35,606 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x3bf381d0

            18:34:35,607 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Nov 15 12:51:07 GST 2001 until Wed Nov 10 11:51:07 GST 2021

            18:34:35,607 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,608 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,609 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: EMAILADDRESS=info@a-cert.at, CN=A-CERT ADVANCED, OU=A-CERT Certification Service, O=ARGE DATEN - Austrian Society for Data Protection, L=Vienna, ST=Austria, C=AT

            18:34:35,610 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  EMAILADDRESS=info@a-cert.at, CN=A-CERT ADVANCED, OU=A-CERT Certification Service, O=ARGE DATEN - Austrian Society for Data Protection, L=Vienna, ST=Austria, C=AT

            18:34:35,611 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x0

            18:34:35,612 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Sat Oct 23 18:14:14 GST 2004 until Sun Oct 23 18:14:14 GST 2011

            18:34:35,612 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,613 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,613 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Sonera Class1 CA, O=Sonera, C=FI

            18:34:35,613 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Sonera Class1 CA, O=Sonera, C=FI

            18:34:35,614 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x24

            18:34:35,615 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Apr 06 14:49:13 GST 2001 until Tue Apr 06 14:49:13 GST 2021

            18:34:35,615 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,616 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,616 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: OU=Class 1 Public Primary Certification Authority, O="VeriSign, Inc.", C=US

            18:34:35,617 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  OU=Class 1 Public Primary Certification Authority, O="VeriSign, Inc.", C=US

            18:34:35,623 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0xcdba7f56f0dfe4bc54fe22acb372aa55

            18:34:35,624 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Jan 29 04:00:00 GST 1996 until Wed Aug 02 03:59:59 GST 2028

            18:34:35,625 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,625 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,626 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: OU=Go Daddy Class 2 Certification Authority, O="The Go Daddy Group, Inc.", C=US

            18:34:35,626 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  OU=Go Daddy Class 2 Certification Authority, O="The Go Daddy Group, Inc.", C=US

            18:34:35,627 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x0

            18:34:35,628 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Tue Jun 29 21:06:20 GST 2004 until Thu Jun 29 21:06:20 GST 2034

            18:34:35,628 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,629 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,629 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=UTN-USERFirst-Hardware, OU=http://www.usertrust.com, O=The USERTRUST Network, L=Salt Lake City, ST=UT, C=US

            18:34:35,631 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=UTN-USERFirst-Hardware, OU=http://www.usertrust.com, O=The USERTRUST Network, L=Salt Lake City, ST=UT, C=US

            18:34:35,632 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x44be0c8b500024b411d3362afe650afd

            18:34:35,633 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Jul 09 22:10:42 GST 1999 until Tue Jul 09 22:19:22 GST 2019

            18:34:35,639 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,640 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,642 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=UTN-USERFirst-Client Authentication and Email, OU=http://www.usertrust.com, O=The USERTRUST Network, L=Salt Lake City, ST=UT, C=US

            18:34:35,644 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=UTN-USERFirst-Client Authentication and Email, OU=http://www.usertrust.com, O=The USERTRUST Network, L=Salt Lake City, ST=UT, C=US

            18:34:35,645 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x44be0c8b500024b411d336252567c989

            18:34:35,646 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Jul 09 21:28:50 GST 1999 until Tue Jul 09 21:36:58 GST 2019

            18:34:35,646 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,653 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,654 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=KISA RootCA 3, OU=Korea Certification Authority Central, O=KISA, C=KR

            18:34:35,655 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=KISA RootCA 3, OU=Korea Certification Authority Central, O=KISA, C=KR

            18:34:35,658 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x2

            18:34:35,659 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Nov 19 10:39:51 GST 2004 until Wed Nov 19 10:39:51 GST 2014

            18:34:35,659 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,660 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,660 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=GeoTrust Primary Certification Authority, O=GeoTrust Inc., C=US

            18:34:35,661 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=GeoTrust Primary Certification Authority, O=GeoTrust Inc., C=US

            18:34:35,662 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x18acb56afd69b6153a636cafdafac4a1

            18:34:35,663 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Nov 27 04:00:00 GST 2006 until Thu Jul 17 03:59:59 GST 2036

            18:34:35,665 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,665 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,666 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=CA Disig, O=Disig a.s., L=Bratislava, C=SK

            18:34:35,666 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=CA Disig, O=Disig a.s., L=Bratislava, C=SK

            18:34:35,667 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1

            18:34:35,667 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed Mar 22 05:39:34 GST 2006 until Tue Mar 22 05:39:34 GST 2016

            18:34:35,668 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,668 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,669 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Swisscom Root CA 1, OU=Digital Certificate Services, O=Swisscom, C=ch

            18:34:35,669 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Swisscom Root CA 1, OU=Digital Certificate Services, O=Swisscom, C=ch

            18:34:35,670 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x5c0b855c0be75941df57cc3f7f9da836

            18:34:35,671 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Aug 18 16:06:20 GST 2005 until Tue Aug 19 02:06:20 GST 2025

            18:34:35,671 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,672 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,672 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: OU=Security Communication RootCA2, O="SECOM Trust Systems CO.,LTD.", C=JP

            18:34:35,673 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  OU=Security Communication RootCA2, O="SECOM Trust Systems CO.,LTD.", C=JP

            18:34:35,673 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x0

            18:34:35,674 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri May 29 09:00:39 GST 2009 until Tue May 29 09:00:39 GST 2029

            18:34:35,675 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,675 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,675 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=America Online Root Certification Authority 1, O=America Online Inc., C=US

            18:34:35,676 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=America Online Root Certification Authority 1, O=America Online Inc., C=US

            18:34:35,677 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1

            18:34:35,677 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Tue May 28 10:00:00 GST 2002 until Fri Nov 20 00:43:00 GST 2037

            18:34:35,678 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,678 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,679 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=WellsSecure Public Root Certificate Authority, OU=Wells Fargo Bank NA, O=Wells Fargo WellsSecure, C=US

            18:34:35,679 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=WellsSecure Public Root Certificate Authority, OU=Wells Fargo Bank NA, O=Wells Fargo WellsSecure, C=US

            18:34:35,680 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1

            18:34:35,681 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Dec 13 21:07:54 GST 2007 until Wed Dec 14 04:07:54 GST 2022

            18:34:35,681 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,682 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,682 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=DST Root CA X3, O=Digital Signature Trust Co.

            18:34:35,683 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=DST Root CA X3, O=Digital Signature Trust Co.

            18:34:35,683 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x44afb080d6a327ba893039862ef8406b

            18:34:35,685 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Sun Oct 01 01:12:19 GST 2000 until Thu Sep 30 18:01:15 GST 2021

            18:34:35,685 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,686 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,686 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=UTN-USERFirst-Network Applications, OU=http://www.usertrust.com, O=The USERTRUST Network, L=Salt Lake City, ST=UT, C=US

            18:34:35,687 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=UTN-USERFirst-Network Applications, OU=http://www.usertrust.com, O=The USERTRUST Network, L=Salt Lake City, ST=UT, C=US

            18:34:35,688 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x44be0c8b500024b411d336304bc03377

            18:34:35,689 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Jul 09 22:48:39 GST 1999 until Tue Jul 09 22:57:49 GST 2019

            18:34:35,689 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,690 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,690 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: O=T?RKTRUST Bilgi ?leti?im ve Bili?im G?venli?i Hizmetleri A.?. (c) Aral?k 2007, L=Ankara, C=TR, CN=T?RKTRUST Elektronik Sertifika Hizmet Sa?lay?c?s?

            18:34:35,691 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  O=T?RKTRUST Bilgi ?leti?im ve Bili?im G?venli?i Hizmetleri A.?. (c) Aral?k 2007, L=Ankara, C=TR, CN=T?RKTRUST Elektronik Sertifika Hizmet Sa?lay?c?s?

            18:34:35,692 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1

            18:34:35,693 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Tue Dec 25 22:37:19 GST 2007 until Fri Dec 22 22:37:19 GST 2017

            18:34:35,693 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,694 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,694 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=UTN-USERFirst-Object, OU=http://www.usertrust.com, O=The USERTRUST Network, L=Salt Lake City, ST=UT, C=US

            18:34:35,695 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=UTN-USERFirst-Object, OU=http://www.usertrust.com, O=The USERTRUST Network, L=Salt Lake City, ST=UT, C=US

            18:34:35,696 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x44be0c8b500024b411d3362de0b35f1b

            18:34:35,697 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Jul 09 22:31:20 GST 1999 until Tue Jul 09 22:40:36 GST 2019

            18:34:35,697 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,698 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,698 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=UTN - DATACorp SGC, OU=http://www.usertrust.com, O=The USERTRUST Network, L=Salt Lake City, ST=UT, C=US

            18:34:35,700 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=UTN - DATACorp SGC, OU=http://www.usertrust.com, O=The USERTRUST Network, L=Salt Lake City, ST=UT, C=US

            18:34:35,701 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x44be0c8b500021b411d32a6806a9ad69

            18:34:35,701 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Jun 24 22:57:21 GST 1999 until Mon Jun 24 23:06:30 GST 2019

            18:34:35,702 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,706 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,706 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Common Policy, OU=FBCA, O=U.S. Government, C=us

            18:34:35,707 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Common Policy, OU=FBCA, O=U.S. Government, C=us

            18:34:35,708 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x293647aae38aac864a2356f2cab761af

            18:34:35,709 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Oct 15 19:58:00 GST 2007 until Fri Oct 15 20:08:00 GST 2027

            18:34:35,710 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,711 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,711 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=TC TrustCenter Class 3 CA II, OU=TC TrustCenter Class 3 CA, O=TC TrustCenter GmbH, C=DE

            18:34:35,712 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=TC TrustCenter Class 3 CA II, OU=TC TrustCenter Class 3 CA, O=TC TrustCenter GmbH, C=DE

            18:34:35,713 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x4a4700010002e5a05dd63f0051bf

            18:34:35,714 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Jan 12 18:41:57 GST 2006 until Thu Jan 01 02:59:59 GST 2026

            18:34:35,715 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,715 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,716 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=VeriSign Class 4 Public Primary Certification Authority - G3, OU="(c) 1999 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Network, O="VeriSign, Inc.", C=US

            18:34:35,719 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=VeriSign Class 4 Public Primary Certification Authority - G3, OU="(c) 1999 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Network, O="VeriSign, Inc.", C=US

            18:34:35,721 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0xeca0a78b6e756a01cfc47ccc2f945ed7

            18:34:35,723 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Oct 01 04:00:00 GST 1999 until Thu Jul 17 03:59:59 GST 2036

            18:34:35,724 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,724 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,725 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=StartCom Certification Authority, OU=Secure Digital Certificate Signing, O=StartCom Ltd., C=IL

            18:34:35,726 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=StartCom Certification Authority, OU=Secure Digital Certificate Signing, O=StartCom Ltd., C=IL

            18:34:35,727 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x2d

            18:34:35,728 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Sun Sep 17 23:46:37 GST 2006 until Wed Sep 17 23:46:36 GST 2036

            18:34:35,728 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,729 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,729 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=SwissSign Platinum CA - G2, O=SwissSign AG, C=CH

            18:34:35,730 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=SwissSign Platinum CA - G2, O=SwissSign AG, C=CH

            18:34:35,731 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x4eb200670c035d4f

            18:34:35,731 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed Oct 25 12:36:00 GST 2006 until Sat Oct 25 12:36:00 GST 2036

            18:34:35,732 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,736 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,736 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=GlobalSign Root CA, OU=Root CA, O=GlobalSign nv-sa, C=BE

            18:34:35,740 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=GlobalSign Root CA, OU=Root CA, O=GlobalSign nv-sa, C=BE

            18:34:35,741 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x20000000000d678b79405

            18:34:35,742 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Tue Sep 01 16:00:00 GST 1998 until Tue Jan 28 16:00:00 GST 2014

            18:34:35,742 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,745 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,745 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=DoD Root CA 2, OU=PKI, OU=DoD, O=U.S. Government, C=US

            18:34:35,746 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=DoD Root CA 2, OU=PKI, OU=DoD, O=U.S. Government, C=US

            18:34:35,747 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x5

            18:34:35,748 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Dec 13 19:00:10 GST 2004 until Wed Dec 05 19:00:10 GST 2029

            18:34:35,749 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,749 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,749 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=AddTrust Public CA Root, OU=AddTrust TTP Network, O=AddTrust AB, C=SE

            18:34:35,750 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=AddTrust Public CA Root, OU=AddTrust TTP Network, O=AddTrust AB, C=SE

            18:34:35,751 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1

            18:34:35,752 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Tue May 30 14:41:50 GST 2000 until Sat May 30 14:41:50 GST 2020

            18:34:35,753 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,753 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,753 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: EMAILADDRESS=info@valicert.com, CN=http://www.valicert.com/, OU=ValiCert Class 1 Policy Validation Authority, O="ValiCert, Inc.", L=ValiCert Validation Network

            18:34:35,754 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  EMAILADDRESS=info@valicert.com, CN=http://www.valicert.com/, OU=ValiCert Class 1 Policy Validation Authority, O="ValiCert, Inc.", L=ValiCert Validation Network

            18:34:35,756 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1

            18:34:35,756 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Sat Jun 26 02:23:48 GST 1999 until Wed Jun 26 02:23:48 GST 2019

            18:34:35,757 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,757 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,757 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=thawte Primary Root CA, OU="(c) 2006 thawte, Inc. - For authorized use only", OU=Certification Services Division, O="thawte, Inc.", C=US

            18:34:35,758 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=thawte Primary Root CA, OU="(c) 2006 thawte, Inc. - For authorized use only", OU=Certification Services Division, O="thawte, Inc.", C=US

            18:34:35,759 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x344ed55720d5edec49f42fce37db2b6d

            18:34:35,760 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Nov 17 04:00:00 GST 2006 until Thu Jul 17 03:59:59 GST 2036

            18:34:35,761 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,761 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,762 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=DST ACES CA X6, OU=DST ACES, O=Digital Signature Trust, C=US

            18:34:35,762 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=DST ACES CA X6, OU=DST ACES, O=Digital Signature Trust, C=US

            18:34:35,763 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0xd5e990ad69db778ecd807563b8615d9

            18:34:35,764 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Nov 21 01:19:58 GST 2003 until Tue Nov 21 01:19:58 GST 2017

            18:34:35,764 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,764 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,765 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Entrust Root Certification Authority, OU="(c) 2006 Entrust, Inc.", OU=www.entrust.net/CPS is incorporated by reference, O="Entrust, Inc.", C=US

            18:34:35,767 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Entrust Root Certification Authority, OU="(c) 2006 Entrust, Inc.", OU=www.entrust.net/CPS is incorporated by reference, O="Entrust, Inc.", C=US

            18:34:35,768 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x456b5054

            18:34:35,768 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Tue Nov 28 00:23:42 GST 2006 until Sat Nov 28 00:53:42 GST 2026

            18:34:35,769 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,769 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,770 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Federal Common Policy CA, OU=FPKI, O=U.S. Government, C=US

            18:34:35,770 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Federal Common Policy CA, OU=FPKI, O=U.S. Government, C=US

            18:34:35,771 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x130

            18:34:35,772 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed Dec 01 20:45:27 GST 2010 until Sun Dec 01 20:45:27 GST 2030

            18:34:35,772 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,773 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,773 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: OU=ApplicationCA, O=Japanese Government, C=JP

            18:34:35,774 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  OU=ApplicationCA, O=Japanese Government, C=JP

            18:34:35,774 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x31

            18:34:35,775 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed Dec 12 19:00:00 GST 2007 until Tue Dec 12 19:00:00 GST 2017

            18:34:35,775 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,776 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,776 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=America Online Root Certification Authority 2, O=America Online Inc., C=US

            18:34:35,777 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=America Online Root Certification Authority 2, O=America Online Inc., C=US

            18:34:35,778 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1

            18:34:35,778 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Tue May 28 10:00:00 GST 2002 until Tue Sep 29 18:08:00 GST 2037

            18:34:35,779 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,779 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,780 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=SwissSign Silver CA - G2, O=SwissSign AG, C=CH

            18:34:35,780 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=SwissSign Silver CA - G2, O=SwissSign AG, C=CH

            18:34:35,781 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x4f1bd42f54bb2f4b

            18:34:35,782 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed Oct 25 12:32:46 GST 2006 until Sat Oct 25 12:32:46 GST 2036

            18:34:35,782 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,783 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,783 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: OU=Security Communication EV RootCA1, O="SECOM Trust Systems CO.,LTD.", C=JP

            18:34:35,784 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  OU=Security Communication EV RootCA1, O="SECOM Trust Systems CO.,LTD.", C=JP

            18:34:35,789 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x0

            18:34:35,790 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed Jun 06 06:12:32 GST 2007 until Sat Jun 06 06:12:32 GST 2037

            18:34:35,791 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,791 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,792 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=SwissSign Gold CA - G2, O=SwissSign AG, C=CH

            18:34:35,792 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=SwissSign Gold CA - G2, O=SwissSign AG, C=CH

            18:34:35,793 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0xbb401c43f55e4fb0

            18:34:35,794 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed Oct 25 12:30:35 GST 2006 until Sat Oct 25 12:30:35 GST 2036

            18:34:35,794 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,795 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,795 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=TDC OCES CA, O=TDC, C=DK

            18:34:35,796 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=TDC OCES CA, O=TDC, C=DK

            18:34:35,796 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x3e48bdc4

            18:34:35,797 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Tue Feb 11 12:39:30 GST 2003 until Wed Feb 11 13:09:30 GST 2037

            18:34:35,798 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,803 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,803 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Global Chambersign Root, OU=http://www.chambersign.org, O=AC Camerfirma SA CIF A82743287, C=EU

            18:34:35,804 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Global Chambersign Root, OU=http://www.chambersign.org, O=AC Camerfirma SA CIF A82743287, C=EU

            18:34:35,806 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x0

            18:34:35,807 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Tue Sep 30 20:14:18 GST 2003 until Wed Sep 30 20:14:18 GST 2037

            18:34:35,807 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,808 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,808 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=GTE CyberTrust Global Root, OU="GTE CyberTrust Solutions, Inc.", O=GTE Corporation, C=US

            18:34:35,809 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=GTE CyberTrust Global Root, OU="GTE CyberTrust Solutions, Inc.", O=GTE Corporation, C=US

            18:34:35,810 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1a5

            18:34:35,811 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Aug 13 04:29:00 GST 1998 until Tue Aug 14 03:59:00 GST 2018

            18:34:35,811 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,812 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,812 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Secure Certificate Services, O=Comodo CA Limited, L=Salford, ST=Greater Manchester, C=GB

            18:34:35,813 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Secure Certificate Services, O=Comodo CA Limited, L=Salford, ST=Greater Manchester, C=GB

            18:34:35,815 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1

            18:34:35,816 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Jan 01 04:00:00 GST 2004 until Mon Jan 01 03:59:59 GST 2029

            18:34:35,817 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,817 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,818 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=virendra, OU=titlevest, O=titlevest, L=new york, ST=NY, C=US

            18:34:35,818 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=virendra, OU=titlevest, O=titlevest, L=new york, ST=NY, C=US

            18:34:35,819 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x501ff519

            18:34:35,820 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Aug 06 20:47:21 GST 2012 until Sun Nov 04 20:47:21 GST 2012

            18:34:35,820 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,821 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,821 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: EMAILADDRESS=info@netlock.hu, CN=NetLock Minositett Kozjegyzoi (Class QA) Tanusitvanykiado, OU=Tanusitvanykiadok, O=NetLock Halozatbiztonsagi Kft., L=Budapest, C=HU

            18:34:35,822 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  EMAILADDRESS=info@netlock.hu, CN=NetLock Minositett Kozjegyzoi (Class QA) Tanusitvanykiado, OU=Tanusitvanykiadok, O=NetLock Halozatbiztonsagi Kft., L=Budapest, C=HU

            18:34:35,824 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x7b

            18:34:35,824 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Sun Mar 30 05:47:11 GST 2003 until Thu Dec 15 05:47:11 GST 2022

            18:34:35,825 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,825 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,825 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Starfield Services Root Certificate Authority - G2, O="Starfield Technologies, Inc.", L=Scottsdale, ST=Arizona, C=US

            18:34:35,827 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Starfield Services Root Certificate Authority - G2, O="Starfield Technologies, Inc.", L=Scottsdale, ST=Arizona, C=US

            18:34:35,827 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x0

            18:34:35,828 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Tue Sep 01 04:00:00 GST 2009 until Fri Jan 01 03:59:59 GST 2038

            18:34:35,829 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,829 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,829 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: OU=TDC Internet Root CA, O=TDC Internet, C=DK

            18:34:35,830 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  OU=TDC Internet Root CA, O=TDC Internet, C=DK

            18:34:35,831 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x3acca54c

            18:34:35,831 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Apr 05 20:33:17 GST 2001 until Mon Apr 05 21:03:17 GST 2021

            18:34:35,832 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,832 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,833 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: OU=Class 3 Public Primary Certification Authority, O="VeriSign, Inc.", C=US

            18:34:35,833 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  OU=Class 3 Public Primary Certification Authority, O="VeriSign, Inc.", C=US

            18:34:35,834 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x70bae41d10d92934b638ca7b03ccbabf

            18:34:35,835 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Jan 29 04:00:00 GST 1996 until Wed Aug 02 03:59:59 GST 2028

            18:34:35,835 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,836 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,836 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=AOL Time Warner Root Certification Authority 2, OU=America Online Inc., O=AOL Time Warner Inc., C=US

            18:34:35,837 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=AOL Time Warner Root Certification Authority 2, OU=America Online Inc., O=AOL Time Warner Inc., C=US

            18:34:35,838 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1

            18:34:35,838 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed May 29 10:00:00 GST 2002 until Tue Sep 29 03:43:00 GST 2037

            18:34:35,839 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,839 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,840 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=DigiCert High Assurance EV Root CA, OU=www.digicert.com, O=DigiCert Inc, C=US

            18:34:35,841 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=DigiCert High Assurance EV Root CA, OU=www.digicert.com, O=DigiCert Inc, C=US

            18:34:35,842 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x2ac5c266a0b409b8f0b79f2ae462577

            18:34:35,842 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Nov 10 04:00:00 GST 2006 until Mon Nov 10 04:00:00 GST 2031

            18:34:35,843 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,843 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,843 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Apple Root Certificate Authority, OU=Apple Computer Certificate Authority, O="Apple Computer, Inc.", C=US

            18:34:35,844 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Apple Root Certificate Authority, OU=Apple Computer Certificate Authority, O="Apple Computer, Inc.", C=US

            18:34:35,845 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1

            18:34:35,846 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Feb 10 04:18:14 GST 2005 until Mon Feb 10 04:18:14 GST 2025

            18:34:35,846 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,847 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,847 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=ECA Root CA, OU=ECA, O=U.S. Government, C=US

            18:34:35,848 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=ECA Root CA, OU=ECA, O=U.S. Government, C=US

            18:34:35,848 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0xe

            18:34:35,849 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Jun 14 14:20:09 GST 2004 until Thu Jun 14 14:20:09 GST 2040

            18:34:35,850 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,850 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,850 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=DoD CLASS 3 Root CA, OU=PKI, OU=DoD, O=U.S. Government, C=US

            18:34:35,851 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=DoD CLASS 3 Root CA, OU=PKI, OU=DoD, O=U.S. Government, C=US

            18:34:35,852 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x4

            18:34:35,852 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri May 19 17:13:00 GST 2000 until Thu May 14 17:13:00 GST 2020

            18:34:35,853 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,853 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,854 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=thawte Primary Root CA - G2, OU="(c) 2007 thawte, Inc. - For authorized use only", O="thawte, Inc.", C=US

            18:34:35,854 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=thawte Primary Root CA - G2, OU="(c) 2007 thawte, Inc. - For authorized use only", O="thawte, Inc.", C=US

            18:34:35,856 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: EC; Serial number: 0x35fc265cd9844fc93d263d579baed756

            18:34:35,856 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Nov 05 04:00:00 GST 2007 until Tue Jan 19 03:59:59 GST 2038

            18:34:35,858 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,858 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,858 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: EMAILADDRESS=server-certs@thawte.com, CN=Thawte Server CA, OU=Certification Services Division, O=Thawte Consulting cc, L=Cape Town, ST=Western Cape, C=ZA

            18:34:35,860 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  EMAILADDRESS=server-certs@thawte.com, CN=Thawte Server CA, OU=Certification Services Division, O=Thawte Consulting cc, L=Cape Town, ST=Western Cape, C=ZA

            18:34:35,862 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x34a4fff630af4ca53c331742a1946675

            18:34:35,862 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Aug 01 04:00:00 GST 1996 until Sat Jan 02 03:59:59 GST 2021

            18:34:35,863 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,863 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,864 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=KMD-CA Kvalificeret Person, OU=KMD-CA, O=KMD, C=DK

            18:34:35,865 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=KMD-CA Kvalificeret Person, OU=KMD-CA, O=KMD, C=DK

            18:34:35,866 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x3a1b0405

            18:34:35,866 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed Nov 22 03:24:59 GST 2000 until Mon Nov 23 03:24:59 GST 2015

            18:34:35,867 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,872 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,872 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Deutsche Telekom Root CA 2, OU=T-TeleSec Trust Center, O=Deutsche Telekom AG, C=DE

            18:34:35,873 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Deutsche Telekom Root CA 2, OU=T-TeleSec Trust Center, O=Deutsche Telekom AG, C=DE

            18:34:35,874 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x26

            18:34:35,876 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Jul 09 16:11:00 GST 1999 until Wed Jul 10 03:59:00 GST 2019

            18:34:35,877 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,877 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,878 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Entrust.net Secure Server Certification Authority, OU=(c) 1999 Entrust.net Limited, OU=www.entrust.net/CPS incorp. by ref. (limits liab.), O=Entrust.net, C=US

            18:34:35,880 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Entrust.net Secure Server Certification Authority, OU=(c) 1999 Entrust.net Limited, OU=www.entrust.net/CPS incorp. by ref. (limits liab.), O=Entrust.net, C=US

            18:34:35,881 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x374ad243

            18:34:35,883 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Tue May 25 20:09:40 GST 1999 until Sat May 25 20:39:40 GST 2019

            18:34:35,883 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,886 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,887 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: EMAILADDRESS=ips@mail.ips.es, CN=IPS CA CLASEA3 Certification Authority, OU=IPS CA CLASEA3 Certification Authority, O="ips@mail.ips.es C.I.F.  B-60929452", O=IPS Internet publishing Services s.l., L=Barcelona, ST=Barcelona, C=ES

            18:34:35,890 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  EMAILADDRESS=ips@mail.ips.es, CN=IPS CA CLASEA3 Certification Authority, OU=IPS CA CLASEA3 Certification Authority, O="ips@mail.ips.es C.I.F.  B-60929452", O=IPS Internet publishing Services s.l., L=Barcelona, ST=Barcelona, C=ES

            18:34:35,891 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x0

            18:34:35,892 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Dec 31 15:23:59 GST 2001 until Mon Dec 29 15:23:59 GST 2025

            18:34:35,893 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,893 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,893 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: EMAILADDRESS=ips@mail.ips.es, CN=IPS CA CLASE1 Certification Authority, OU=IPS CA CLASE1 Certification Authority, O="ips@mail.ips.es C.I.F.  B-60929452", O=IPS Internet publishing Services s.l., L=Barcelona, ST=Barcelona, C=ES

            18:34:35,895 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  EMAILADDRESS=ips@mail.ips.es, CN=IPS CA CLASE1 Certification Authority, OU=IPS CA CLASE1 Certification Authority, O="ips@mail.ips.es C.I.F.  B-60929452", O=IPS Internet publishing Services s.l., L=Barcelona, ST=Barcelona, C=ES

            18:34:35,896 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x0

            18:34:35,903 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Dec 31 15:11:03 GST 2001 until Mon Dec 29 15:11:03 GST 2025

            18:34:35,904 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,906 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,907 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=VeriSign Class 3 Public Primary Certification Authority - G3, OU="(c) 1999 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Network, O="VeriSign, Inc.", C=US

            18:34:35,908 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=VeriSign Class 3 Public Primary Certification Authority - G3, OU="(c) 1999 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Network, O="VeriSign, Inc.", C=US

            18:34:35,910 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x9b7e0649a33e62b9d5ee90487129ef57

            18:34:35,910 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Oct 01 04:00:00 GST 1999 until Thu Jul 17 03:59:59 GST 2036

            18:34:35,911 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,911 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,912 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=AddTrust Class 1 CA Root, OU=AddTrust TTP Network, O=AddTrust AB, C=SE

            18:34:35,913 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=AddTrust Class 1 CA Root, OU=AddTrust TTP Network, O=AddTrust AB, C=SE

            18:34:35,914 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1

            18:34:35,915 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Tue May 30 14:38:31 GST 2000 until Sat May 30 14:38:31 GST 2020

            18:34:35,915 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,916 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,916 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Visa eCommerce Root, OU=Visa International Service Association, O=VISA, C=US

            18:34:35,917 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Visa eCommerce Root, OU=Visa International Service Association, O=VISA, C=US

            18:34:35,918 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1386354d1d3f06f2c1f96505d5901c62

            18:34:35,918 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed Jun 26 06:18:36 GST 2002 until Fri Jun 24 04:16:12 GST 2022

            18:34:35,919 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,919 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,920 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=NetLock Expressz (Class C) Tanusitvanykiado, OU=Tanusitvanykiadok, O=NetLock Halozatbiztonsagi Kft., L=Budapest, C=HU

            18:34:35,921 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=NetLock Expressz (Class C) Tanusitvanykiado, OU=Tanusitvanykiadok, O=NetLock Halozatbiztonsagi Kft., L=Budapest, C=HU

            18:34:35,921 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x68

            18:34:35,922 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Feb 25 18:08:11 GST 1999 until Wed Feb 20 18:08:11 GST 2019

            18:34:35,923 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,923 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,923 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Network Solutions Certificate Authority, O=Network Solutions L.L.C., C=US

            18:34:35,924 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Network Solutions Certificate Authority, O=Network Solutions L.L.C., C=US

            18:34:35,925 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x57cb336fc25c16e6471617e3903168e0

            18:34:35,925 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Dec 01 04:00:00 GST 2006 until Tue Jan 01 03:59:59 GST 2030

            18:34:35,926 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,926 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,927 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Thawte Timestamping CA, OU=Thawte Certification, O=Thawte, L=Durbanville, ST=Western Cape, C=ZA

            18:34:35,927 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Thawte Timestamping CA, OU=Thawte Certification, O=Thawte, L=Durbanville, ST=Western Cape, C=ZA

            18:34:35,928 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x67c8e1e8e3be1cbdfc913b8ea6238749

            18:34:35,929 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed Jan 01 04:00:00 GST 1997 until Sat Jan 02 03:59:59 GST 2021

            18:34:35,929 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,930 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,930 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: OID.0.9.2342.19200300.100.1.3=infoca@kmd-ca.dk, CN=KMD-CA Server, OU=KMD-CA, O=KMD, C=DK

            18:34:35,931 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  OID.0.9.2342.19200300.100.1.3=infoca@kmd-ca.dk, CN=KMD-CA Server, OU=KMD-CA, O=KMD, C=DK

            18:34:35,932 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x3bcac952

            18:34:35,932 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Oct 16 23:19:21 GST 1998 until Fri Oct 12 23:19:21 GST 2018

            18:34:35,933 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,933 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,934 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=CNNIC ROOT, O=CNNIC, C=CN

            18:34:35,934 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=CNNIC ROOT, O=CNNIC, C=CN

            18:34:35,935 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x49330001

            18:34:35,935 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Apr 16 11:09:14 GST 2007 until Fri Apr 16 11:09:14 GST 2027

            18:34:35,936 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,936 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,936 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: EMAILADDRESS=Info@izenpe.com, CN=Izenpe.com, L=Avda del Mediterraneo Etorbidea 3 - 01010 Vitoria-Gasteiz, O=IZENPE S.A. - CIF A-01337260-RMerc.Vitoria-Gasteiz T1055 F62 S8, C=ES

            18:34:35,938 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  EMAILADDRESS=Info@izenpe.com, CN=Izenpe.com, L=Avda del Mediterraneo Etorbidea 3 - 01010 Vitoria-Gasteiz, O=IZENPE S.A. - CIF A-01337260-RMerc.Vitoria-Gasteiz T1055 F62 S8, C=ES

            18:34:35,939 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1

            18:34:35,939 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Jan 31 03:00:00 GST 2003 until Wed Jan 31 03:00:00 GST 2018

            18:34:35,940 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,940 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,941 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: O=T?RKTRUST Bilgi ?leti?im ve Bili?im G?venli?i Hizmetleri A.?. (c) Kas?m 2005, L=Ankara, C=TR, CN=T?RKTRUST Elektronik Sertifika Hizmet Sa?lay?c?s?

            18:34:35,942 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  O=T?RKTRUST Bilgi ?leti?im ve Bili?im G?venli?i Hizmetleri A.?. (c) Kas?m 2005, L=Ankara, C=TR, CN=T?RKTRUST Elektronik Sertifika Hizmet Sa?lay?c?s?

            18:34:35,943 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1

            18:34:35,944 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Nov 07 14:07:57 GST 2005 until Wed Sep 16 14:07:57 GST 2015

            18:34:35,944 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,945 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,945 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=VeriSign Class 2 Public Primary Certification Authority - G3, OU="(c) 1999 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Network, O="VeriSign, Inc.", C=US

            18:34:35,946 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=VeriSign Class 2 Public Primary Certification Authority - G3, OU="(c) 1999 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Network, O="VeriSign, Inc.", C=US

            18:34:35,947 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x6170cb498c5f984529e7b0a6d9505b7a

            18:34:35,948 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Oct 01 04:00:00 GST 1999 until Thu Jul 17 03:59:59 GST 2036

            18:34:35,949 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,949 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,949 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=AAA Certificate Services, O=Comodo CA Limited, L=Salford, ST=Greater Manchester, C=GB

            18:34:35,950 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=AAA Certificate Services, O=Comodo CA Limited, L=Salford, ST=Greater Manchester, C=GB

            18:34:35,951 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1

            18:34:35,952 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Jan 01 04:00:00 GST 2004 until Mon Jan 01 03:59:59 GST 2029

            18:34:35,953 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,953 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,954 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Staat der Nederlanden Root CA - G2, O=Staat der Nederlanden, C=NL

            18:34:35,955 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Staat der Nederlanden Root CA - G2, O=Staat der Nederlanden, C=NL

            18:34:35,957 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x98968c

            18:34:35,958 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed Mar 26 15:18:17 GST 2008 until Wed Mar 25 15:03:10 GST 2020

            18:34:35,958 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,958 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,959 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Certigna, O=Dhimyotis, C=FR

            18:34:35,960 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Certigna, O=Dhimyotis, C=FR

            18:34:35,960 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0xfedce3010fc948ff

            18:34:35,961 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Jun 29 19:13:05 GST 2007 until Tue Jun 29 19:13:05 GST 2027

            18:34:35,961 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,962 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,962 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: OU=VeriSign Trust Network, OU="(c) 1998 VeriSign, Inc. - For authorized use only", OU=Class 3 Public Primary Certification Authority - G2, O="VeriSign, Inc.", C=US

            18:34:35,963 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  OU=VeriSign Trust Network, OU="(c) 1998 VeriSign, Inc. - For authorized use only", OU=Class 3 Public Primary Certification Authority - G2, O="VeriSign, Inc.", C=US

            18:34:35,965 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x7dd9fe07cfa81eb7107967fba78934c6

            18:34:35,966 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon May 18 04:00:00 GST 1998 until Wed Aug 02 03:59:59 GST 2028

            18:34:35,967 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,967 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,967 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=VAS Latvijas Pasts SSI(RCA), OU=Sertifikacijas pakalpojumi, O=VAS Latvijas Pasts - Vien.reg.Nr.40003052790, C=LV

            18:34:35,968 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=VAS Latvijas Pasts SSI(RCA), OU=Sertifikacijas pakalpojumi, O=VAS Latvijas Pasts - Vien.reg.Nr.40003052790, C=LV

            18:34:35,969 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x630686a7c53765a54390a86a58ccd432

            18:34:35,970 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed Sep 13 13:22:10 GST 2006 until Fri Sep 13 13:27:57 GST 2024

            18:34:35,974 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,976 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,976 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=UCA Global Root, O=UniTrust, C=CN

            18:34:35,977 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=UCA Global Root, O=UniTrust, C=CN

            18:34:35,978 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x8

            18:34:35,978 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Tue Jan 01 04:00:00 GST 2008 until Thu Dec 31 04:00:00 GST 2037

            18:34:35,979 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,979 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,979 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: OU=Equifax Secure eBusiness CA-2, O=Equifax Secure, C=US

            18:34:35,980 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  OU=Equifax Secure eBusiness CA-2, O=Equifax Secure, C=US

            18:34:35,981 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x3770cfb5

            18:34:35,981 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed Jun 23 16:14:45 GST 1999 until Sun Jun 23 16:14:45 GST 2019

            18:34:35,982 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,982 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,982 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=SecureTrust CA, O=SecureTrust Corporation, C=US

            18:34:35,983 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=SecureTrust CA, O=SecureTrust Corporation, C=US

            18:34:35,984 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0xcf08e5c0816a5ad427ff0eb271859d0

            18:34:35,984 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Tue Nov 07 23:31:18 GST 2006 until Mon Dec 31 23:40:55 GST 2029

            18:34:35,985 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,985 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,986 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=TWCA Root Certification Authority, OU=Root CA, O=TAIWAN-CA, C=TW

            18:34:35,986 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=TWCA Root Certification Authority, OU=Root CA, O=TAIWAN-CA, C=TW

            18:34:35,987 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1

            18:34:35,987 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Aug 28 11:24:33 GST 2008 until Tue Dec 31 19:59:59 GST 2030

            18:34:35,988 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,988 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,989 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: OU=VeriSign Trust Network, OU="(c) 1998 VeriSign, Inc. - For authorized use only", OU=Class 4 Public Primary Certification Authority - G2, O="VeriSign, Inc.", C=US

            18:34:35,990 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  OU=VeriSign Trust Network, OU="(c) 1998 VeriSign, Inc. - For authorized use only", OU=Class 4 Public Primary Certification Authority - G2, O="VeriSign, Inc.", C=US

            18:34:35,991 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x32888e9ad2f5eb1347f87fc4203725f8

            18:34:35,992 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon May 18 04:00:00 GST 1998 until Wed Aug 02 03:59:59 GST 2028

            18:34:35,993 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,993 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,994 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=OISTE WISeKey Global Root GA CA, OU=OISTE Foundation Endorsed, OU=Copyright (c) 2005, O=WISeKey, C=CH

            18:34:35,994 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=OISTE WISeKey Global Root GA CA, OU=OISTE Foundation Endorsed, OU=Copyright (c) 2005, O=WISeKey, C=CH

            18:34:35,995 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x413d72c7f46b1f81437df1d22854df9a

            18:34:35,996 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Sun Dec 11 20:03:44 GST 2005 until Fri Dec 11 20:09:51 GST 2037

            18:34:35,997 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:35,997 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:35,997 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Go Daddy Root Certificate Authority - G2, O="GoDaddy.com, Inc.", L=Scottsdale, ST=Arizona, C=US

            18:34:35,998 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Go Daddy Root Certificate Authority - G2, O="GoDaddy.com, Inc.", L=Scottsdale, ST=Arizona, C=US

            18:34:35,999 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x0

            18:34:35,999 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Tue Sep 01 04:00:00 GST 2009 until Fri Jan 01 03:59:59 GST 2038

            18:34:36,000 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:36,000 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:36,001 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Staat der Nederlanden Root CA, O=Staat der Nederlanden, C=NL

            18:34:36,002 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Staat der Nederlanden Root CA, O=Staat der Nederlanden, C=NL

            18:34:36,006 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x98968a

            18:34:36,010 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Tue Dec 17 13:23:49 GST 2002 until Wed Dec 16 13:15:38 GST 2015

            18:34:36,011 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:36,011 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:36,015 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Autoridad de Certificacion Firmaprofesional CIF A62634068, C=ES

            18:34:36,016 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Autoridad de Certificacion Firmaprofesional CIF A62634068, C=ES

            18:34:36,017 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x53ec3beefbb2485f

            18:34:36,063 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed May 20 12:38:15 GST 2009 until Tue Dec 31 12:38:15 GST 2030

            18:34:36,064 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:36,064 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:36,064 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: EMAILADDRESS=virendra.patidar@titlevest.com, CN=Virendra, OU=TV, O=TV, L=NY, ST=NY, C=US

            18:34:36,065 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  EMAILADDRESS=virendra.patidar@titlevest.com, CN=Virendra, OU=TV, O=TV, L=NY, ST=NY, C=US

            18:34:36,066 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0xf1dfd0c25156ea58

            18:34:36,066 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Aug 06 22:32:28 GST 2012 until Tue Aug 06 22:32:28 GST 2013

            18:34:36,067 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:36,067 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:36,068 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: OU=BridgeCA, OU=Prefectural Association For JPKI, O=JPKI, C=JP

            18:34:36,068 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  OU=BridgeCA, OU=Prefectural Association For JPKI, O=JPKI, C=JP

            18:34:36,069 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1

            18:34:36,069 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Sat Dec 27 09:08:15 GST 2003 until Thu Dec 26 18:59:59 GST 2013

            18:34:36,070 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:36,070 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:36,071 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: EMAILADDRESS=personal-premium@thawte.com, CN=Thawte Personal Premium CA, OU=Certification Services Division, O=Thawte Consulting, L=Cape Town, ST=Western Cape, C=ZA

            18:34:36,072 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  EMAILADDRESS=personal-premium@thawte.com, CN=Thawte Personal Premium CA, OU=Certification Services Division, O=Thawte Consulting, L=Cape Town, ST=Western Cape, C=ZA

            18:34:36,073 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x0

            18:34:36,073 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Jan 01 04:00:00 GST 1996 until Fri Jan 01 03:59:59 GST 2021

            18:34:36,074 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:36,074 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:36,075 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: EMAILADDRESS=ips@mail.ips.es, CN=IPS CA Chained CAs Certification Authority, OU=IPS CA Chained CAs Certification Authority, O="ips@mail.ips.es C.I.F.  B-60929452", O=IPS Internet publishing Services s.l., L=Barcelona, ST=Barcelona, C=ES

            18:34:36,076 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  EMAILADDRESS=ips@mail.ips.es, CN=IPS CA Chained CAs Certification Authority, OU=IPS CA Chained CAs Certification Authority, O="ips@mail.ips.es C.I.F.  B-60929452", O=IPS Internet publishing Services s.l., L=Barcelona, ST=Barcelona, C=ES

            18:34:36,078 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x0

            18:34:36,078 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Dec 31 15:14:54 GST 2001 until Mon Dec 29 15:14:54 GST 2025

            18:34:36,079 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:36,079 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:36,079 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=TC TrustCenter Universal CA II, OU=TC TrustCenter Universal CA, O=TC TrustCenter GmbH, C=DE

            18:34:36,080 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=TC TrustCenter Universal CA II, OU=TC TrustCenter Universal CA, O=TC TrustCenter GmbH, C=DE

            18:34:36,081 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x193300010002281a9a04bcf25545

            18:34:36,082 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed Mar 22 19:58:34 GST 2006 until Wed Jan 01 02:59:59 GST 2031

            18:34:36,083 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:36,083 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:36,083 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Belgium Root CA, C=BE

            18:34:36,084 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Belgium Root CA, C=BE

            18:34:36,084 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x580b056c5324dbb25057185ff9e5a650

            18:34:36,085 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Jan 27 03:00:00 GST 2003 until Mon Jan 27 03:00:00 GST 2014

            18:34:36,085 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:36,086 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:36,086 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: OU=Class 3 Public Primary Certification Authority, O="VeriSign, Inc.", C=US

            18:34:36,087 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  OU=Class 3 Public Primary Certification Authority, O="VeriSign, Inc.", C=US

            18:34:36,088 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x3c9131cb1ff6d01b0e9ab8d044bf12be

            18:34:36,088 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Jan 29 04:00:00 GST 1996 until Thu Aug 03 03:59:59 GST 2028

            18:34:36,089 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:36,089 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:36,090 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Certum Trusted Network CA, OU=Certum Certification Authority, O=Unizeto Technologies S.A., C=PL

            18:34:36,091 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Certum Trusted Network CA, OU=Certum Certification Authority, O=Unizeto Technologies S.A., C=PL

            18:34:36,098 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x444c0

            18:34:36,099 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed Oct 22 16:07:37 GST 2008 until Mon Dec 31 16:07:37 GST 2029

            18:34:36,099 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:36,100 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:36,100 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: OU=Security Communication RootCA1, O=SECOM Trust.net, C=JP

            18:34:36,101 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  OU=Security Communication RootCA1, O=SECOM Trust.net, C=JP

            18:34:36,101 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x0

            18:34:36,102 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Tue Sep 30 08:20:49 GST 2003 until Sat Sep 30 08:20:49 GST 2023

            18:34:36,102 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:36,103 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:36,107 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=AffirmTrust Premium, O=AffirmTrust, C=US

            18:34:36,109 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=AffirmTrust Premium, O=AffirmTrust, C=US

            18:34:36,110 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x6d8c1446b1a60aee

            18:34:36,111 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Jan 29 18:10:36 GST 2010 until Mon Dec 31 18:10:36 GST 2040

            18:34:36,111 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:36,112 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:36,112 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: OU=MPHPT Certification Authority, OU=MPHPT, O=Japanese Government, C=JP

            18:34:36,113 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  OU=MPHPT Certification Authority, OU=MPHPT, O=Japanese Government, C=JP

            18:34:36,113 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x0

            18:34:36,114 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Mar 14 11:50:26 GST 2002 until Tue Mar 13 18:59:59 GST 2012

            18:34:36,115 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:36,115 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:36,115 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: C=TR, O=EBG Bili?im Teknolojileri ve Hizmetleri A.?., CN=EBG Elektronik Sertifika Hizmet Sa?lay?c?s?

            18:34:36,116 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  C=TR, O=EBG Bili?im Teknolojileri ve Hizmetleri A.?., CN=EBG Elektronik Sertifika Hizmet Sa?lay?c?s?

            18:34:36,117 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x4caf73421c8e7402

            18:34:36,117 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Aug 17 04:21:09 GST 2006 until Sun Aug 14 04:31:09 GST 2016

            18:34:36,118 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:36,118 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:36,119 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: OU=Application CA G2, O=LGPKI, C=JP

            18:34:36,119 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  OU=Application CA G2, O=LGPKI, C=JP

            18:34:36,120 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x31

            18:34:36,120 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Mar 31 19:00:00 GST 2006 until Thu Mar 31 18:59:59 GST 2016

            18:34:36,121 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:36,121 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:36,121 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=GlobalSign, O=GlobalSign, OU=GlobalSign Root CA - R3

            18:34:36,122 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=GlobalSign, O=GlobalSign, OU=GlobalSign Root CA - R3

            18:34:36,123 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x4000000000121585308a2

            18:34:36,123 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed Mar 18 14:00:00 GST 2009 until Sun Mar 18 14:00:00 GST 2029

            18:34:36,124 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:36,124 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:36,125 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=AffirmTrust Networking, O=AffirmTrust, C=US

            18:34:36,125 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=AffirmTrust Networking, O=AffirmTrust, C=US

            18:34:36,126 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x7c4f04391cd4992d

            18:34:36,126 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Jan 29 18:08:24 GST 2010 until Tue Dec 31 18:08:24 GST 2030

            18:34:36,127 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:36,127 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:36,128 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=VeriSign Class 1 Public Primary Certification Authority - G3, OU="(c) 1999 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Network, O="VeriSign, Inc.", C=US

            18:34:36,129 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=VeriSign Class 1 Public Primary Certification Authority - G3, OU="(c) 1999 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Network, O="VeriSign, Inc.", C=US

            18:34:36,130 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x8b5b75568454850b00cfaf3848ceb1a4

            18:34:36,130 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Oct 01 04:00:00 GST 1999 until Thu Jul 17 03:59:59 GST 2036

            18:34:36,131 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:36,131 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:36,132 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=AC Ra?z Certic?mara S.A., O=Sociedad Cameral de Certificaci?n Digital - Certic?mara S.A., C=CO

            18:34:36,133 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=AC Ra?z Certic?mara S.A., O=Sociedad Cameral de Certificaci?n Digital - Certic?mara S.A., C=CO

            18:34:36,133 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x77e52937be015e357f0698ccbec0c

            18:34:36,134 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Tue Nov 28 00:46:29 GST 2006 until Wed Apr 03 01:42:02 GST 2030

            18:34:36,135 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:36,135 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:36,135 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: EMAILADDRESS=ips@mail.ips.es, CN=IPS CA CLASEA1 Certification Authority, OU=IPS CA CLASEA1 Certification Authority, O="ips@mail.ips.es C.I.F.  B-60929452", O=IPS Internet publishing Services s.l., L=Barcelona, ST=Barcelona, C=ES

            18:34:36,137 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  EMAILADDRESS=ips@mail.ips.es, CN=IPS CA CLASEA1 Certification Authority, OU=IPS CA CLASEA1 Certification Authority, O="ips@mail.ips.es C.I.F.  B-60929452", O=IPS Internet publishing Services s.l., L=Barcelona, ST=Barcelona, C=ES

            18:34:36,138 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x0

            18:34:36,139 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Mon Dec 31 15:21:41 GST 2001 until Mon Dec 29 15:21:41 GST 2025

            18:34:36,139 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:36,140 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:36,140 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Entrust.net Certification Authority (2048), OU=(c) 1999 Entrust.net Limited, OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.), O=Entrust.net

            18:34:36,141 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Entrust.net Certification Authority (2048), OU=(c) 1999 Entrust.net Limited, OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.), O=Entrust.net

            18:34:36,142 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x3863b966

            18:34:36,143 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Dec 24 21:50:51 GST 1999 until Tue Dec 24 22:20:51 GST 2019

            18:34:36,143 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:36,143 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:36,144 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Starfield Root Certificate Authority - G2, O="Starfield Technologies, Inc.", L=Scottsdale, ST=Arizona, C=US

            18:34:36,145 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Starfield Root Certificate Authority - G2, O="Starfield Technologies, Inc.", L=Scottsdale, ST=Arizona, C=US

            18:34:36,146 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x0

            18:34:36,147 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Tue Sep 01 04:00:00 GST 2009 until Fri Jan 01 03:59:59 GST 2038

            18:34:36,148 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:36,149 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:36,149 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=Sonera Class2 CA, O=Sonera, C=FI

            18:34:36,150 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=Sonera Class2 CA, O=Sonera, C=FI

            18:34:36,150 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x1d

            18:34:36,151 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Fri Apr 06 11:29:40 GST 2001 until Tue Apr 06 11:29:40 GST 2021

            18:34:36,151 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:36,152 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:36,152 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=TC TrustCenter Class 2 CA II, OU=TC TrustCenter Class 2 CA, O=TC TrustCenter GmbH, C=DE

            18:34:36,153 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=TC TrustCenter Class 2 CA II, OU=TC TrustCenter Class 2 CA, O=TC TrustCenter GmbH, C=DE

            18:34:36,156 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x2e6a000100021fd752212c115c3b

            18:34:36,157 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Thu Jan 12 18:38:43 GST 2006 until Thu Jan 01 02:59:59 GST 2026

            18:34:36,158 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:36,158 INFO  [stdout] (http--127.0.0.1-8443-2) adding as trusted cert:

            18:34:36,158 INFO  [stdout] (http--127.0.0.1-8443-2)   Subject: CN=VRK Gov. Root CA, OU=Varmennepalvelut, OU=Certification Authority Services, O=Vaestorekisterikeskus CA, ST=Finland, C=FI

            18:34:36,159 INFO  [stdout] (http--127.0.0.1-8443-2)   Issuer:  CN=VRK Gov. Root CA, OU=Varmennepalvelut, OU=Certification Authority Services, O=Vaestorekisterikeskus CA, ST=Finland, C=FI

            18:34:36,160 INFO  [stdout] (http--127.0.0.1-8443-2)   Algorithm: RSA; Serial number: 0x186a0

            18:34:36,161 INFO  [stdout] (http--127.0.0.1-8443-2)   Valid from Wed Dec 18 17:53:00 GST 2002 until Mon Dec 18 17:51:08 GST 2023

            18:34:36,161 INFO  [stdout] (http--127.0.0.1-8443-2)

            18:34:36,162 INFO  [stdout] (http--127.0.0.1-8443-2) trigger seeding of SecureRandom

            18:34:36,162 INFO  [stdout] (http--127.0.0.1-8443-2) done seeding SecureRandom

            18:34:36,380 INFO  [stdout] (http--127.0.0.1-8443-2) http--127.0.0.1-8443-2, setSoTimeout(0) called

            18:34:36,383 INFO  [stdout] (http--127.0.0.1-8443-2) Allow unsafe renegotiation: false

            18:34:36,383 INFO  [stdout] (http--127.0.0.1-8443-2) Allow legacy hello messages: true

            18:34:36,384 INFO  [stdout] (http--127.0.0.1-8443-2) Is initial handshake: true

            18:34:36,384 INFO  [stdout] (http--127.0.0.1-8443-2) Is secure renegotiation: false

            18:34:36,386 INFO  [stdout] (http--127.0.0.1-8443-2) http--127.0.0.1-8443-2, setSoTimeout(0) called

            18:34:36,411 INFO  [stdout] (http--127.0.0.1-8443-2) %% No cached client session

            18:34:36,412 INFO  [stdout] (http--127.0.0.1-8443-2) *** ClientHello, TLSv1

            18:34:36,413 INFO  [stdout] (http--127.0.0.1-8443-2) RandomCookie:  GMT: 1344975740 bytes = { 234, 166, 215, 104, 111, 130, 225, 97, 42, 65, 93, 65, 68, 67, 28, 96, 216, 121, 89, 217, 186, 38, 172, 13, 58, 7, 78, 195 }

            18:34:36,414 INFO  [stdout] (http--127.0.0.1-8443-2) Session ID:  {}

            18:34:36,415 INFO  [stdout] (http--127.0.0.1-8443-2) Cipher Suites: [SSL_RSA_WITH_RC4_128_MD5, SSL_RSA_WITH_RC4_128_SHA, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_DSS_WITH_AES_128_CBC_SHA, TLS_DHE_DSS_WITH_AES_256_CBC_SHA, SSL_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA, SSL_RSA_WITH_DES_CBC_SHA, SSL_DHE_RSA_WITH_DES_CBC_SHA, SSL_DHE_DSS_WITH_DES_CBC_SHA, SSL_RSA_EXPORT_WITH_RC4_40_MD5, SSL_RSA_EXPORT_WITH_DES40_CBC_SHA, SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA, SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA, TLS_EMPTY_RENEGOTIATION_INFO_SCSV]

            18:34:36,418 INFO  [stdout] (http--127.0.0.1-8443-2) Compression Methods:  { 0 }

            18:34:36,418 INFO  [stdout] (http--127.0.0.1-8443-2) ***

            18:34:36,460 INFO  [stdout] (http--127.0.0.1-8443-2) [write] MD5 and SHA1 hashes:  len = 81

            18:34:36,462 INFO  [stdout] (http--127.0.0.1-8443-2) 0000: 01 00 00 4D 03 01 50 2B   B3 7C EA A6 D7 68 6F 82  ...M..P+.....ho.

            18:34:36,469 INFO  [stdout] (http--127.0.0.1-8443-2) 0010: E1 61 2A 41 5D 41 44 43   1C 60 D8 79 59 D9 BA 26  .a*A]ADC.`.yY..&

            18:34:36,469 INFO  [stdout] (http--127.0.0.1-8443-2) 0020: AC 0D 3A 07 4E C3 00 00   26 00 04 00 05 00 2F 00  ..:.N...&...../.

            18:34:36,470 INFO  [stdout] (http--127.0.0.1-8443-2) 0030: 35 00 33 00 39 00 32 00   38 00 0A 00 16 00 13 00  5.3.9.2.8.......

            18:34:36,471 INFO  [stdout] (http--127.0.0.1-8443-2) 0040: 09 00 15 00 12 00 03 00   08 00 14 00 11 00 FF 01  ................

            18:34:36,472 INFO  [stdout] (http--127.0.0.1-8443-2) 0050: 00                                                 .

            18:34:36,472 INFO  [stdout] (http--127.0.0.1-8443-2) http--127.0.0.1-8443-2, WRITE: TLSv1 Handshake, length = 81

            18:34:36,479 INFO  [stdout] (http--127.0.0.1-8443-2) [write] MD5 and SHA1 hashes:  len = 110

            18:34:36,480 INFO  [stdout] (http--127.0.0.1-8443-2) 0000: 01 03 01 00 45 00 00 00   20 00 00 04 01 00 80 00  ....E... .......

            18:34:36,480 INFO  [stdout] (http--127.0.0.1-8443-2) 0010: 00 05 00 00 2F 00 00 35   00 00 33 00 00 39 00 00  ..../..5..3..9..

            18:34:36,481 INFO  [stdout] (http--127.0.0.1-8443-2) 0020: 32 00 00 38 00 00 0A 07   00 C0 00 00 16 00 00 13  2..8............

            18:34:36,482 INFO  [stdout] (http--127.0.0.1-8443-2) 0030: 00 00 09 06 00 40 00 00   15 00 00 12 00 00 03 02  .....@..........

            18:34:36,482 INFO  [stdout] (http--127.0.0.1-8443-2) 0040: 00 80 00 00 08 00 00 14   00 00 11 00 00 FF 50 2B  ..............P+

            18:34:36,483 INFO  [stdout] (http--127.0.0.1-8443-2) 0050: B3 7C EA A6 D7 68 6F 82   E1 61 2A 41 5D 41 44 43  .....ho..a*A]ADC

            18:34:36,484 INFO  [stdout] (http--127.0.0.1-8443-2) 0060: 1C 60 D8 79 59 D9 BA 26   AC 0D 3A 07 4E C3        .`.yY..&..:.N.

            18:34:36,484 INFO  [stdout] (http--127.0.0.1-8443-2) http--127.0.0.1-8443-2, WRITE: SSLv2 client hello message, length = 110

            18:34:36,485 INFO  [stdout] (http--127.0.0.1-8443-2) [Raw write]: length = 112

            18:34:36,486 INFO  [stdout] (http--127.0.0.1-8443-2) 0000: 80 6E 01 03 01 00 45 00   00 00 20 00 00 04 01 00  .n....E... .....

            18:34:36,487 INFO  [stdout] (http--127.0.0.1-8443-2) 0010: 80 00 00 05 00 00 2F 00   00 35 00 00 33 00 00 39  ....../..5..3..9

            18:34:36,488 INFO  [stdout] (http--127.0.0.1-8443-2) 0020: 00 00 32 00 00 38 00 00   0A 07 00 C0 00 00 16 00  ..2..8..........

            18:34:36,488 INFO  [stdout] (http--127.0.0.1-8443-2) 0030: 00 13 00 00 09 06 00 40   00 00 15 00 00 12 00 00  .......@........

            18:34:36,489 INFO  [stdout] (http--127.0.0.1-8443-2) 0040: 03 02 00 80 00 00 08 00   00 14 00 00 11 00 00 FF  ................

            18:34:36,490 INFO  [stdout] (http--127.0.0.1-8443-2) 0050: 50 2B B3 7C EA A6 D7 68   6F 82 E1 61 2A 41 5D 41  P+.....ho..a*A]A

            18:34:36,490 INFO  [stdout] (http--127.0.0.1-8443-2) 0060: 44 43 1C 60 D8 79 59 D9   BA 26 AC 0D 3A 07 4E C3  DC.`.yY..&..:.N.

            18:34:36,491 INFO  [stdout] (http--127.0.0.1-8443-2) http--127.0.0.1-8443-2, received EOFException: error

            18:34:36,492 INFO  [stdout] (http--127.0.0.1-8443-2) http--127.0.0.1-8443-2, handling exception: javax.net.ssl.SSLHandshakeException: Remote host closed connection during handshake

            18:34:36,493 INFO  [stdout] (http--127.0.0.1-8443-2) http--127.0.0.1-8443-2, SEND TLSv1 ALERT:  fatal, description = handshake_failure

            18:34:36,494 INFO  [stdout] (http--127.0.0.1-8443-2) http--127.0.0.1-8443-2, WRITE: TLSv1 Alert, length = 2

            18:34:36,495 INFO  [stdout] (http--127.0.0.1-8443-2) [Raw write]: length = 7

            18:34:36,495 INFO  [stdout] (http--127.0.0.1-8443-2) 0000: 15 03 01 00 02 02 28                               ......(

            18:34:36,496 INFO  [stdout] (http--127.0.0.1-8443-2) http--127.0.0.1-8443-2, called closeSocket()

            18:34:36,496 INFO  [stdout] (http--127.0.0.1-8443-2) http--127.0.0.1-8443-2, called close()

            18:34:36,497 INFO  [stdout] (http--127.0.0.1-8443-2) http--127.0.0.1-8443-2, called closeInternal(true)

            18:34:36,497 INFO  [stdout] (http--127.0.0.1-8443-2) http--127.0.0.1-8443-2, called close()

            18:34:36,498 INFO  [stdout] (http--127.0.0.1-8443-2) http--127.0.0.1-8443-2, called closeInternal(true)

            18:34:36,499 INFO  [stdout] (http--127.0.0.1-8443-2) http--127.0.0.1-8443-2, called close()

            18:34:36,499 INFO  [stdout] (http--127.0.0.1-8443-2) http--127.0.0.1-8443-2, called closeInternal(true)

            18:34:36,500 ERROR [stderr] (http--127.0.0.1-8443-2) javax.net.ssl.SSLHandshakeException: Remote host closed connection during handshake

            18:34:36,501 ERROR [stderr] (http--127.0.0.1-8443-2)           at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:849)

            18:34:36,502 ERROR [stderr] (http--127.0.0.1-8443-2)           at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1170)

            18:34:36,503 ERROR [stderr] (http--127.0.0.1-8443-2)           at com.sun.net.ssl.internal.ssl.SSLSocketImpl.writeRecord(SSLSocketImpl.java:637)

            18:34:36,503 ERROR [stderr] (http--127.0.0.1-8443-2)           at com.sun.net.ssl.internal.ssl.AppOutputStream.write(AppOutputStream.java:89)

            18:34:36,504 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.apache.http.impl.io.AbstractSessionOutputBuffer.flushBuffer(AbstractSessionOutputBuffer.java:131)

            18:34:36,505 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.apache.http.impl.io.AbstractSessionOutputBuffer.write(AbstractSessionOutputBuffer.java:151)

            18:34:36,506 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.apache.http.impl.io.ChunkedOutputStream.flushCacheWithAppend(ChunkedOutputStream.java:108)

            18:34:36,506 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.apache.http.impl.io.ChunkedOutputStream.write(ChunkedOutputStream.java:160)

            18:34:36,507 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.apache.http.impl.io.ChunkedOutputStream.write(ChunkedOutputStream.java:148)

            18:34:36,508 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.apache.http.entity.StringEntity.writeTo(StringEntity.java:121)

            18:34:36,508 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.apache.http.entity.HttpEntityWrapper.writeTo(HttpEntityWrapper.java:96)

            18:34:36,509 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.apache.http.impl.client.EntityEnclosingRequestWrapper$EntityWrapper.writeTo(EntityEnclosingRequestWrapper.java:108)

            18:34:36,510 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.apache.http.impl.entity.EntitySerializer.serialize(EntitySerializer.java:120)

            18:34:36,511 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.apache.http.impl.AbstractHttpClientConnection.sendRequestEntity(AbstractHttpClientConnection.java:264)

            18:34:36,511 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.apache.http.impl.conn.AbstractClientConnAdapter.sendRequestEntity(AbstractClientConnAdapter.java:224)

            18:34:36,512 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.apache.http.protocol.HttpRequestExecutor.doSendRequest(HttpRequestExecutor.java:255)

            18:34:36,513 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.apache.http.protocol.HttpRequestExecutor.execute(HttpRequestExecutor.java:123)

            18:34:36,514 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.apache.http.impl.client.DefaultRequestDirector.tryExecute(DefaultRequestDirector.java:647)

            18:34:36,514 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:464)

            18:34:36,515 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:820)

            18:34:36,516 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:941)

            18:34:36,516 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:919)

            18:34:36,517 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:910)

            18:34:36,522 ERROR [stderr] (http--127.0.0.1-8443-2)           at com.titlevest.realecsimulator.controller.TitleVestHttpRequest.sendXMLRequestToTitleVestServer(TitleVestHttpRequest.java:57)

            18:34:36,523 ERROR [stderr] (http--127.0.0.1-8443-2)           at com.titlevest.realecsimulator.controller.RealECController.onSubmit(RealECController.java:46)

            18:34:36,524 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.springframework.web.servlet.mvc.SimpleFormController.processFormSubmission(SimpleFormController.java:267)

            18:34:36,524 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.springframework.web.servlet.mvc.AbstractFormController.handleRequestInternal(AbstractFormController.java:265)

            18:34:36,526 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.springframework.web.servlet.mvc.AbstractController.handleRequest(AbstractController.java:153)

            18:34:36,527 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter.handle(SimpleControllerHandlerAdapter.java:48)

            18:34:36,527 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:875)

            18:34:36,528 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:807)

            18:34:36,529 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:571)

            18:34:36,530 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:511)

            18:34:36,530 ERROR [stderr] (http--127.0.0.1-8443-2)           at javax.servlet.http.HttpServlet.service(HttpServlet.java:754)

            18:34:36,531 ERROR [stderr] (http--127.0.0.1-8443-2)           at javax.servlet.http.HttpServlet.service(HttpServlet.java:847)

            18:34:36,531 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:329)

            18:34:36,532 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248)

            18:34:36,533 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275)

            18:34:36,533 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161)

            18:34:36,534 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:153)

            18:34:36,535 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:155)

            18:34:36,536 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)

            18:34:36,536 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)

            18:34:36,537 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:368)

            18:34:36,538 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:897)

            18:34:36,538 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:626)

            18:34:36,539 ERROR [stderr] (http--127.0.0.1-8443-2)           at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:2039)

            18:34:36,540 ERROR [stderr] (http--127.0.0.1-8443-2)           at java.lang.Thread.run(Thread.java:680)

            18:34:36,540 ERROR [stderr] (http--127.0.0.1-8443-2) Caused by: java.io.EOFException: SSL peer shut down incorrectly

            18:34:36,542 ERROR [stderr] (http--127.0.0.1-8443-2)           at com.sun.net.ssl.internal.ssl.InputRecord.read(InputRecord.java:333)

            18:34:36,543 ERROR [stderr] (http--127.0.0.1-8443-2)           at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:830)

            • 3. Re: HTTPS/SSL on jBOSS AS 7 Using Dummy Certificate.
              jaysensharma

              Hi,

               

                 I can see that in your case the "setSoTimeout" is sett to 0 as following  (which might be leading to Caused by: java.io.EOFException: SSL peer shut down incorrectly):

              18:34:36,380 INFO  [stdout] (http--127.0.0.1-8443-2) http--127.0.0.1-8443-2, setSoTimeout(0) called

              18:34:36,383 INFO  [stdout] (http--127.0.0.1-8443-2) Allow unsafe renegotiation: false

              18:34:36,383 INFO  [stdout] (http--127.0.0.1-8443-2) Allow legacy hello messages: true

              18:34:36,384 INFO  [stdout] (http--127.0.0.1-8443-2) Is initial handshake: true

              18:34:36,384 INFO  [stdout] (http--127.0.0.1-8443-2) Is secure renegotiation: false

              18:34:36,386 INFO  [stdout] (http--127.0.0.1-8443-2) http--127.0.0.1-8443-2, setSoTimeout(0) called

               

               

               

                In my default setting i can see that it is coming as following where 60000 is the default timeout value.:

               

                17:58:04,643 INFO  [stdout] (http-localhost/127.0.0.1:8443-1) http-localhost/127.0.0.1:8443-1, setSoTimeout(60000) called

               

               

                 Are you able to access this secured resource from the WebBrowser or some other utilities like "curl" or "wget" ?   That would be good to see if N/W issues are not falling in between.

              • 4. Re: HTTPS/SSL on jBOSS AS 7 Using Dummy Certificate.
                virendrapatidar

                Where is this timeout paramter and how to change value for this?

                I checked in standalone.xml file . No timeout value is configured as 0 in that file.