Alguém já implementou SSL no jetty?
Estou tentando mas sem sucesso. Utilizei estes 2 sites como base: http://atomic.exist-db.org/HowTo/JettySSL e http://docs.codehaus.org/display/JETTY/How+to+configure+SSL#HowtoconfigureSSL-step3
O meu xml jetty.xml está assim:
<Call name="addListener">
<Arg>
<New class="org.mortbay.http.SunJsseListener">
<Set name="Port">8443</Set>
<Set name="PoolName">P1</Set>
<Set name="MaxIdleTimeMs">30000</Set>
<Set name="lowResources">30</Set>
<Set name="LowResourcePersistTimeMs">2000</Set>
<Set name="Keystore">
<SystemProperty name="jetty.home"
default="."/>/etc/demokeystore</Set>
<Set name="Password">secret</Set>
<Set name="KeyPassword">secret</Set>
<Set name="HttpHandler">
<New class="org.mortbay.http.handler.MsieSslHandler">
<Set name="UserAgentSubString">MSIE 5</Set>
</New>
</Set>
</New>
</Arg>
</Call>
Já fiz diversas alterações e tentativas, mas sempre dá o mesmo erro no log do jetty:
org.xml.sax.SAXParseException: Element type “SystemProperty” must be followed by either attribute specifications, “>” or “/>”.