Wednesday, August 18, 2010

Native dll

http://www.apache.org/dist/tomcat/tomcat-connectors/native/1.1.20/binaries/


 Connector port="8443" maxHttpHeaderSize="8192"
               maxThreads="150"
               enableLookups="false" disableUploadTimeout="true"
               acceptCount="100" scheme="https" secure="true"
               SSLEnabled="true"
               SSLCertificateFile="${catalina.base}/openssl/tomcatcert.pem"
               SSLCertificateKeyFile="${catalina.base}/openssl/tomcatkey.pem"
  SSLPassword="ewgasdgfasfasdf"



SSL debug

I'd suggest using curl to troubleshoot your problems. curl is a unix tool as well as a library, and on Windows is runs well under cygwin. Try the following command:
curl -Iv https://yourhost:9091
You should see some output which looks something like this:
* About to connect() to yourhost port 9091 (#0)
*   Trying 67.207.137.114... connected* Connected to yourhost (67.207.137.114) port 9091 (#0)
* successfully set certificate verify locations:
*   CAfile: none
  CApath: /etc/ssl/certs* SSLv3, TLS handshake, Client hello (1):
* SSLv3, TLS handshake, Server hello (2):
* SSLv3, TLS handshake, CERT (11):
* SSLv3, TLS alert, Server hello (2):
* SSL certificate problem, verify that the CA cert is OK. Details:
From here you should be able to narrow down where to troubleshoot.

Window 32 bit or 64 bit

http://support.microsoft.com/kb/827218


  • Click Start, and then click Run.

  • Type sysdm.cpl, and then click OK.

  • or winmsd, and then click OK
  • Monday, August 16, 2010

    Session Pooling

    http://docs.jboss.org/hibernate/core/3.3/reference/en/html/session-configuration.html