Thanks Dan
I was running with just the following cxf dependencies in my pom.
<dependency>
          <groupId>org.apache.camel</groupId>
          <artifactId>camel-cxf</artifactId>
                <version>${camel.version}</version>
</dependency>           
                
<dependency>
          <groupId>org.apache.cxf</groupId>
          <artifactId>cxf-rt-transports-http-jetty</artifactId>
          <version>${cxf.version}</version>
</dependency>   

When I added these two it worked        
<dependency>
          <groupId>org.apache.cxf</groupId>
          <artifactId>cxf-rt-frontend-jaxws</artifactId>
          <version>${cxf.version}</version>
</dependency>   
<dependency>
          <groupId>org.apache.cxf</groupId>
          <artifactId>cxf-rt-transports-http</artifactId>
          <version>${cxf.version}</version>
</dependency>   

Thanks for your help.

--
View this message in context: 
http://cxf.547215.n5.nabble.com/CXF-2-6-0-problem-with-cxf-codegen-plugin-tp5669301p5671851.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to