private PawnCouchRequest CreateRequest(string postUrl, bool useNewSession)
        {
            var security             = new PawnCouchSecurity(_connUri, _userId, _password);
            PawnCouchRequest request = security.GetRequest(postUrl, useNewSession);

            return(request);
        }
        public Cookie GetCouchSession()
        {
            var security = new PawnCouchSecurity(_connUri, _userId, _password);

            return(security.GetSession());
        }