public static System.Data.DataTable ValidarAplicacion(string Par_Event_Tag, System.Guid Par_AppInstanceGUID, string Par_LoginHost, string Par_LoginIP)
        {
            System.Data.DataTable dttResult = null;

            try
            {
                using (Epiron.Bases.ServiceProxy.wsAcceso wService = new Epiron.Bases.ServiceProxy.wsAcceso())
                {
                    //if (_Proxy != null)
                    //    wService.Proxy = _Proxy;
                    //if (_Credentials != null)
                    //    wService.Credentials = _Credentials;

                    wService.Url = _AccesoConnectorURL;
                    dttResult = wService.ValidarAplicacion(Par_Event_Tag, Par_AppInstanceGUID, Par_LoginHost, Par_LoginIP);
                }
            }
            catch (Exception ex)
            {
                throw SetEx(ex);
            }

            return dttResult;
        }
Exemple #2
0
        public static System.Data.DataTable ValidarAplicacion(string Par_Event_Tag, System.Guid Par_AppInstanceGUID, string Par_LoginHost, string Par_LoginIP)
        {
            System.Data.DataTable dttResult = null;

            try
            {
                using (Epiron.Bases.ServiceProxy.wsAcceso wService = new Epiron.Bases.ServiceProxy.wsAcceso())
                {
                    //if (_Proxy != null)
                    //    wService.Proxy = _Proxy;
                    //if (_Credentials != null)
                    //    wService.Credentials = _Credentials;

                    wService.Url = _AccesoConnectorURL;
                    dttResult    = wService.ValidarAplicacion(Par_Event_Tag, Par_AppInstanceGUID, Par_LoginHost, Par_LoginIP);
                }
            }
            catch (Exception ex)
            {
                throw SetEx(ex);
            }

            return(dttResult);
        }