Esempio n. 1
0
 public ProxyUploadSb()
 {
     if (GlobalAppConfig.RunningMode == 2)
     {
         Service = Function.UnitySection("unity.xml", "unityReport", "uploadsb").Resolve <ItfUploadSb>();
     }
     else if (GlobalAppConfig.RunningMode == 3)
     {
         try
         {
             Service = WcfEndpoint.Fac <ItfUploadSb>().CreateChannel(WcfEndpoint.HisEndpointAddress(this.GetType().Name));
             Service.Verify();
         }
         catch
         {
             if (WcfEndpoint.AllowChange)
             {
                 WcfEndpoint.ChangeServer();
                 Service = WcfEndpoint.Fac <ItfUploadSb>().CreateChannel(WcfEndpoint.HisEndpointAddress(this.GetType().Name));
             }
         }
     }
 }