ThorodanBrom

Results 17 comments of ThorodanBrom

It looks like it's the same error #2 is facing

~~In OpenAPI 3 at least, the request body is _optional by default_ , see [here](https://swagger.io/docs/specification/describing-request-body/). I think this is why the validation handler does not throw an error. If you...

The [Google group link](https://groups.google.com/g/vertx/c/IZ2YCjsRF_o/m/2V9D1sTrBwAJ) mentions how to actually be able to use the context object in Thymeleaf, by passing `Map` to the engine. I will provide an example here to...

Hello @pmlopes Many thanks for the clarification. Sorry for the delay as well. I have gone through the latest Vert.x Web documentation (v4.3.1) and have listed out all the inconsistencies...

Hello @pmlopes Many thanks for your reply, I've understood the issue. The `setClientId`, `setClientID` thing confused me a little! The [Vert.x OAuth2 docs](https://vertx.io/docs/vertx-auth-oauth2/java/#_openid_connect_discovery) were clear when it came to discovery,...

Tom Ptacek's list : https://web.archive.org/web/20100611080322/http://www.amazon.com:80/An-Application-Security-Reading-List/lm/R2EN4JTQOCHNBA Dino Dai Zovi's list : https://web.archive.org/web/20161010074323/https://www.amazon.com/gp/richpub/listmania/fullview/R21POHD6Y2DOLQ

One way to solve this would be if we could mention which version of the request should be passed here, the proxied request or the modifies request, when resolving the...

As a hack, when using vert.x-web-openapi, you can - Get the query params in the request - Get the query params defined by the OpenAPI spec and from the ValidationHandler...

Bumping this issue, since it seems that it persists in the `7.5.0` stable version as well

Hello @wing328, thanks for the update. I tried the following command that @bobvanderlinden also tried with version `7.5.0`: ```bash java -jar openapi-generator-cli.jar generate -i https://geoserver.dx.ugix.org.in/api -g python --remove-operation-id-prefix --remove-operation-id-prefix-delimiter ....