quarkiverse / quarkus-cxf

Quarkus CXF Extension to support SOAP based web services.
Apache License 2.0
71 stars 57 forks source link

WebServiceContext not injected into a service impl with `@CXFEndpoint("/my-path")` #1425

Open Inithron opened 4 days ago

Inithron commented 4 days ago

Used quarkus-cxf version: 3.12.0 After the removal of the quarkus.cxf.endpoint."/my-path".implementor from the properties file and the usage of the annotation @CXFEndpoint("/my-path") the WebServiceContext was null:

    @Resource
    WebServiceContext wsContext;

This issue pops up after #1399 was fixed.