Exemple #1
0
        public SearchAllRulesRes SearchAllRules()
        {
            String strErrorResut = String.Empty;

            SearchAllRulesReq     req = new SearchAllRulesReq();
            SearchAllRulesRes     res = new SearchAllRulesRes();
            SearchAllRulesService svc = new SearchAllRulesService();

            req.SecurityProviderName = SecurityProviderName;



            try
            {
                res = svc.Execute(req);
            }
            catch (Exception ex)
            {
                strErrorResut = Fwk.Exceptions.ExceptionHelper.GetAllMessageException(ex);
            }


            Assert.AreEqual <String>(strErrorResut, string.Empty, strErrorResut);

            return(res);
        }
Exemple #2
0
        public void SearchAllRulesService_No_Service()
        {
            String strErrorResut = String.Empty;

            SearchAllRulesReq     req = new SearchAllRulesReq();
            SearchAllRulesRes     res = new SearchAllRulesRes();
            SearchAllRulesService svc = new SearchAllRulesService();

            //res.ContextInformation.CompanyId = "pelsoft";
            //req.SecurityProviderName = "tesa";
            req.SecurityProviderName = SecurityProviderName;

            try
            {
                res = svc.Execute(req);
            }
            catch (Exception ex)
            {
                strErrorResut = Fwk.Exceptions.ExceptionHelper.GetAllMessageException(ex);
            }


            Assert.AreEqual <String>(strErrorResut, string.Empty, strErrorResut);
        }
Exemple #3
0
        public SearchAllRulesRes SearchAllRules()
        {
            String strErrorResut = String.Empty;

            SearchAllRulesReq req = new SearchAllRulesReq();
            SearchAllRulesRes res = new SearchAllRulesRes();
            SearchAllRulesService svc = new SearchAllRulesService();
            req.SecurityProviderName = SecurityProviderName;
  


            try
            {

                res = svc.Execute(req);
                

            }
            catch (Exception ex)
            {
                strErrorResut = Fwk.Exceptions.ExceptionHelper.GetAllMessageException(ex);
            }


            Assert.AreEqual<String>(strErrorResut, string.Empty, strErrorResut);

            return res;
        }
Exemple #4
0
        public void SearchAllRulesService_No_Service()
        {
            String strErrorResut = String.Empty;

            SearchAllRulesReq req = new SearchAllRulesReq();
            SearchAllRulesRes res = new SearchAllRulesRes();
            SearchAllRulesService svc = new SearchAllRulesService();
            //res.ContextInformation.CompanyId = "pelsoft";
            //req.SecurityProviderName = "tesa";
            req.SecurityProviderName = SecurityProviderName;

            try
            {

                res = svc.Execute(req);


            }
            catch (Exception ex)
            {
                strErrorResut = Fwk.Exceptions.ExceptionHelper.GetAllMessageException(ex);
            }


            Assert.AreEqual<String>(strErrorResut, string.Empty, strErrorResut);


        }