vertx-web icon indicating copy to clipboard operation
vertx-web copied to clipboard

HTTP web applications for Vert.x

Results 232 vertx-web issues
Sort by recently updated
recently updated
newest added

…Repository Motivation: Explain here the context, and why you're making that change, what is the problem you're trying to solve. Conformance: Your commits should be signed and you should have...

### Version 4.4.1 ### Context When I construct my `OpenAPIContract` using `io.vertx:vertx-web-openapi-router` I get a `ClassCastException`. ```java Caused by: java.lang.ClassCastException: class io.vertx.core.json.JsonArray cannot be cast to class io.vertx.core.json.JsonObject (io.vertx.core.json.JsonArray and...

bug

The static handler can be configured with [`setMaxAgeSeconds`](https://vertx.io/docs/apidocs/io/vertx/ext/web/handler/StaticHandler.html#setMaxAgeSeconds-long-) to define a default value for caching headers. This value will be used for any file regardless of its content type or...

enhancement

### Version 4.4.2 ### Context I've been running Techempower benchmarks with the [type pollution agent](https://github.com/RedHatPerf/type-pollution-agent) enabled, to identify subtle scalability issues in Quarkus and Vert.x. ### Do you have a...

bug

I use `sendForm` to request, I set a header `Content-Type: application/x-www-form-urlencoded; charset=UTF-8`, but I found actual request `Content-Type` is `application/x-www-form-urlencoded` , it's not should be. Vertx override my header in...

bug

Related to https://github.com/eclipse-vertx/vertx-openapi/issues/20

#### Describe the feature Allow creating authentication handlers for an OpenAPI security scheme dynamically based on the concrete security requirement. Currently, it is only possible to add a static security...

enhancement

Like OAuth2 client, a client which is able to intercept a 401 response, inspect headers and extract the necessary information to authenticate users who have provided credentials.

enhancement
help wanted

Motivation: Additional router tests and reproducer for #2395.

In our Strimzi HTTP - Kafka bridge we are using the OpenAPI3RouterBuilder in order to create our routes from an OpenAPI definition. The bridge also supports to enable CORS and...