llowinge commented on code in PR #15573:
URL: https://github.com/apache/camel/pull/15573#discussion_r1761269504


##########
components/camel-cxf/camel-cxf-soap/src/main/docs/cxf-component.adoc:
##########
@@ -576,10 +582,14 @@ Having simple java web service interface:
 ----
 package org.apache.camel.component.cxf.soap.server;
 
-@WebService(targetNamespace = 
"http://server.soap.cxf.component.camel.apache.org/";, name = "EchoService")
-public interface EchoService {
+import jakarta.jws.WebService;
+
+@WebService(targetNamespace = 
"http://server.soap.cxf.component.camel.apache.org/";, name = "TextService", 
serviceName = "TextService")
+public interface TextService {
 
-    String echo(String text);
+    String upperCase(String text);
+
+    String lowerCase(String text);

Review Comment:
   Why is it needed ? Just to showcase ? It works even without it.



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to