You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cxf.apache.org by tog <gu...@gmail.com> on 2007/11/29 06:42:08 UTC

cxf jetty https server

Hi,

I want to configure the jetty http server programmatically so that it
can use https.

I am currently publishing my service using:

        sf = new ServerFactoryBean();
        sf.getServiceFactory().getServiceConfigurations().add(0, new
GroovyConfiguration());
        sf.getServiceFactory().setDataBinding(new AegisDatabinding());
        sf.setServiceClass(clazz);
        sf.setAddress(url);
        sf.create();


I find out that I have to use the TLSServerParameters and initialize
it with some keystore.

How can these parameters transmitted to sf ?

-- 

Best Regards
Guillaume