Re: Camel 4.0 upgrade causes SEDA Hang

2023-08-30 Thread Tim Janusz
Otavio, So sorry.. Apparently postman automatically assume context-type 'text/plain' whereas curl assumes application/x-www-form-urlencoded https://stackoverflow.com/questions/43054195/how-to-post-raw-body-data-with-curl This works locally for me if I specify the content-type.. curl -X POST -d

Re: Camel 4.0 upgrade causes SEDA Hang

2023-08-30 Thread Otavio Rodolfo Piske
I tried running the example, but when I post data to service like this: curl -X POST -d "--id e70c0565 --dhInitialize" localhost:8080/camel/dialcommand/ ; curl -X POST -d "--id e70c0565 --dhKill" localhost:8080/camel/dialcommand If fails with: {"timestamp":"2023-08-30T16:12:25.880+00:00","statu

Re: Camel 4.0 upgrade causes SEDA Hang

2023-08-30 Thread Otavio Rodolfo Piske
Thanks Tim. That way is fine for me. Kind regards On Tue, Aug 29, 2023 at 10:14 PM Tim Janusz wrote: > Otavio, > > I was able to create a small spring boot web application that demonstrates > the issue.. > > Hopefully you can check it out and see what could be possibly wrong.. This > app is sup