@RemotingDestination
public class ExampleService {
@RemotingMessage
public String sayHello(String name) {
return "Hello, " + name + "!";
}
}
script
var exampleService = new ExampleService();
exampleService.sayHello("John", function(result) {
alert(result);
});