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 App Engine
I am a newbie in Google App Engine and am experimenting on Task Queue.
Have added the following code in my servlet:
Queue queue = QueueFactory.getDefaultQueue();
TaskOptions lUrl = TaskOptions.Builder.url("/sign");
queue.add(lUrl);
When i deploy the application in google app engine, it shows the queue
and says "no task defined for the queue" ?
What am i missing? what is the code that i need to add?