Skip to content

Instantly share code, notes, and snippets.

@biemond
Created September 28, 2011 18:36
Show Gist options
  • Save biemond/1248814 to your computer and use it in GitHub Desktop.
Save biemond/1248814 to your computer and use it in GitHub Desktop.
Hello Implementation
package nl.whitehorses.ws;
import javax.jws.WebService;
import javax.xml.ws.soap.Addressing;
import nl.whitehorses.ws.interfaces.Hello;
@WebService
@Addressing
public class HelloImpl implements Hello {
@WebMethod()
@Oneway()
public void sayHello(String name) {
}
@WebMethod()
@Oneway()
public void callbackMessage(String msg) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment