You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to google-we...@googlegroups.com
It's been answered in your SO question. GWT does not "submit" your JSESSIONID token, this is done by the browser using cookies automatically. If the browser is not sending it, you're either submitting your form to a different location than the cookie origin, or your cookie is expired.
Sincerely,
Joseph
Carlos
unread,
May 4, 2012, 11:28:11 AM5/4/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to google-we...@googlegroups.com
I have found my error. It fails in development mode in local and not when I deploy it in GAE. My fault was that when create the url to the blobservice (
blobstoreService.createUploadUrl("/upload"))
it returns a url like this: http://my_host_name:8888/_ah/key_to_blob and it should return http://127.0.0.1:8888/_ah/key_to_blob . I have fixed this when I'm working on local, and all works ok. :D