Re: Path Parameters with REST DSL and Swagger

2016-04-01 Thread Gregor Zurowski
Hi Claus, I ran the code with 2.16.3-SNAPSHOT and the problem is fixed with that version. The path parameter is returned as a regular string parameter: === [...] "parameters" : [ { "name" : "testNumber", "in" : "path", "description" : "...", "required" : true, "type" : "string" }, [...

Re: Path Parameters with REST DSL and Swagger

2016-03-31 Thread Claus Ibsen
Can you try with 2.16.3 SNAPSHOT. We got a git of fix in there, and combiend with the swagger upgrade it fixed some issues in the past. On Thu, Mar 31, 2016 at 11:37 PM, Gregor Zurowski wrote: > Hi Claus, > > Thanks for your quick response. I installed version 1.5.8 of > swagger-core, which is t

Re: Path Parameters with REST DSL and Swagger

2016-03-31 Thread Gregor Zurowski
Hi Claus, Thanks for your quick response. I installed version 1.5.8 of swagger-core, which is the latest stable version, but the problem remains the same. Thanks, Gregor On Thu, Mar 31, 2016 at 7:44 AM, Claus Ibsen wrote: > Try upgrade swagger-core to newer version > > On Wed, Mar 30, 2016 at

Re: Path Parameters with REST DSL and Swagger

2016-03-30 Thread Claus Ibsen
Try upgrade swagger-core to newer version On Wed, Mar 30, 2016 at 11:08 PM, Gregor Zurowski wrote: > Hi Everyone: > > I have a problem with path parameters when using the REST DSL with > Camel 2.16.2 and the camel-swagger-java module. Path parameters are > always exposed as enum types through Sw

Path Parameters with REST DSL and Swagger

2016-03-30 Thread Gregor Zurowski
Hi Everyone: I have a problem with path parameters when using the REST DSL with Camel 2.16.2 and the camel-swagger-java module. Path parameters are always exposed as enum types through Swagger. The simplified REST part in my route builder looks as follows: === [...] rest("/test-api/v1").descrip