Hi,

we are using Camel 2.8.0. in form of a webapp deployed in JBoss AS. 
The webapp uses the following camel dependencies:
- camel-spring
- camel-cxf
- camel-cxf-transport
- camel-servlet
- camel-http


Our routes are defined in Spring xml style:


<cxf:cxfEndpoint id="exampleService" address="${example-service.ep.address}"
serviceName="s:example-service" endpointName="s:internal-portSOAP"
wsdlURL="classpath:/webservices/example-service.wsdl"
xmlns:s="http://www.example.com/example/"; />


<camel:camelContext xmlns="http://camel.apache.org/schema/spring";>

    <endpoint id="originExampleService"
uri="${origin.example-service.ep.address}?transferException=true" />

    <route>
        <from uri="cxf:bean:exampleService?dataFormat=MESSAGE" />
        <to ref="originExampleService" />
    </route>

</camel:camelContext>


"${example-service.ep.address}" and "${origin.example-service.ep.address}"
are replaced with values from the Spring PropertyPlaceHolder.

There are no java classes in the webapp. Only the Spring xml configuration
file and the dependencies.
Any hints?

@willem You talked about the camel-http component. Should we use another
one?

Thanks!

--
View this message in context: 
http://camel.465427.n5.nabble.com/Missing-detail-element-in-SOAP-fault-tp4913512p4921983.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to