Example #1
0
 public List <Lista> GetLeMieListe()
 {
     try
     {
         BasicHttpBinding myBinding = new BasicHttpBinding();
         myBinding.MaxReceivedMessageSize = 2147483647;
         myBinding.MaxBufferSize          = 2147483647;
         EndpointAddress          myEndpoint       = new EndpointAddress(_addr);
         ChannelFactory <IUtente> myChannelFactory = new ChannelFactory <IUtente>(myBinding, myEndpoint);
         // Create a channel.
         IUtente client = myChannelFactory.CreateChannel();
         _leMieListe = client.GetListePersonali(_username).ToList <Lista>();
         ((IClientChannel)client).Close();
     }
     catch (Exception)
     {
         //doNothing
     }
     return(_leMieListe);
 }