We need to fetch data from 3 SOAP webservices and 2 REST services in a
sequential manner, process the data and expose the Result as both SOAP and
REST webservices to be consumed by end user. What should be the best
approach to implement this. Can we avoid SOAP/REST to POJO marshalling. that
will g
We have to invoke a third party webservice but we donot have access to wsdl,
all we know is endpoint address and input and output xml format. we were
able to invoke it from SOAP UI but struggling to configure as a cxf endpoint
so as to invoke from a camel route. From searching the net we came acro
We are calling a thirdparty SOAP service (without WSDL) from a REST service.
We created a intermediate proxy cxf webservice to invoke the final third
party webservice. The JSON request is not getting converted to SOAP
parameters correctly and we getting Exception that "Expecting 3 parameters
but ge
So effectively you are suggesting to always use jpa: uri in the camel route
for all my database access part, and to avoid injecting entity manager in a
camel bean. Means I will have to keep multiple intermediate data processing
beans in camel route to generate/consume entity beans data.
--
Vie
Hello Saurabh,
Even I was worried about the transaction handling part if I inject
entity manager from Spring instead of using the jpa:// endpoint supported
by the Camel JPA component. Our developers felt that jpa:// was helpful only
for Simple CRUD operations but in our case we do a lot of c
I switched to a older version of spring and this issue got resolved
automatically, now I use version 4.1.8
--
View this message in context:
http://camel.465427.n5.nabble.com/entity-manager-is-injected-as-null-in-a-camel-bean-but-jpa-endpoint-works-fine-tp5775308p5775619.html
Sent from the C
http://www.springframework.org/schema/beans";
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
xmlns:tx="http://www.springframework.org/schema/tx";
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans
We are developing system which processes transactions coming from ATM
machines of various banks.
We take incoming messages to Request Queue, Process it at multiple stages
and Send response back to Response Queue which is then sent back to Socket
connection established when ATM initiated transactio