[appengine-java] Re: Mail Service - get User which belongs to email address

2010-07-27 Thread David Sowerby
hi Lars Would this help you/ http://code.google.com/appengine/docs/java/users/ On Jul 26, 10:19 pm, vogella lars.vo...@googlemail.com wrote: Hi, I have a small Todo application written. I would like to use the Mail service to receive new todos items via email. I can get the sender of the

[appengine-java] Re: Datastore.Text didn't work after deploy

2010-07-27 Thread poe
I still don't know what the problem is. Please, some help. :-) On 25 Jul., 11:25, poe stefan.poe...@googlemail.com wrote: Nope, that didn't solve the problem. Another strange thing is, when I query on the entities I only get one result on the appengine server, locally I get all results that

[appengine-java] Re: Datastore.Text didn't work after deploy

2010-07-27 Thread Ian Marshall
Have you got any code fragments? On Jul 27, 9:03 am, poe stefan.poe...@googlemail.com wrote: I still don't know what the problem is. Please, some help. :-) On 25 Jul., 11:25, poe stefan.poe...@googlemail.com wrote: Nope, that didn't solve the problem. Another strange thing is, when I

[appengine-java] Re: Datastore.Text didn't work after deploy

2010-07-27 Thread poe
The Class for the datastore: @PersistenceCapable public class GuestbookEntry { ... @persistent(defaultFetchGroup =true) private Text content; ... } Thats how I store it: public void add(String title, String content) { PersistenceManager pm = PMF().get().getPersistenceManager();

[appengine-java] Index over a list property on GAE not working as expected

2010-07-27 Thread Miroslav Genov
Hello, I'm encountering a strange issue with datastore list property indexes when I'm trying to use them in a full-text search queries. Here are my index definition, my model definitions, my sample code and my test code, and the error that I'm getting when my app is deployed on GAE. Here

[appengine-java] Re: Highly Frustrated By Entity Groups / Transactions

2010-07-27 Thread Bill
And as you say, this limits the concurrency of changes to Elements to a few writes per second per Domain which would be very bad in an enterprise system. It all depends on the granularity of your element groups.  If you can   break them down sufficiently then you can still use

[appengine-java] Re: Datastore.Text didn't work after deploy

2010-07-27 Thread Ian Marshall
1. I know that the Google team will say that the dev app server is only an approximation to the GAE cloud 2. I always use transactions when I am persisting. 3. I don't know how you are persisting your text. Is it like this? String sContent = ... Text txtContent = null; if (sContent

[appengine-java] Re: Mail Service - get User which belongs to email address

2010-07-27 Thread vogella
Hi David, ah, I see. I can get the user via new User(email, gmail.com); Thanks, Lars On Jul 27, 8:24 am, David Sowerby david.sowe...@virgin.net wrote: hi Lars Would this help you/  http://code.google.com/appengine/docs/java/users/ On Jul 26, 10:19 pm, vogella lars.vo...@googlemail.com

[appengine-java] Re: Reading blobs larger an 1MB

2010-07-27 Thread korey_sed
So that seemed to be my mistake. The BlobstoreService.MAX_BLOB_FETCH_SIZE is really the BlobstoreService.TOO_MUCH_BLOB_FETCH_SIZE since that is what I was using as my read size in my last attempt. Once I lowered that, then it started to with using blobstoreService.fetchData. Disaster averted.

[appengine-java] Re: Datastore.Text didn't work after deploy

2010-07-27 Thread poe
Hi Ian, thanks for your reply. 1. :-/ 2. What is the difference? 3. Thats how i did it, yes. Is there another way to story text with more than 500 letters? Simple String won't work as far as I know. Thanks Poe On 27 Jul., 12:45, Ian Marshall ianmarshall...@gmail.com wrote: 1.  I know that

[appengine-java] Re: Highly Frustrated By Entity Groups / Transactions

2010-07-27 Thread jd
On Jul 27, 5:24 pm, Bill bill.milli...@gmail.com wrote: Not in order, it can't.  The parent must know the children in order to accomplish that. Try putting some kind of index in the child - a time stamp or order field (100, 200...) Sounds like you have architected your solution to do too

[appengine-java] Re: Highly Frustrated By Entity Groups / Transactions

2010-07-27 Thread Bill
Rather than rail against jd's rather interesting straw men (I'm talking about data storage, not blenders, etc.) all I have to say is this: if it is improving at an amazing pace then it is my hope that this issue will be addressed and fixed by google so that it may continue to improve at an

Re: [appengine-java] Re: Highly Frustrated By Entity Groups / Transactions

2010-07-27 Thread John Patterson
On 27 Jul 2010, at 21:18, Bill wrote: That's the way it is because that's the way we say it has to be is not an answer. There is no reason why selecting an object from one group is going to impact insert or update in a different entity group It doesn't! You just cannot do it in the same

Re: [appengine-java] Re: Dance Dance Robot error / Channel API

2010-07-27 Thread Don Schwarz
Sorry, to be clear, I meant that you should create an /_ah/channel directory at the top of your war and copy dev-channel-js.js so it is a file named 'jsapi' in that /_ah/channel directory. This is the path that will work automatically in the 1.3.6 DevAppServer and in prod when this feature

[appengine-java] Re: Datastore.Text didn't work after deploy

2010-07-27 Thread Ian Marshall
What is the difference? --- The GAE/J and DataNucleus documentation are the authorities for me. I suppose that using a transaction or not makes no difference when persisting a single entity as the sole data exchange with the datastore. I do everything within a transaction for

[appengine-java] Google Translate in GAE

2010-07-27 Thread Prateek
Dear GAE, I am looking for an Functionality to translate my simple POJO class Bean to User Specified Language. Was wondering whether GAE has any inbuilt API that i can use to translate my data to particular language like German, French , Bengali, Nepali, Etc. I have looked up with the

[appengine-java] VMware + Google App Engine

2010-07-27 Thread Robert Lancer
Since Google IO we haven't heard much about the VMware + GAE partnership, not to rush anybody but an update would be appreciated. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to

[appengine-java] Sharding and managing very often updated variable.

2010-07-27 Thread k'
Hello there, I'm new to App engine and I would like to know what would be the best strategy to solve this problem: You have one record in DB that represents pool of available enemies in the game which is shared by all clients i.e. clients starts his game and he gets some enemies from pool. When

[appengine-java] Re: Spring Security + GAE

2010-07-27 Thread Jotie
I would like to see an example for configuring spring security with GAE Anyone can help? On Jun 12, 6:26 am, Sudhir Ramanandi sramana...@gmail.com wrote: I have Spring security running properly on GAE...  But I don't use GWT.. What help are you looking for... On Fri, Jun 11, 2010 at 11:39

[appengine-java] Re: Spring Security + GAE

2010-07-27 Thread Jotie
I would like to see an example on how to setup spring security 3.0.3 in GAE Anyone can help? On Jul 7, 8:45 am, oserra oscar.serrano.sacris...@gmail.com wrote: And could you please provide us an example of your dispacher- servlet.xml (or whateverspringfile you use to configurespring-security)?

Re: [appengine-java] cron log

2010-07-27 Thread Ikai L (Google)
What does your cron job do? On Thu, Jul 22, 2010 at 11:22 AM, Andrei gml...@gmail.com wrote: I have cron job that runs every 2 hours, but it ran 20 times in last few minutes with message Request was aborted after waiting too long to attempt to service your request. This may happen

Re: [appengine-java] Google Translate in GAE

2010-07-27 Thread Ikai L (Google)
The only API right now is the AJAX API (as you mentioned) http://code.google.com/apis/ajaxlanguage/ You'll want to make sure you're following the terms of service of the API if you decide to do anything like caching. On Tue, Jul 27, 2010 at 9:24 AM, Prateek bittooagar...@gmail.com wrote: Dear

Re: [appengine-java] VMware + Google App Engine

2010-07-27 Thread Ikai L (Google)
The partnership right now, if I'm not mistaken, is more of a partnership with SpringSource. At any rate, I don't have any news to report - for updates, stay tuned and subscribe to the VMWare blog: http://blogs.vmware.com/console/2010/05/google-and-vmwares-open-paas-strategy.html And the App

[appengine-java] Re: Index over a list property on GAE not working as expected

2010-07-27 Thread Stephen Johnson
Hi Miroslav, Yes, I would say it is working on your local dev. because you have automatic indexes enabled and so is automatically creating the necessary index for you but then you are not deploying this automatically generated index. It looks like your code splits search phrases into individual

Re: [appengine-java] Re: Desarrollo de Aplicaciones con Eclipse

2010-07-27 Thread Edixon Polanco
Grcias por su apoyo, tomare en cuenta todas sus recomendaciones Saludos El 26/07/10, Gilbert Corrales gcorra...@gmail.com escribió: Creo q a lo q se refiere Nicolas es que una applicacion q corre en appengine tiene ciertas características especiales (algunas de ellas restricciones, otras,

[appengine-java] Re: Dance Dance Robot error / Channel API

2010-07-27 Thread GoSharp Lite
Wonderful! It seems multiple channels can be created with channel API. Wish we can try it on production server. On Jul 27, 11:14 pm, Don Schwarz schwa...@google.com wrote: Sorry, to be clear, I meant that you should create an /_ah/channel directory at the top of your war and copy