Steve, You will need to add a SSL listener to the ConfigurationElement in the META-INF/jboss-service.xml file found in the deploy/jetty-plugin.sar
Jetty specific information on setting up SSL can be found at http://jetty.mortbay.org/jetty/JsseSSL.html loading a keystore is described in http://jetty.mortbay.org/jetty/doc/SslListener.html A sample derived from the demo.xml file used by jetty is as follows: <Call name="addListener"> <Arg> <New class="org.mortbay.http.SunJsseListener"> <Set name="Port">8443</Set> <Set name="MinThreads">5</Set> <Set name="MaxThreads">255</Set> <Set name="MaxIdleTimeMs">30000</Set> <Set name="MaxReadTimeMs">10000</Set> <Set name="MaxStopTimeMs">5000</Set> <Set name="LowResourcePersistTimeMs">2000</Set> <Set name="Keystore">./keystore</Set> <Set name="Password">test</Set> <Set name="KeyPassword">testKeyPassword</Set> </New> </Arg> </Call> Brett On Thu, 4 Apr 2002, Dmitri Colebatch wrote: > Hi, > > I cant say for sure, but I would look in the jetty-service.sar (or is it now just >jetty-service.xml) in the deploy directory. That > file (as I understand it) is responsible for configuring jetty. Have a look at >that, and probably also the jetty site/lists > (http://sf.net/projects/jetty) should help. > > hth > dim > > ----- Original Message ----- > From: "Stephen Davidson" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Thursday, April 04, 2002 8:45 AM > Subject: [JBoss-user] JBoss 3.0 SSL Newbie Question > > > > Greetings. > > > > Ok, I have checked the JBoss Book (jboss.cml is the file to modify, not used in >3.0) > > Searched the web. > > Checked the jboss.org site. > > Searched the docs. > > > > I have been unable to find out how to configure SSL for JBoss 3.0 WebServer >(Jetty)? I am trying to configure for Browsers to > connect in SSL mode. > > 128bit mode minimum would be preferred. Don't need the EJBs in SSL, as they >will be behind the firewall. > > > > Help please? > > > > -Steve _______________________________________________ JBoss-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-user
