Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1. package jboss.ws.ep;
  2.  
  3. import javax.jws.WebService;
  4.  
  5. import jboss.ws.bean.Person;
  6.  
  7. @WebService
  8. public class HelloService {
  9.  
  10.     public String sayHello() {
  11.         return "Hello by JBoss 6 WS with CXF implementation.";
  12.     }
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement