I'm new to JBoss and SSL. Using jboss-3.0.3_tomcat-
4.0.5, I have created a test application packaged 
as "pc.ear". I want to use SSL to protect connections 
between a client's browser and the servlets/JSP pages of 
the application.

I followed the advice and examples given here: 
http://www.jboss.org/forums/thread.jsp?
forum=49&thread=22110&message=3750442&q=%2BJBOSS+%
2BTOMCAT+%2BSSL+%2BPROBLEMS+#3750442

Following that advice, I believe I have been able to get 
SSL working on port 8443 by creating a keystore 
(server.keystore) with a "tomcat" alias, and adding the 
following to my tomcat4-services.xml file:

<Connector 
className="org.apache.catalina.connector.http.HttpConnect
or" 
port="8443" enableLookups="true" scheme="https" 
secure="true" debug="0">
<Factory 
className="org.apache.catalina.net.SSLServerSocketFactory
" 
keystoreFile="C:\jboss\jboss-3.0.3_tomcat-4.0.5
\catalina\conf\server.keystore" keystorePass="changeit" 
clientAuth="false" protocol="TLS"/>
</Connector>

<!-- Define an AJP 1.3 Connector on port 8009 -->
<Connector className 
= "org.apache.ajp.tomcat4.Ajp13Connector" port = "8009"
minProcessors = "5" maxProcessors = "75" acceptCount 
= "10" debug = "0"/>

However, when I go to http://localhost:8443/pc, all I 
see is "" (i.e., some encrypted stuff). I'm sure I'm 
missing something very fundamental here, but I don't 
know what -- I'm a first-timer. 

Can anyone tell me what I have to do to actually get 
html/JSP/servlet output to display in the browser via 
the SSL port (8443)?

Thanks a lot for any help,

-- John


-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to