Advertisement
Guest User

HelloWorldImpl

a guest
Sep 3rd, 2014
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. package com.stuff.ws;
  2. import javax.jws.WebService;
  3.  
  4. //Service Implementation
  5. @WebService(endpointInterface = "com.stuff.ws.HelloWorld")
  6. public class HelloWorldImpl implements HelloWorld{
  7.  
  8. @Override
  9. public String getHelloWorldAsString(String name) {
  10. return "Hello World JAX-WS " + name;
  11. }
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement