[google-appengine] Updating problem with unkowned relation

2011-08-29 Thread Bat
I've 2 simple classes : public class Student { @PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY) com.google.appengine.api.datastore.Key key; @Persistent public String firstName; @Persistent public String lastName; } And public class Teacher { @PrimaryKey @Persiste

[google-appengine] Problem with blobstoreService.getUploadedBlobs(request)

2011-09-28 Thread Bat
ervers, if the form uploads no file, the method getUploadedBlobs seems to return a HashMap with wrong data. Could you help me? Or tell me if this behaviro is normal... Many thanks, bat -- You received this message because you are subscribed to the Google Groups "Google App Engine"

[google-appengine] Re: Problem with blobstoreService.getUploadedBlobs(request)

2011-09-29 Thread Bat
I think that in all cases, if I send a form without file inside, google blobstore create an empty blob... I can see it in Blobstore vievwer. This strange behavior is only on the google server, not on localhost... On 28 sep, 17:25, Bat wrote: > Hi, > > I've a problem wi

[google-appengine] Re: Problem with blobstoreService.getUploadedBlobs(request)

2011-09-29 Thread Bat
Indeed... Does anyone solve that problem? On 29 sep, 13:22, Stuart Langley wrote: > Probably you are > seeinghttp://code.google.com/p/googleappengine/issues/detail?id=4548 -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this

[google-appengine] Attachment in mail

2011-12-12 Thread Bat
Hi, One of my servlet creates CSV content in a String variable. I'd like to send this CSV like an attachment file but everybody knows the limitations of GAE : it's impossible to create a file. So, I decided to find an another solution. Mine is to attach the CSV string like that : String csv = ""

[google-appengine] One-to-many relation problem

2012-03-30 Thread Bat
ay } } } The problem is : the Entry has the field "operation" always null. This field is from the relation one-to-many. Maybe this field is still null because is class type is "parent" of ExtendedOp? Could you help me to solve

[google-appengine] One-to-many relation problem

2012-03-30 Thread Bat
System.out.println("perfect"); //never display } } } The problem is : the Entry has the field "operation" always null. This field is from the relation one-to-many. Maybe this field is still null because is class type is "parent" of Extended