1617181920212223242526
return "Hello,"+username; } @RemoteMethod public Address getAddress() throws Exception { Address address = new Address(); address.setStreet("2245 NW Overlook Drive"); address.setCity("Portland"); address.setState("Oregon"); return address; }