public static void main(String[] args)
{
HelloService service = new HelloServiceLocator();
Hello client = null;
try
{
client = service.getHello();
}
catch (ServiceException e)
{
e.printStackTrace();
}
try
{
System.out.println(client.hello("dd"));
}
catch (RemoteException e)
{
e.printStackTrace();
}
}