Hi Freeman

Many thanks for your reply. Still unclear how to do what you have suggested.
Taking a step back - I have used the sdl2java tool to generate a client
service. My config is in cxf.xml which I put on the classpath.

My cxf.xml currently looks like this..

<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";> 
        
            
    <import resource="classpath:META-INF/cxf/cxf.xml"/>
    <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml"/>
    <import resource="classpath:META-INF/cxf/cxf-servlet.xml"/>
    
       <http-conf:conduit name="*.http-conduit">
                <http-conf:client 
                        Connection="Keep-Alive" 
                        AllowChunking="false" 
                        ProxyServer="proxyAddress" 
                        ProxyServerPort="proxyPort" 
                        ProxyServerType="HTTP" /> 
                 <http-conf:proxyAuthorization> 
                        <sec:UserName>un</sec:UserName> 
                        <sec:Password>pw</sec:Password> 
                 </http-conf:proxyAuthorization> 
        </http-conf:conduit> 
</beans> 

Is this where I can configur the injection of extra classes into the jaxb
context?? I realy appreciate your help on this.

If so do I tell it the location of the xsd with the new classes?

Thx

-- 
View this message in context: 
http://cxf.547215.n5.nabble.com/wsdl2java-with-external-xsd-binding-help-tp3329178p3330288.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to