Re: Run programs w/ params including comma via REST api

2018-04-25 Thread Chesnay Schepler
We may be able to modify the handler to just concatenate the arguments again with a comma. I'll look into that tomorrow. On 25.04.2018 11:02, Dongwon Kim wrote: Hi Chesnay, I already modified our application to use semicolon as delimiter and now I can run a job using rest API via dispatcher.

Re: Run programs w/ params including comma via REST api

2018-04-25 Thread Dongwon Kim
Hi Chesnay, I already modified our application to use semicolon as delimiter and now I can run a job using rest API via dispatcher. Nevertheless, though I understand the difficulty of modifying API, it needs to be adjusted as many users are highly likely to use a list of brokers as an argument

Re: Run programs w/ params including comma via REST api

2018-04-25 Thread Chesnay Schepler
Currently I don't see a way to circumvent the splitting. You will have to use a different delimiter, I guess a semi-colon could work? The code is rather optimistic in that it assumes commas to not occur within a parameter value, and doesn't support any kind of escaping or quoting. (And this is