krazo
krazo copied to clipboard
We could implement a PoC for a global WildFly module, so we can run the TCK against it and submit it as PR to WildFly itself.
Recently, I was experimenting with Krazo 3.0.1 on Jakarta EE 10, using OpenLiberty 22.0.0.13-beta. I stumbled upon the same error message as reported in #282. I thought it had been...
## Problem At the moment it is not possible to use a more complex Jakarta REST application, used by an Jakarta MVC application, on the context root. The main problem...
When CSRF protection engaged on a method annotated ``` @POST @Produces(MediaType.TEXT_HTML) @Controller @Consumes(MediaType.MULTIPART_FORM_DATA) ``` Can only be validated via HTTP header match. I understand that support for this feature is...
After applying the changes in https://github.com/eclipse-ee4j/krazo/pull/288 and using a Liberty 21.0.0.12 JEE 9 beta, there is one test failure: `org.eclipse.krazo.test.CsrfIT.testFormHeaderOk`. Specifically, the failure is that the header it's looking for...
Trying to build an application with Krazo on Jakarta EE 9, targeted to run on OpenLiberty. I'm using OpenLiberty 22.0.0.4, Krazo 2.0.1 (with the [`LibertyHttpCommunicationUnwrapper`](https://github.com/eclipse-ee4j/krazo/blob/master/resteasy/src/main/java/org/eclipse/krazo/resteasy/core/LibertyHttpCommunicationUnwrapper.java) manually copied in). The Controller...
In https://github.com/eclipse-ee4j/mvc-api/issues/17 was a discussion about supporting sub-resource locators. We should investigate and add this feature, as it helps to implement nested resources in a clear structure.
In the Spring Web MVC there are some helpers to improve the form data binding and validation. 1. In krazo, when the validation is failed, we have to **rebuild the...