Milo Component throws " Skipping validation for certificate"

2023-02-01 Thread KARTHIK PRABHU N
Hello All, Hope you are doing fine! Milo component which connects OPC UA server is throwing warning message “Skipping validation for certificate “. To understand this issue, I tried to go through the milo stack and client library, but I somehow lost in between understanding the logic. Could ple

Re: Milo Component throws " Skipping validation for certificate"

2023-02-01 Thread Claus Ibsen
Hi What version of Camel do you use? On Wed, Feb 1, 2023 at 12:12 PM KARTHIK PRABHU N wrote: > Hello All, > > Hope you are doing fine! > > Milo component which connects OPC UA server is throwing warning message > “Skipping validation for certificate “. To understand this issue, I tried > to go

CamelBlueprintTestSupport / strange OSGi context

2023-02-01 Thread Ephemeris Lappis
Hello. I've observed that tests based on CamelBlueprintTestSupport have a strange OSGi context : the "FrameworkUtil" class doesn't work as expected and returns null. For some parts of our application code, where optional information is not required, we can handle the null value. But we can't do i

Camel-JBang - File -> Split -> File

2023-02-01 Thread Chirag
Hello Fellow Camelriders, https://camel.apache.org/components/3.20.x/eips/split-eip.html#_streaming_big_xml_payloads_using_xml_tokenize_language I tried using camel jbang to run XML Split with Streaming. Here is how my route is defined: //Batch Stacktrace --

Re: How to trigger Messages at specific times

2023-02-01 Thread Mark Nuttall
The process that triggers calls producer template and publishes it to a route. You definitely don't want to do the work as part of the trigger you want to publish to a q u e u e or topic On Tue, Jan 31, 2023, 10:44 PM Yash Ganthe wrote: > From Quartz that is set up outside of Camel, what do we n

Re: Camel-JBang - File -> Split -> File

2023-02-01 Thread Claus Ibsen
Hi Upgrade to Camel 3.20.1 On Thu, Feb 2, 2023 at 12:46 AM Chirag wrote: > Hello Fellow Camelriders, > > https://camel.apache.org/components/3.20.x/eips/split-eip.html#_streaming_big_xml_payloads_using_xml_tokenize_language > > I tried using camel jbang to run XML Split with Streaming. > Here i

Re: CamelBlueprintTestSupport / strange OSGi context

2023-02-01 Thread Claus Ibsen
Hi CamelBlueprintTestSupport is not testing in a real osgi system, but uses apache felix pojosr (afair) that has some kind of mocked/simulated osgi that is limited. You can use pax exam for testing with a real osgi system. On Wed, Feb 1, 2023 at 5:19 PM Ephemeris Lappis wrote: > Hello. > > I'

Re: CamelBlueprintTestSupport / strange OSGi context

2023-02-01 Thread Grzegorz Grzybek
Hello CamelBlueprintTestSupport is a class to support with OSGi/Blueprint tests, but in quite limited manner. The most important thing is that the bundles available during the test are not installed in normal OSGi framework and none of the bundles has its own classloader. Historically something c