Tomas Langer

Results 65 comments of Tomas Langer

There is a new test added in the PR that failed before the fix. This should now work fine regardless of number of JAX-RS applications, and whether the next consumer...

Thanks for this contribution. We are now making some decisions regarding the timing. I want to spend some time on this to use our new Builder APIs and do a...

Regarding CDI integration - I think the Helidon MP integration is not "just" CDI, but it should also support MP Config as a source of configuration data. If that is...

I have an objection to the use case mentioned here: `res.header("X-Total-Time", String.valueOf(totalTime));` this will not do what it seems to be doing, as you only compute time it took to...

Hello, we are working on this hard. There will be the following dependencies: - `helidon-inject-service` - required to define services (including config driven), also required at runtime if you use...

There are two reasons why this may not work: 1. insufficient configuration of reflection for native image - all types that are processed using reflection must be added in `reflect-config.json`...

If you create the following file (assuming Maven project): `src/main/resources/META-INF/native-image/groupId/artifactId/reflect-config.json` with the following content: ```json [ { "name": "your.package.Message2", "allPublicMethods": true } ] ``` your problem should be fixed

You can find a full example here: https://github.com/helidon-io/helidon/tree/main/examples/nima/protocols It uses multiple protocols with our webserver, including GRPC Short summary: - we use the same server to server HTTP and grpc,...