Re: Passwords in Camel endpoint URIs and limitations of RAW syntax

2020-06-08 Thread Vojtech Fried
As Claus pointed out, the correct syntax is now #bean:. /Vojtech

Re: hash (pound sign) notation in Camel 3.x

2020-06-08 Thread Vojtech Fried
://urldefense.com/v3/__https://github.com/apache/camel/commit/763bfeb999f1fa7a3a3f1ef96c7a7eefa2032734__;!!Obbck6kTJA!P57o44tdLPjkMBevUjgX2hR98fYAijroozT90KDqfGVRXVzdFKKgDHAxegBR-O_0$ On Fri, Jun 5, 2020 at 1:56 PM Vojtech Fried wrote: > > Hi, > > in Camel 2.x I used a # notation in URIs for endpo

hash (pound sign) notation in Camel 3.x

2020-06-05 Thread Vojtech Fried
Hi, in Camel 2.x I used a # notation in URIs for endpoints. I used the # for example for passwords, because passwords can contain any characters and I don't want any Camel processing on it. I used SimpleRegistry to add objects and somehow plugged it into Camel context and then looked those

Re: Passwords in Camel endpoint URIs and limitations of RAW syntax

2020-06-05 Thread Vojtech Fried
Hi Florian, I also had this problem. Neither URI encoding nor RAW helped. My solution in 2.x Camel was to use # notation in the URI with a String stored as in a registry. Then Camel took the string and did not process it. It required some fiddling with Registries to make them writable, but it

Re: stream caching not configurable for rest consumer?

2020-04-01 Thread Vojtech Fried
to disable stream caching explicitly (without the fix): restConfiguration() ... .endpointProperty("disableStreamCache", "true") ________ From: Vojtech Fried Sent: Wednesday, April 1, 2020 12:27 To: users@camel.apache.org Subject: Re: [EXTERNAL]

Re: [EXTERNAL] - Re: stream caching not configurable for rest consumer?

2020-04-01 Thread Vojtech Fried
:06 AM Vojtech Fried wrote: > > Hi, > > I am trying to fix upload of huge files via camel rest endpoint. The problem > is that stream caching enables itself in this case (without being enabled in > camel context or the route), but when camel asks a StreamCachingStrategy if

stream caching not configurable for rest consumer?

2020-04-01 Thread Vojtech Fried
Hi, I am trying to fix upload of huge files via camel rest endpoint. The problem is that stream caching enables itself in this case (without being enabled in camel context or the route), but when camel asks a StreamCachingStrategy if the data should be moved from memory to file, it always says

URI encoding and RAW values

2019-12-10 Thread Vojtech Fried
Hi, I am trying to understand how the query parameters in Camel component configuration URIs work. I am working specifically with smtp output. I have seen https://camel.apache.org/manual/latest/faq/how-do-i-configure-password-options-on-camel-endpoints-without-the-value-being-encoded.html and