solucion - la aplicacion sufrio un error interno al cargar las bibliotecas ssl
Error 107(net:: ERR_SSL_PROTOCOL_ERROR): error de protocolo SSL (1)
Verifique su registro de errores Apache, vea si tiene un mensaje similar a:
¡Configuró HTTP (80) en el puerto HTTPS (443) estándar!
Esto puede indicar que ha configurado Apache para escuchar en el puerto 443 mientras el SSLEngine no está encendido.
En httpd.conf solo se establece UNA directiva de escucha:
Escuche *: 80
Más tarde en httpd.conf deberías tener algo que se parece a:
<IfModule ssl_module>
Include conf/httpd-ssl.conf
</IfModule>
En httpd-ssl.conf (o archivo de configuración equivalente) asegúrese de haber habilitado el SSLEngine antes de la directiva Listen:
SSLEngine on
listen *:443
Reinicia Apache y deberías estar listo para continuar.
He configurado SSL en mi tomcat. Me referí a los pasos del siguiente sitio para configurar SSL:
http://wiki.openbravo.com/wiki/How_To_Configure_SSL_For_Windows
Estoy usando Win32 OpenSSL v0.9.8x Light installer y tomcat 7.0.22. Pero cuando accedo a https://server.ensarm.com:8843/ , aparece el siguiente error:
SSL connection error
Unable to make a secure connection to the server. This may be a problem with the server, or it may be requiring a client authentication certificate that you don''t have.
Error 107 (net::ERR_SSL_PROTOCOL_ERROR): SSL protocol error.
No entiendo cuál podría ser el problema. :(