Manuel Serra
Manuel Serra
I'd like to re-open this issue since we are unable to produces CloudEvents in a structured fashion. To repro we simply change `src/main/java/io/cloudevents/examples/quarkus/client/UserClient.java` to `@Produces(JsonFormat.CONTENT_TYPE)`. We expect the full content...
That comment was exactly the one that suggests changing to `@Produces(JsonFormat.CONTENT_TYPE)` to have structured mode. That's apparently the only change that's needed (afaik) - but I failed: to verify I...
I've also created this [repro project](https://github.com/nitroin/cloudevents-quarkus-structured-repro) to reproduce the issue mentioned above.
@pierDipi sorry to be pedantic but the suggested and documented way to emit structured events does not work as expected. Or maybe I'am missing something: https://github.com/nitroin/cloudevents-quarkus-structured-repro/blob/main/src/main/java/org/repro/ReproRestClient.java#L19-L21
> Have you tried defining the event as a CloudEvent type instead of Object? Yep. Sadly with the same outcome. The curious _thinghy_ to note here is that when I...
Today I've played a little bit with the repro repo and I found that using the _"deprecated" non-reactive_ rest-client fixed the issue. (from `quarkus-rest-client-reactive-jackson` to `quarkus-rest-client-jackson`). Maybe I should open...
After further investigation removing: ```xml io.cloudevents cloudevents-http-restful-ws ${cloudevents.version} ``` Results in a working example with the reactive rest client.
A sample project correctly setup'd with quarkus-reactive would help for sure. I can open a PR if this sound cool for you.
I'd like to point out to a simple repro project with jpa-streamer as a sources generator [here](https://github.com/speedment/jpa-streamer-demo/tree/master/quarkus-hibernate-panache). Triggering a full compilation results in `target/generated-sources/annotations/$` to be correctly generated but the...
Organization/Company: mondora srl sb Website: https://mondora.com/ Country: ITA Contact: [email protected] Usage scenario: Using Dapr bindings to abstract message-brokers specifics and streamline service-to-service invocations, gradually adopting Virtual Actors to scale and...