Re: FIQL: escape comma

2017-10-12 Thread Sergey Beryozkin
Hi Francesco You are very kind, very often I've no idea (at least at the start) what is going on with the code I did :-) Thanks, Sergey On 12/10/17 14:51, Francesco Chicchiriccò wrote: On 12/10/2017 11:23, Sergey Beryozkin wrote: Hi Francesco Sorry I did not help, checked your emails this m

Re: FIQL: escape comma

2017-10-12 Thread Francesco Chicchiriccò
On 12/10/2017 11:23, Sergey Beryozkin wrote: Hi Francesco Sorry I did not help, checked your emails this morning only... No worries Sergey, you've been precious - and I'm sure you'll be in the future - so many times! Cheers. On 12/10/17 10:14, Francesco Chicchiriccò wrote: It turned out t

Re: FIQL: escape comma

2017-10-12 Thread Sergey Beryozkin
Hi Francesco Sorry I did not help, checked your emails this morning only... Sergey On 12/10/17 10:14, Francesco Chicchiriccò wrote: It turned out that the problem below was originated by the following statement: https://github.com/apache/syncope/blob/2_0_X/core/persistence-api/src/main/java/o

Re: FIQL: escape comma

2017-10-12 Thread Francesco Chicchiriccò
It turned out that the problem below was originated by the following statement: https://github.com/apache/syncope/blob/2_0_X/core/persistence-api/src/main/java/org/apache/syncope/core/persistence/api/search/SearchCondVisitor.java#L74 in the custom SearchConditionVisitor, which does not expect a

Re: FIQL: escape comma

2017-10-12 Thread Francesco Chicchiriccò
Further test: with fiql=ctype%3D%3Dou%3Dsample%252Co%3Disp (rather than fiql=ctype%3D%3Dou%3Dsample,o%3Disp  as below) no exceptions are raised,  but the FIQL string received on server side is ctype==ou=sample%2Co=isp and then parsed by [1] as ou=sample\%2Co=isp Any idea of what I am doing

FIQL: escape comma

2017-10-11 Thread Francesco Chicchiriccò
How to correctly escape the following FIQL expression? ctype==ou=sample,o=isp ? I have set the jaxrs:properties       but the request URL  http://localhost:9080/syncope/rest/users?fiql=ctype%3D%3Dou%3Dsample,o%3Disp fails with 17:47:19.129 ERROR org.apache.syncope.core.rest