-
Notifications
You must be signed in to change notification settings - Fork 61
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
Trying to send SOAP messages with content-type application/soap+xml #1641
Comments
Thanks for the report, @CodedNikls! If you are on Quarkus CXF 3.16.0 or newer, could you please try forcing
so that we can see whether there is something missing in the new default |
I have added a test for |
Hey, thanks for the quick answer! I am currently on quarkus cxf 3.13.1, will update now to see if that solves the issue. |
We have updated to quarkus and quarkus-cxf 3.17.3 now and the issue was sadly not resolved that way. To go into further detail:
The message that is being logged via the LoggingOutInterceptor looks like this:
As you can see, the content type remains text/xml, apparently disregarding the config property.
Are we configuring something wrong? Are you able to reproduce this problem? |
Thanks for the details @CodedNikls, Would you please replace the |
Nothing changed about the behavior, but I do not get a log of the outgoing message now. |
I'm trying to send SOAP messages using a CXF client which is set up via
@CXFClient("myClient")
myGeneratedInterface cxfClient;
It has been working for me so far, but now I'm trying to switch to SOAP 1.2, which is why I'm trying to use content type application/soap+xml now.
As per the documentation, i used the following property to set the content type:
quarkus.cxf.client.myClient.content-type=application/soap+xml
However, the messages being sent out still use content-type text/xml, which is causing issues for me.
Is there a solution I am missing or can this content type currently not be used?
Thanks in advance!
The text was updated successfully, but these errors were encountered: