Replies: 1 comment 4 replies
-
Hi @salmipa Are you able to put together and share a small reproducer? If not, maybe you can try enable debug logging to have some additional insight. # To enable additional logging for CXF and quarkus-cxf
quarkus.log.category."org.apache.cxf".level=DEBUG
quarkus.log.category."io.quarkiverse.cxf".level=DEBUG |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I trying to make quarkus-cxf work, but whatever I do it never finds my endpoint. Just 404 all the time.
this is in my pom.xml
and this in application.properties
quarkus.http.port=9123
quarkus.cxf.path=/cxf
quarkus.cxf.endpoint."/fruit".implementor=blahblah.PolicySearchService
HTTP GET for
http://localhost:9123/cxf/fruit?wsdl
says Resource not found. Similarly POST with actual SOAP message says the same.
What's wrong?
Beta Was this translation helpful? Give feedback.
All reactions