Help Needed: Splitter and Parallel Processing

2019-08-05 Thread Luiz Eduardo Valmont
Hi, friends! According to instructions found on this link (splitter) and this other link (bean) , I wrote this (simple?) route: *public* *void* configure() *throws* Exception { > from( "quartz2://instancesProcessor

Re: Camel + Spring Boot as a backend?

2019-04-16 Thread Luiz Eduardo Valmont
I use Spring Boot, Camel and Quartz on a symbiotic-ish application. There's REST endpoints as well. On Tue, 16 Apr 2019, 11:54 Michael Joyner, wrote: > I assume using Spring MVC for the front end. I think that you would be > fine. Someone else will probably chime in from the project and confirm.

Re: Getting Error Bad HTTP Error

2019-02-28 Thread Luiz Eduardo Valmont
Hi Ayush! In the error message, is the last tic part of the header? What is exactly the Content-Type header? Can you repeat the request over the command line or postman interface and send us the verbose result? Thanks! On Thu, 28 Feb 2019, 13:25 Ayush Dixit, wrote: > Hi, > > We are getting an

Re: Mocking Beans

2019-01-18 Thread Luiz Eduardo Valmont
I confess I'm not familiar with @BeanInject, but if it's similar in purpose as @Autowired from Spring, then I'd suggest using constructor injection. That way you can create your object with your mocked bean. Personally I do it like that in unit testing. HTH On Fri, 18 Jan 2019, 13:42 Bradford Fi

Re: HTTP response is not being chunked

2019-01-16 Thread Luiz Eduardo Valmont
converters/dataset_to_sdf >CamelHttpUrl -> > > http://localhost:8092/chem-services-cdk-basic/rest/v1/converters/dataset_to_sdf >CamelServletContextPath -> /v1/converters/dataset_to_sdf >content-encoding -> gzip >content-length -> 19397182 >Conte

Re: HTTP response is not being chunked

2019-01-16 Thread Luiz Eduardo Valmont
Hi, Tim! I'd suggest trying to intercept / dump the HttpAsyncClient request as well as the curl one. A simple "nc -l -p " in an *NIX OS will do. My guess is that the perceived difference lies in the request headers. Might be in the Accept. Can you post both requests in full, body excluded?