Hello ,
   this is the file with configuration .
   The keystore is ok , because I can run for example -
https://localhost:8443/system/console/bundles


<beans xmlns="http://www.springframework.org/schema/beans";
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
       xmlns:http="http://cxf.apache.org/transports/http/configuration";
      
xmlns:httpj="http://cxf.apache.org/transports/http-jetty/configuration";
       xmlns:sec="http://cxf.apache.org/configuration/security";
       xsi:schemaLocation="
        http://www.springframework.org/schema/beans                
http://www.springframework.org/schema/beans/spring-beans.xsd
        http://cxf.apache.org/transports/http/configuration        
http://cxf.apache.org/schemas/configuration/http-conf.xsd
        http://cxf.apache.org/transports/http-jetty/configuration  
http://cxf.apache.org/schemas/configuration/http-jetty.xsd
        http://cxf.apache.org/configuration/security               
http://cxf.apache.org/schemas/configuration/security.xsd";>
     
    
    
    <httpj:engine-factory bus="cxf">
  
  <httpj:engine port="444">
    <httpj:tlsServerParameters>
      <sec:keyManagers keyPassword="password">
        <sec:keyStore type="JKS"
                      password="password"
                      file="src/main/config/servicemix.jks"/>
        </sec:keyManagers>
        <sec:trustManagers>
          <sec:keyStore type="JKS"
                        password="password"
                        file="src/main/config/servicemix.jks"/>
      </sec:trustManagers>
    </httpj:tlsServerParameters>

    <httpj:threadingParameters minThreads="5"
                               maxThreads="15" />

    <httpj:sessionSupport>true</httpj:sessionSupport>
  </httpj:engine>
</httpj:engine-factory>
</beans>




--
View this message in context: 
http://cxf.547215.n5.nabble.com/cxf-rsServer-running-on-https-issues-tp5777737p5777749.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to