/**
* Sends a name to the web service, which replies with a welcome message. Each welcome message should be from
* a different bean on the server, since they are defined to have scope="request".
*/
public static void main(String[] args) {
Greetee sender = new Greetee("World");
HelloClient client = new HelloClient("request-scope-client");
for (int i=0; i<3; i++) {
client.run(sender);