[appengine-java] Re: JMS Queue service in Google App Engine

2011-12-18 Thread suresh ashok
Hi, I am just looking to send the Message String in the JMS Queue and retrieve it later when required, ie., Getting the user input and access that input and save it in JMS queue and later shows this string to user again.is it possible to do like this? the above given link seems to be used to assig

[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

[appengine-java] Re: Basic Question Regarding Deploying the apps with Google Engine

2011-12-18 Thread suresh ashok
Simon, I can able to get the codes for the Task Queue but not sure how to run the code so that i can able to send the message/receive the message from the Task Queue,its message not a mail. Regards, suresh On Dec 16, 3:00 pm, suresh ashok wrote: > Simon, > > Thanks for the valuable feedback on

[appengine-java] Re: Basic Question Regarding Deploying the apps with Google Engine

2011-12-18 Thread suresh ashok
Hi Simon, I can able to find the codes in the above said webpage, but their is no proper explanation of how to run the code so that i can send the message/receive the message using Task Queue configuration, Can u guide in this ? Regards, Suresh On Dec 16, 3:00 pm, suresh ashok wrote: > Simon,

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] Entity-User-Permission modelling with JDO. Help!

2011-12-18 Thread Chuck Lega
Hi, I originally posted this in the appenine-group, but figured that it maybe better belongs in this group I am working on a project where want to be able to grant different permissions for users on entities, say read/write. I guess this is a common scenario, and maybe this has been sorted out

[appengine-java] Problem sending zip attachment by email

2011-12-18 Thread Nico Verwer
I am trying to zip a number of HTTP documents, and send these by email as an attachment (one zip-file). There are several questions about similar things on this group and elsewhere, but the problem that I have does not seem to be dealt with. I keep getting javax.mail.SendFailedException: Send f

[appengine-java] Re: unable to send a pdf as attachment in mail

2011-12-18 Thread Nico Verwer
>From other threads in this and other groups / sites, it seems that attachment.setContent() does not work properly. What might work is using a DataHandler: MimeBodyPart attachment = new MimeBodyPart(); attachment.setFileName("whatever"); //attachment.setDisposition(Part.A

[appengine-java] Re: Integrating Google Hangout (Google+) with GAE Apps and GWT

2011-12-18 Thread dreamer
One alternative could be HTML5 canvas for blackboard and HTML5 Audio / Vedio, but "circles" is the one exactly how I visualized my solution, It would be awesome if there is some easy way to bring that feature into AppEngine/GWT applications. http://schoolk12.appspot.com/ On Dec 17, 10:33 am, dre

[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