private bool ValidateServiceRequest(Header requestHeader)
        {
            _commonFacade = new CommonFacade();
            string doNotCallProfilePath = _commonFacade.GetProfileXml("DoNotCallProfile");
            bool   valid = _commonFacade.VerifyServiceRequest <Header>(requestHeader, doNotCallProfilePath);

            return(valid);
        }