try
{
String webserviceLocation =
"http://localhost:8080/axis/SimpleWebService.jws";
Service service = new Service();
Call call = (Call) service.createCall();
call.setTargetEndpointAddress(new java.net.URL(webserviceLocation));
return (String) call.invoke("now", null);
} catch (Exception e)
{
System.err.println(e.toString());
}
return "Unable to connect.";