Re: [appengine-java] Re: issue with task queue implementation

2011-12-19 Thread suresh ashok
Vik, Any idea about how to call the java Webservices in GAE. Regards, Suresh On Dec 19, 4:51 pm, Vik wrote: > hi > > I found the issue. looks like the long emailid list was a problem.  to fix > it i changed the request from get to post and it worked, > Thankx and Regards > > Vik > Founderhttp:/

Re: [giannim] [appengine-java] Re: issue with task queue implementation

2011-12-19 Thread Vik
hi I found the issue. looks like the long emailid list was a problem. to fix it i changed the request from get to post and it worked, Thankx and Regards Vik Founder http://www.sakshum.org http://blog.sakshum.org On Mon, Dec 19, 2011 at 5:07 AM, Gianni Mariani wrote: > > It appears as if the

[appengine-java] Re: issue with task queue implementation

2011-12-18 Thread suresh ashok
Hi, Can u guide me in implementing the task Queue, I am new to GAE and is it possible to send/receive messages via Task Queue, I am asking about message String not an Mail. Regards, Suresh On Dec 17, 11:56 pm, Vik wrote: > Hie > > From my GAE code I am calling as > > Queue queue = QueueFactory

Re: [giannim] [appengine-java] Re: issue with task queue implementation

2011-12-18 Thread Gianni Mariani
It appears as if the URL being constructed when the GET request is passed to the task queue system is being rejected. Any chance you can print out the string "emailList" - I'm curious what is causing the problem. BTW the typo in Invalud will be fixed - remider to self, learn to spell. On Mon, De

[appengine-java] Re: issue with task queue implementation

2011-12-18 Thread Vik
Well I found the problem in this. It is caused by the param I am passing though not sure if its a bug in GAE. I am passing as: String emailList = emails.substring(0, 51); queue.add(withUrl("/queue/InviteFriendsQueue").param("ids", emailList).method(Method.GET)); emailList is not null and non emp