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

#### Describe the feature I would like to be able to change the session cookie `Domain` attribute. As of today, the session cookie domain is set to the full hostname...

enhancement

Looking at [`WebClientBase`](https://github.com/vert-x3/vertx-web/blob/master/vertx-web-client/src/main/java/io/vertx/ext/web/client/impl/WebClientBase.java#L86) only a selected subset of parameters of the RequestOptions gets passed onto the request which is created. Other options are ignored and the `requestOptions` variable is not...

bug

### Simple feature request We need addQueryParams in HttpRequestImpl which can add multiple params to the request in one go. **How I came across the need** I have a RequestContainer...

enhancement

### Questions Cache control header "stale-while-revalidate" not work as expected in CachingWebClient ### Version 4.2.7 ### Context We are using CachingWebClient in our project, however, During our test, we found...

bug

### Version 4.1+ ### Context As of VertX 4.1, when scopes are defined in a security for a route, it's possible for the required scopes to also be applied to...

bug

Which version(s) did you encounter this bug ? 4.4.0 ### Do you have a reproducer? ChainAuthHandler authHandler = ChainAuthHandler.any(); authHandler.add(formHandler); successful login returns http status 405 the problem is, that...

bug

See #2408 Some auth handlers have postAuthentication methods that must be invoked. For example, FormLoginHandler may have to redirect the client after authentication. ChainAuthHandler was not able to invoke the...

See #2556 This commit makes it possible to use star origin in CORS handler setup with a Chrome extension client app. Chrome Extensions use an origin of the follow form:...

#### Describe the feature Currently it's not possible to send an early-hints response (103 Early Hints (RFC 8297)) using the RoutingContext. #### Use cases Early hints is useful to instruct...

enhancement

I found a bug that did not exist in 4.2.*, but was introduced in vertx-web-openapi version 4.3.*. If I send a PATCH request to an API defined with openapi for...

bug