Thanks for sharing your solution with the community! Enjoy your further
Camel ride.

Best,
Christian

Sent from a mobile device
Am 10.11.2012 08:50 schrieb "peter.berkman" <peter.berk...@cornergrove.com>:

> got it working !!!  I did remove the http:destination lines, but I think
> the
> real issue was that I had upgraded to the latest version of Spring.  The
> war
> file had some straggler old Spring jars.  So, excluded from main
> dependancies and included the "right" version in the war pom...  all is
> GOOD!
>
> Thank you for all of your support!!!
>
> In case someone else is planning to upgrade Spring, here are the specific
> excludes I made in the dependencyMangment for packages that broght in the
> older version:
>
> {code}
>                         <dependency>
>                                 <groupId>org.apache.camel</groupId>
>                                 <artifactId>camel-jms</artifactId>
>                                 <version>${camel-version}</version>
>                                 <exclusions>
>                                         <exclusion>
>
> <groupId>org.springframework</groupId>
>
> <artifactId>spring-jms</artifactId>
>                                         </exclusion>
>                                         <exclusion>
>
> <groupId>org.springframework</groupId>
>
> <artifactId>spring-tx</artifactId>
>                                         </exclusion>
>                                 </exclusions>
>                         </dependency>
>
>                         <dependency>
>                                 <groupId>org.apache.camel</groupId>
>                                 <artifactId>camel-cxf</artifactId>
>                                 <version>${camel-version}</version>
>                                 <exclusions>
>                                         <exclusion>
>
> <groupId>org.apache.cxf</groupId>
>
> <artifactId>cxf-rt-frontend-jaxrs</artifactId>
>                                         </exclusion>
>                                         <exclusion>
>
> <groupId>org.apache.cxf</groupId>
>
> <artifactId>cxf-rt-bindings-soap</artifactId>
>                                         </exclusion>
>                                 </exclusions>
>                         </dependency>
>
>                         <dependency>
>                                 <groupId>org.apache.camel</groupId>
>                                 <artifactId>camel-spring</artifactId>
>                                 <version>${camel-version}</version>
>                                 <exclusions>
>                                         <exclusion>
>
> <groupId>org.springframework</groupId>
>
> <artifactId>spring-aop</artifactId>
>                                         </exclusion>
>                                 </exclusions>
>                         </dependency>
>
>
>
> {code}
>
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/Configuring-HTTPS-for-CXF-tp5722427p5722445.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>

Reply via email to