Trying to read cookies out of one Endpoint method like this:

        @ApiMethod(httpMethod = "get")

       public void getCookies(HttpServletRequest req) {

                log.info("req: " + req);

               Cookie[] cookies = req.getCookies();

               for (Cookie cookie : cookies) {

                       log.info("cookie: " + cookie.getName() + " " + cookie
.getValue());

               }

       }

No matter what i try, the cookies are NULL. Any ideas?

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to