Need to consume multiple SOAP and REST webservices and expose result as SOAP as well as REST endpoint

2016-03-07 Thread amitmahesh
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

how to invoke a third party webservice without wsdl

2016-03-03 Thread amitmahesh
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

Unable to route Rest webservice Json response to SOAP service via camel route

2016-03-02 Thread amitmahesh
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

Re: entity manager is injected as null in a camel bean but jpa: endpoint works fine

2016-01-06 Thread amitmahesh
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

Re: entity manager is injected as null in a camel bean but jpa: endpoint works fine

2016-01-05 Thread amitmahesh
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

Re: entity manager is injected as null in a camel bean but jpa: endpoint works fine

2015-12-30 Thread amitmahesh
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

entity manager is injected as null in a camel bean but jpa: endpoint works fine

2015-12-21 Thread amitmahesh
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

transaction handling while moving data from queue to seda to queue

2015-12-18 Thread amitmahesh
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