llowinge opened a new issue, #4746: URL: https://github.com/apache/camel-quarkus/issues/4746
Reproducer https://github.com/llowinge/camel-quarkus-examples/tree/cxf-soap-example/cxf-soap. With JVM mode it generates correct WSDL at `curl http://0.0.0.0:8081/cxf/services/contact\?wsdl`, but with Native it generates ``` <?xml version='1.0' encoding='UTF-8'?><wsdl:definitions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://service.soap.cxf.acme.org/" xmlns:ns2="http://schemas.xmlsoap.org/soap/http" xmlns:ns1="http://schemas.xmlsoap.org/wsdl/soap/" name="ContactService" targetNamespace="http://service.soap.cxf.acme.org/"> <wsdl:portType name="ContactServicePortType"> </wsdl:portType> <wsdl:binding name="ContactServiceSoapBinding" type="tns:ContactServicePortType"> <ns1:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/> </wsdl:binding> <wsdl:service name="ContactService"> <wsdl:port binding="tns:ContactServiceSoapBinding" name="ContactServicePort"> <ns1:address location="http://0.0.0.0:8081/cxf/services/contact"/> </wsdl:port> </wsdl:service> </wsdl:definitions> ``` When i've added `@WebService` (which should be mandatory - but works in JVM without it) annotation, the WSDL got changed, but still the test didn't pass (but passed in JVM). -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org