Hi,

I'm using the JAX-WS frontend to publish a simple webservice: 

        SOAPServiceImpl implementor = new SOAPServiceImpl();
        String address = "https://localhost:8080/rce";;
        endpoint = Endpoint.publish(address, implementor);

This is working quite fine. Now I wanted to configure ssl support, but the 
problem seems to be that cxf doesn't use my configuration file at all, so i 
tried a simpler example:

        <beans xmlns="http://www.springframework.org/schema/beans";
              xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
              xmlns:cxf="http://cxf.apache.org/core";
              xsi:schemaLocation="
        http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd
        http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd";>

            <cxf:bus>
                <cxf:features>
                    <cxf:logging/>
                </cxf:features>
            </cxf:bus> 
        </beans>

Then I started my program with -Dcxf.config.file=... pointing to the correct 
location. Still cxf won't use this configuration file. Any ideas?

Heinrich Wendel


----------------------------------------------------------------
Deutsches Zentrum für Luft- und Raumfahrt e.V.
in der Helmholtz-Gemeinschaft

Simulation und Softwaretechnik (SISTEC)

Heinrich Wendel

Linder Höhe
51147 Köln
Telefon: 02203 601-3305
E-Mail: mailto:[EMAIL PROTECTED]
Internet: http://www.dlr.de

Reply via email to