In this step you will create the web service and you will add a synchronous method to this web service. Remember that when a client invokes a synchronous method, it is blocked from continuing its own processes until it receives the return value from the web service.
The tasks in this step are:
/**
* @common:operation
*/
public String hello_synch(String name)
{
return "Hello, " + name + "!";
}
You have now created a web service with the method hello_synch. This method is considered synchronous because when the method is invoked, the invoking client has to wait until the method has finished processing and returns a String result. A synchronous method that returns a result to the invoking client is depicted in Design View as a straight blue arrow pointing to the right, with white arrows in both directions on top of the blue arrow.

Next you will test the web service to examine its behavior.
