Replies: 1 comment 6 replies
-
Yes, we changed the VertxDestination quite substantially to be able to support WS-RM. Could you perhaps somehow try to add the addServant call back and see whether everything still works? |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi @ppalaga (and others),
basically for years we had in my Quarkus project the usual quarkus-cxf dependencies (and the the BOM import) and a little further down in the respective pom.xml we had:
This allows us to provide mock endpoints for our test like so:
Endpoint.publish()
was picking uporg.apache.cxf.transport.http.netty.server.NettyHttpDestination
and all was good.With qcxf 2.7 though, the port in URL is not respected anymore and so our tests fail. We (better to say @mickroll) noticed that now
io.quarkiverse.cxf.transport.VertxDestination
is being picked up which doesn't have theengine.addServant(url, ...)
call inactivate
.Now, if we place
cxf-rt-transports-http-netty-server
beforequarkus-cxf
in the pom.xml (and thus on the classpath before it as well) the problem goes away.Does that ring a bell? Is there a change since qcxf 2.6.1 that could explain this?
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions