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: Swagger2feature / 3.1.12 (DOSGI)

2017-10-12 Thread Sergey Beryozkin
Hmm... I may've been wrong with some of the assumptions about what Swagger2Feature does. Can you please do a breakpoint at https://github.com/apache/cxf/blob/cxf-3.1.12/rt/rs/description-swagger/src/main/java/org/apache/cxf/jaxrs/swagger/AbstractSwaggerFeature.java#L103 and see what happens, w

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: Swagger2feature / 3.1.12 (DOSGI)

2017-10-12 Thread Sergey Beryozkin
Hi CXF does not contribute itself to the generation of 'host' within the Swagger JSON. For example, try a jaxrs/spring-boot demo, or some of other swagger2 demos... If you'd like you can get the CXF source, and step through the CXF Swagger2Feature Sergey On 12/10/17 11:06, nino martinez w

Re: Swagger2feature / 3.1.12 (DOSGI)

2017-10-12 Thread Sergey Beryozkin
In this case it is really somewhere in the Swagger code Sergey On 11/10/17 18:29, nino martinez wael wrote: No problem, I tried both configurations but no matter what I do, the host remains the same 0.0.0.0:9090 On 11 Oct 2017 15:51, "Sergey Beryozkin"

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