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

### Version 4.3.7 ### Context Upon successful authentication using the OAuth2Auth handler, a session should be instantiated and I should be able to access the '/protected' route, but instead I'm...

bug

Hello, I would like to report a bug in the vertx-web 4.4.3 repository related to the ValidationHandlerBuilder class. Issue: The issue pertains to the deprecated SchemaParser interface being used as...

bug

### Version 4.4.6 ### Context I was looking into https://github.com/zyclonite/nassh-relay/issues/21, and when doing so, I noticed that an 'accept all' `CorsHandler` nonetheless rejects requests where `Origin` is set to `chrome-extension://foobar`...

bug

#### Describe the feature Vert.x 4 It should be possible to close the underlying connection during http calls #### Use cases When you e.g. use the reactive wrapper, or wrap...

enhancement
component/webclient

### Version 4.5.4 ### Context I have a StaticHandler with async fs enabled. When I handle the requests with a HTTP2 server, if a client closes the connection after fetching...

bug

### Version 4.3.3~ ### Context Call to `WebClient.close()` does not wait for resources to be released. Method signature was changed so that it returns a `Future` here https://github.com/vert-x3/vertx-web/pull/2197 But later...

bug

I'm doing some validation in my web application right now, but I found the [document](https://vertx.io/docs/vertx-web-validation/java/) does the validation like this: ```java ValidationHandlerBuilder .create(schemaParser) .pathParameter(Parameters.param("myPathParam", stringSchema())) .queryParameter(Parameters.optionalParam("myQueryParam", intSchema())); ``` The class...

question

### Questions N/A ### Version 4.3.4 to 4.3.8 ### Context We're seeing deadlocks (probably), but only in my CI pipeline that's running unit tests. We're using a gitlab runner in...

bug

### Version Which version(s) did you encounter this bug ? 4.4.1 and 4.4.2 ### Steps to reproduce 1. Create an OpenAPI 3.1.0 document. 2. Use RouterBuilder.create(...). 3. This exception will...

bug

Motivation: Messages sent over the event bus can also contain headers. This can be specified by providing a [DeliveryOptions](https://vertx.io/docs/apidocs/io/vertx/core/eventbus/DeliveryOptions.html) when sending or publishing. The following changes aim to fix the...