Tagged Questions

2
votes
5answers
103 views

Help to create a generic class to avoid code duplication

I have a simple problem try to stay DRY using Appengine. The 2 functions below are identical except for the object sent as parameter. In reality I have 15 functions like this. I am try to find a way …
0
votes
1answer
34 views

Obtaining clients IP address in GWT and Google App Engine

I have a need to capture IP address of the client in my GWT/GAE (Java) application. Since GAE does not support full set of java.net APIs I cannot do code such as snippet below. Can anyone suggest …
0
votes
2answers
26 views

A static file upload (text or HTML) cause full deployment in Google App Engine?

I have to change some contents in a html or text file. Or I have to upload an image. I have to re-deploy my application on GAE. Is there any way that I can upload such static files to the desire …
0
votes
1answer
41 views

How to stop Jetty webserver in Google App Engine

If you are doing local development I want to know how we can stop/kill Jetty webserver? I have to close my Eclipse IDE whenever I need to do that. Is there any other way to do it? Or we have to kill …
0
votes
1answer
30 views

Troubleshooting DataNucleus JDO

I am using the Eclipse plugin for Google App Engine 1.2.6 and Web Toolkit 1.7.1 DataNucleus/JDO is driving me mad! I suspect either my creates are silently erroring out before being written AND/OR …
4
votes
1answer
75 views

Java PDF Library that works on GAE?

Since GAE has severe restrictions like - "A Java application cannot use any classes used to write to the filesystem"... Is there a good Java PDF library that can write the PDF to memory for streaming …
0
votes
1answer
157 views

Error saving image into Google App Engine/Java

I'm trying to make following JDO entity in GAE/J (I'm using Gilead). package test.domains; import java.io.Serializable; import javax.jdo.annotations.IdGeneratorStrategy; import …
0
votes
3answers
221 views

How to set a complex custom crontab in google-app-engine (java)?

I am building an app for which I need to set up cron jobs. What I want to do is to set the specific minutes in a hour where specific crons should run. For instance: Task1 at 1st minute of the hour …
0
votes
3answers
117 views

GWT + JDO + ArrayList

Hi, I'm getting a Null ArrayList in a program i'm developing. For testing purposes I created this really small example that still has the same problem. I already tried diferent Primary Keys, but the …
1
vote
3answers
53 views

How to check in Java App Engine if we are on development workstation

Hello there, I'd like to do this in Java Google App Engine if(developmentMode) foo(); else bar(); Does anyone know a good way to do this? Daniel
0
votes
1answer
94 views

JDO, GAE: Load object group by child’s key

I have owned one-to-many relationship between two objects: @PersistenceCapable(identityType = IdentityType.APPLICATION) public class AccessInfo { @PrimaryKey @Persistent(valueStrategy = …
0
votes
1answer
82 views

Roles in Java Google App Engine

Does anyone have any recommendations for me on how to manage user roles on the Java version of Google App Engine?
2
votes
1answer
69 views

How to enforce unique field value in java Google App Engine

Hello there, I am try to find out how to enforce uniqueness in fields other than the unique id. Example: @PersistenceCapable(identityType = IdentityType.APPLICATION) public class User implements …
2
votes
2answers
971 views

Google AppEngine Session Example

I just enabled Session in my Google AppEngine/Java + GWT application. And how do I use it? How do I get session ID and play will all good stuff from it? Are there any real examples of simple login …
0
votes
2answers
111 views

[app-engine-java-groovy] One-to-Many relationship. Select objects from datastore.

Hi. I've omitted some code(package declarations, imports, other fields) for shortness. I have here simple One-to-Many relation. It worked fine till this moment. @PersistenceCapable(identityType = …

1 2 next
15 30 50 per page