-
Bug
-
Resolution: Done
-
Normal
-
3.20.0.GA
-
None
-
False
-
-
False
-
-
-
-
0
-
-
Preview
https://docs.redhat.com/en/documentation/red_hat_build_of_apache_camel/4.10/html/red_hat_build_of_apache_camel_for_quarkus_reference/camel-quarkus-extensions-reference#extensions-cxf-soap-usage-client
Please modify the 2.29.3.3. Client sample code.
Before
import jakarta.enterprise.context.SessionScoped;
~skip~
@produces
@SessionScoped
@Named
CxfEndpoint beanClient() {
After
import jakarta.enterprise.context.ApplicationScoped;
~skip~
@Produces
@ApplicationScoped
@Named
CxfEndpoint beanClient() {