Hi guys,

I'm currently trying to access a remote webservice through the company firewall. For that I created a cxf.xml:

<beans xmlns="http://www.springframework.org/schema/beans";
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
        xmlns:cxf="http://cxf.apache.org/core";
        xmlns:sec="http://cxf.apache.org/configuration/security";
        xmlns:http-conf="http://cxf.apache.org/transports/http/configuration";
        xsi:schemaLocation="
                http://www.springframework.org/schema/beans
                http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
                http://cxf.apache.org/core 
http://cxf.apache.org/schemas/core.xsd
                http://cxf.apache.org/configuration/security
                http://cxf.apache.org/schemas/configuration/security.xsd
                http://cxf.apache.org/transports/http/configuration
                http://cxf.apache.org/schemas/configuration/http-conf.xsd";>
        
<bean id="logInbound" class="org.apache.cxf.interceptor.LoggingInInterceptor"/> <bean id="logOutbound" class="org.apache.cxf.interceptor.LoggingOutInterceptor"/>
        
        <http-conf:conduit name="{http://api.zyb.com}ZybService.http-conduit";>
                <http-conf:authorization>
                        <sec:UserName>Betty</sec:UserName>
                        <sec:Password>password</sec:Password>
                 </http-conf:authorization>
                                
                <http-conf:client
                        Connection="Keep-Alive"
                        AllowChunking="false"
                        ProxyServer="localhost"
                        ProxyServerPort="8080"
                        ProxyServerType="HTTP" />
        </http-conf:conduit>
</beans>

My problem is that it seems that my settings are not honored at all as nothing works. When I change the proxy settings to a local server for which I can access the access.log/error.log even there is no indication of an access at all.

Can you point me in the right direction?

Thanks in advance.

BR
Christoph

Reply via email to