Example #1
0
        public override RoomAccess Join(string nick, string topic, Ice.Identity listenerIdentity, Ice.Current current)
        {
            lock (this)
            {
                if (string.IsNullOrEmpty(nick))
                {
                    throw new IChatException("Nick cannot be null");
                }
                if (string.IsNullOrEmpty(topic))
                {
                    throw new IChatException("Topic cannot be null");
                }

                ListenerPrx listener = ListenerPrxHelper.uncheckedCast(current.con.createProxy(listenerIdentity));

                RoomPrx roomProxy = RoomFactory.Instance.GetRoom(nick, topic, listener);

                Console.WriteLine("Nick: {0}, topic: {1}, listenerIdentity: {2}, {3}", nick, topic, listenerIdentity.name, listenerIdentity.category);

                return(new RoomAccess(roomProxy, topic));
            }
        }
Example #2
0
 public static ListenerPrx checkedCast(Ice.ObjectPrx b)
 {
     if(b == null)
     {
         return null;
     }
     ListenerPrx r = b as ListenerPrx;
     if((r == null) && b.ice_isA("::Chat::Listener"))
     {
         ListenerPrxHelper h = new ListenerPrxHelper();
         h.copyFrom__(b);
         r = h;
     }
     return r;
 }
Example #3
0
 public static ListenerPrx checkedCast(Ice.ObjectPrx b, _System.Collections.Generic.Dictionary<string, string> ctx)
 {
     if(b == null)
     {
         return null;
     }
     ListenerPrx r = b as ListenerPrx;
     if((r == null) && b.ice_isA("::Chat::Listener", ctx))
     {
         ListenerPrxHelper h = new ListenerPrxHelper();
         h.copyFrom__(b);
         r = h;
     }
     return r;
 }
Example #4
0
 public static ListenerPrx uncheckedCast(Ice.ObjectPrx b, string f)
 {
     if(b == null)
     {
         return null;
     }
     Ice.ObjectPrx bb = b.ice_facet(f);
     ListenerPrxHelper h = new ListenerPrxHelper();
     h.copyFrom__(bb);
     return h;
 }
Example #5
0
 public static ListenerPrx uncheckedCast(Ice.ObjectPrx b)
 {
     if(b == null)
     {
         return null;
     }
     ListenerPrx r = b as ListenerPrx;
     if(r == null)
     {
         ListenerPrxHelper h = new ListenerPrxHelper();
         h.copyFrom__(b);
         r = h;
     }
     return r;
 }
Example #6
0
 public static ListenerPrx read__(IceInternal.BasicStream is__)
 {
     Ice.ObjectPrx proxy = is__.readProxy();
     if(proxy != null)
     {
         ListenerPrxHelper result = new ListenerPrxHelper();
         result.copyFrom__(proxy);
         return result;
     }
     return null;
 }
Example #7
0
 public static ListenerPrx checkedCast(Ice.ObjectPrx b, string f, _System.Collections.Generic.Dictionary<string, string> ctx)
 {
     if(b == null)
     {
         return null;
     }
     Ice.ObjectPrx bb = b.ice_facet(f);
     try
     {
         if(bb.ice_isA("::Chat::Listener", ctx))
         {
             ListenerPrxHelper h = new ListenerPrxHelper();
             h.copyFrom__(bb);
             return h;
         }
     }
     catch(Ice.FacetNotExistException)
     {
     }
     return null;
 }
Example #8
0
 public static ListenerPrx checkedCast(Ice.ObjectPrx b, string f)
 {
     if(b == null)
     {
         return null;
     }
     Ice.ObjectPrx bb = b.ice_facet(f);
     try
     {
         if(bb.ice_isA("::Chat::Listener"))
         {
             ListenerPrxHelper h = new ListenerPrxHelper();
             h.copyFrom__(bb);
             return h;
         }
     }
     catch(Ice.FacetNotExistException)
     {
     }
     return null;
 }