Beispiel #1
0
 /**
  * This method registers the interceptors.
  *
  * @param info an <code>ORBInitInfo</code> value
  */
 public void post_init(ORBInitInfo info) {
   try {
     info.add_client_request_interceptor(new ClientTestInterceptor());
   } catch (DuplicateName e) {
     e.printStackTrace();
   }
 }
Beispiel #2
0
  /**
   * This method registers the interceptors.
   *
   * @param info an <code>ORBInitInfo</code> value
   */
  public void post_init(ORBInitInfo info) {
    try {
      slotID = info.allocate_slot_id();

      info.add_server_request_interceptor(new SInterceptor(((ORBInitInfoImpl) info).getORB()));
    } catch (DuplicateName e) {
      e.printStackTrace();
    }
  }