ws proxy server in Karaf has problems with mtom attachments

2022-10-18 Thread lliame
Hi, I am trying to solve it for a very long time and I realy don't know what to do next. I am creating new proxy for web services in Karaf 4.4.1 with Camel 3.18.1 and cxf 3.5.3. And it works fine, but I have a problem with MTOM attachments. For some reason it totally screw the message. I thin

Re: OpenTelemetry creates two spans for the same thing

2022-10-18 Thread Claus Ibsen
Hi Georgi If your email had screenshots attached, then I am afraid we cannot see them in the mailing list. Maybe you can share the details in some other way? On Mon, Oct 17, 2022 at 1:05 PM POTZKOV Georgi (ICS460-BAI.ext) wrote: > Hi, > > I am using spring boot + camel in the version: 3.14.2 wi

RE: Predicates

2022-10-18 Thread Reto Peter
Hi Claus Thanks! Now it works I do use: Predicate isSystemActive = simple("${exchangeProperty.systemConfig.isActive}").isEqualTo(true); -Original Message- From: Claus Ibsen Sent: Tuesday, 18 October 2022 09:13 To: users@camel.apache.org Subject: Re: Predicates Hi systemConfig.isActiv

Re: Predicates

2022-10-18 Thread Claus Ibsen
Hi systemConfig.isActive is a key name, so that only works if the property is really named like that. Its not doing any kind of method call - i.e. calling isActive() on the property with key , that the simple can do. On Tue, Oct 18, 2022 at 9:01 AM Reto Peter wrote: > Hi Clause > > So for a

RE: Predicates

2022-10-18 Thread Reto Peter
Hi Clause So for a header I can define a Predicate, but for a property I can't? Example with header: (that works?) Predicate isSystemActive = header("isSystemActive").isEqualTo("true"); Example with property: (that doesn’t work?) Predicate isSystemActive = exchangeProperty ("systemConfig.isActi