Re: Re: Re: Square brackets in query param

2022-01-21 Thread Claus Ibsen
Hi The fixes will be in 3.14.1 and 3.15.0. Your 3.8.0 you can use the setHeader workaround I mentioned On Fri, Jan 21, 2022 at 7:59 AM Yebba, Nicholas wrote: > > Thanks for the update. Is this functionality available in my current version > 3.8.0 or do I have to upgrade ? If I have to upgrade

RE: Re: Re: Square brackets in query param

2022-01-20 Thread Yebba, Nicholas
Thanks for the update. Is this functionality available in my current version 3.8.0 or do I have to upgrade ? If I have to upgrade then which version from maven repo should I use ? Thanks, On 2022/01/20 19:04:26 Claus Ibsen wrote: > Hi > > You can use a header with name CamelHttpQuery where

Re: Re: Square brackets in query param

2022-01-20 Thread Claus Ibsen
Hi You can use a header with name CamelHttpQuery where you put the query parameters and then call the http endpoint as a static name (without the query) then the square brackets should work On Thu, Jan 20, 2022 at 10:35 AM Pasquale Congiusti wrote: > > Yeah, it seems RAW() only works on the que

Re: Re: Square brackets in query param

2022-01-20 Thread Pasquale Congiusti
Yeah, it seems RAW() only works on the query parameter value. I've run some experiments and reported an issue here: https://issues.apache.org/jira/browse/CAMEL-17520 - likely it's a bug and we'll work on its resolution. Feel free to watch it on Jira or add any comments over there. Cheers, Pasquale

RE: Re: Square brackets in query param

2022-01-19 Thread Yebba, Nicholas
Thanks for the suggestion. I tried using the RAW function but it seems as though it’s not being interpreted. For example when I inspect the URL camel is sending the word RAW is contained in it. EX..https://api.degreed.com/api/v2/content?RAW(filter[end_date])=2021-12-29&RAW(filter[start_date]

Re: Square brackets in query param

2022-01-19 Thread Pasquale Congiusti
Hi Nick, maybe you can wrap them using RAW() function: https://camel.apache.org/manual/faq/how-do-i-configure-endpoints.html#HowdoIconfigureendpoints-Configuringparametervaluesusingrawvalues Regards, Pasquale. On Tue, Jan 18, 2022 at 8:47 PM Yebba, Nicholas wrote: > Hi, I’ve run into an issue w