A Cloud deployment API partially free to use (charged depending on usage type) provided by Google
Questions tagged [gae-eclipse-plugin]
101 questions
0
votes
2 answers
Objectify 4 throwing strange error in GAE
Objectify ofy = objectifyFactory.begin();
User user= ofy.load().type(User.class).filter("userName", userName).first().now();
But eclipse is complaining that The method now() is undefined for the type Ref.
I am using objectify4 with…

Renjith
- 3,274
- 19
- 39
0
votes
1 answer
How to add custom comments to google endpoint
I am using the Google Eclipse Plugin to create an app-engine connected android app. From within the android project, I can only see generic meaningless comments about my endpoint methods. Is there a way to have my custom comments show?
(Recall that…

Pouton Gerald
- 1,625
- 22
- 32
0
votes
1 answer
serve static image along side java google-endpoint api
In Python to host a basic website on app-engine, I can put all my image files in a static directory, say img, and then in the yaml file have
- url: /img
static_dir: img
then to access my images, I simply do myid.appspot.com/img/pic.jpeg
I need to…

Pouton Gerald
- 1,625
- 22
- 32
0
votes
1 answer
Proguard crashes app when trying to send picture with camera
My app is tested and working fine. But when I try to test a release apk, it crashes. I am including my proguard file and the error log I get while testing the release apk. Basically It crashes after I take a picture thru intent and then try to send…

Pouton Gerald
- 1,625
- 22
- 32
0
votes
1 answer
Getting android emulator to talk to online endpoint
Ref to how do I point my android app to my online apengine endpoint for background info.
I have deployed my app-engine endpoint. And now I would like to have my emulator talk to it. Does anyone know how to do that? Everything works fine on…

learner
- 11,490
- 26
- 97
- 169
0
votes
1 answer
trouble getting one-to-many relationship to work on app-engine and JPA
I have a one-to-many relationship between Book and Chapter. I am able to create a book object and add chapters to it successfully (I look in the datastore and see my creation). However, after a fetch a book if I try to loop through the chapters, I…

learner
- 11,490
- 26
- 97
- 169
0
votes
1 answer
Why is this Google App Engine application unexpectedly redirecting to google login page?
I deployed a small application that I created using Java and Facebook Javascript SDK.
The app works fine till it opens my first page idex.jsp. Here, I have a submit button with the name "Enter".
When I click on this, it takes me to Google account's…

Nikhil Thallam
- 15
- 4
0
votes
1 answer
Do static and resource file sets in Google App Engine config interact?
The Google App Engine appengine-web.xml configuration file allows you to specify which files are static content and which files are resources. When you upload your app to Google only the content designated static will be placed on static content…

Chuck
- 1,850
- 2
- 17
- 28
0
votes
2 answers
deploying gae to development server stopped working
I'm working through a test GAE Java project which was working fine but I decided to look at adding GWT to the same project. I then decided to stick with the GAE stuff I was learning and decided to remove GWT. The problem is I can't now deploy to…

tech1
- 11
- 1
- 4
0
votes
1 answer
GAE ServletContextListener
I tried adding a class to my GAE project, to implement the ServletContextListener, however when I add a new class and try to pick from the superclass browser, it doesn't list ServletContextListener as a choice.
I installed Eclipse Juno (Mac 64 Bit),…

RobbiewOnline
- 1,350
- 1
- 16
- 36
-1
votes
1 answer
Cannot Deploy Servlet Application on Google App Engine
At first I have successfully deployed it but when running it has a problem is that it cannot found my servlet file to forward the page then I realized that I forgot to configure a servlet in the web.xml file thus I add servlet tag to web.xml file…

cherry
- 37
- 1
- 1
- 9