Not sure if this is the right place to report this, but if not I'm sure someone 
will redirect me.

The example given in the CXF documentation at 
http://cxf.apache.org/docs/jetty-configuration.html contains an error.  The 
example contains the following XML fragment:

    <httpj:identifiedTLSServerParameters id="secure">
      <sec:keyManagers keyPassword="password">
        <sec:keyStore type="JKS" password="password"
                      file="certs/cherry.jks"/>
      </sec:keyManagers>
    </httpj:identifiedTLSServerParameters>

It SHOULD be:

    <httpj:identifiedTLSServerParameters id="secure">
        <httpj:tlsServerParameters>
          <sec:keyManagers keyPassword="password">
          <sec:keyStore type="JKS" password="password"
                        file="certs/cherry.jks"/>
        </sec:keyManagers>
        </httpj:tlsServerParameters>
    </httpj:identifiedTLSServerParameters>

Tried to just go in and edit it, but don't have permission to do that.

Duncan

Reply via email to