Skip to content

Instantly share code, notes, and snippets.

@sachin-handiekar
Created January 3, 2016 09:25
Show Gist options
  • Save sachin-handiekar/d0e991c68d8f500c0fc1 to your computer and use it in GitHub Desktop.
Save sachin-handiekar/d0e991c68d8f500c0fc1 to your computer and use it in GitHub Desktop.
package com.sachinhandiekar.example.webservice;
import javax.jws.WebService;
@WebService(endpointInterface = "com.sachinhandiekar.example.webservice.HelloWorld")
public class HelloWorldService implements HelloWorld {
public String sayHello(String name) throws Exception {
return "Hello " + name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment