Ejemplo n.º 1
0
  public static void main(String args[]) {
    try {

      // System.out.println("Hello");
      ServiceInterface s = (ServiceInterface) Naming.lookup("Hello");
      s.increaseStaticInt();
      ;
      System.out.println(s.getStaticInt());
      ;

      // s.setStaticInt(100);

      System.out.println(s.getStaticInt());
    } catch (Exception e) {
      System.out.println("Client Exception :" + e);
    }
  }