-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor ResteasyReactiveOutputStream
so that it can be used by Quarkus CXF
#40994
Labels
area/housekeeping
Issue type for generalized tasks not related to bugs or enhancements
Milestone
Comments
ppalaga
added
the
area/housekeeping
Issue type for generalized tasks not related to bugs or enhancements
label
Jun 5, 2024
ppalaga
added a commit
to ppalaga/quarkus
that referenced
this issue
Jun 5, 2024
ppalaga
added a commit
to ppalaga/quarkus
that referenced
this issue
Jun 6, 2024
ppalaga
added a commit
to ppalaga/quarkus
that referenced
this issue
Jun 10, 2024
ppalaga
added a commit
to ppalaga/quarkus
that referenced
this issue
Jun 10, 2024
ppalaga
added a commit
to ppalaga/quarkus
that referenced
this issue
Jun 10, 2024
ppalaga
added a commit
to ppalaga/quarkus
that referenced
this issue
Jun 11, 2024
holly-cummins
pushed a commit
to holly-cummins/quarkus
that referenced
this issue
Jul 31, 2024
danielsoro
pushed a commit
to danielsoro/quarkus
that referenced
this issue
Sep 20, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
ResteasyReactiveOutputStream
was written so that RESTeasy is able to run on top of Vert.x.CXF works like RESTeasy: it also writes to a
(Servlet)OutputStream
and to make CXF able to run on top of Vert.x one needs a similar class. For some time, we had an adjusted static copy ofResteasyReactiveOutputStream
in Quarkus CXF. At some point, we got issues related to chunking reported, that were fixed in Quarkus long time ago.After that, I implemented a script that adapts
ResteasyReactiveOutputStream.java
at Quarkus CXF runtime which is a bit safer, but still rather fragile.Implementation ideas
Hence, it would be nice if
ResteasyReactiveOutputStream
could be refactored in the following way:vertx-web
but does not depend on RESTeasy@cescoffier encouraged me to prepare a PR which is underway.
The text was updated successfully, but these errors were encountered: