Tagged Questions
1
vote
0answers
41 views
JDO - java.lang.NoClassDefFoundError in Google Web Application
Im trying to make a Google Web Application in Java. I got a servlet named Get.java, a EMF.java that is taking care of the storage and a javabean, Person.java.
Get.java:
package no.nordnes;
import ...
0
votes
1answer
26 views
Agent-Modelling System on GAE
I am starting on a project to simulate agents on the google app engine. I plan to have a control panel like so:
My question is during simulation, the server has to process tasks again and again and ...
0
votes
1answer
26 views
webapp2 changes html tags in pure text
I want to make my GAE application webapp2 compatible.
This code worked great with webapp:
insert = '<p><font color="red"><b>some text</b></font></p>'
...
0
votes
0answers
24 views
App Engine doesn't run the application when Run button is pressed in launcher
I created an application as instructed in Google App Engine Docs. When I click on the Run button, it should usually go to the state where Stop and Browse buttons are active. But it returns to its ...
0
votes
3answers
109 views
Get data from webpages with Python
Looking to get data from a specific website with Python to upload onto Google App Engine. The idea is to create a database data to store the information on the server to retrieve and display in an web ...
0
votes
0answers
31 views
Request not going to correct webapp2.WSGIApplication
I have been working on developing an application using Google App Engine, and I have a separate webapp2.WSGIApplication in my main program for my API to not initiate error handling. This is what it ...
-3
votes
1answer
80 views
Which is better to create a webapp in which multiple users will sign up for events - Python or Java ? [closed]
I intend to create a webapp in which members of an organization will sign in, filter and search for events, and sign up to attend events. I'm just making this for one organization, but I'll most ...
0
votes
3answers
116 views
How to define Key Name in Datastore GAE Python?
OS Win7, GAE 1.7.6, Python 2.7.3, still learning GAE..
Working on project, which need to have input form to extend its content(name,email,phone..) with defined Key Name in Datastore, preferably to ...
0
votes
1answer
244 views
Working locally on web-application
I have been added as developer on application.
On Applications Overview this app is shown together with my other app, that I can freely access and change via Google App Engine Launcher.
Question is ...
-2
votes
1answer
50 views
Value Error Invalid literal for int() with base 10 [closed]
I'm getting the following error when I enter 1933 as the copyright_year in my form:
File "C:\programming_google_app_engine_repo\datastore\main.py", line
29, in post
book.copyright_year = ...
0
votes
2answers
171 views
My first Google App Engine/Python app
I am trying to write my first GAE/Python application that does the following three things:
Displays a form where the user can enter details about themself (index.html)
Stores the submitted form data ...
0
votes
1answer
57 views
How to get number of web hits for a given query?
I'm doing a project based on information retrieval, in that i want to know how many web hits for a given query on the web. Is it possible to get web hits from google?? if so , can any body tell me how ...
0
votes
0answers
117 views
Simplest OAuth2 client java
I wanted to implement the simplest OAuth2 client from a java web app in Google App Engine.
From an object (not servlet) I'd like to make a request to:
...
0
votes
0answers
31 views
Invalid Try/Except in webapp2 [closed]
I'm a beginer in python and GAE and was wondering why this is cousing a Error 500 ? Withouth the try catch it works fine.
class DemoHandler(BaseHandler):
def get(self, param):
param = ...
1
vote
2answers
45 views
Google App Engine Handler not displaying content
Hi I'm trying to get my Google App Engine application running on local host but I'm getting issues when I try to run it.
This is the code I'm tryng to run:
# helloworld.py
import webapp2
class ...
1
vote
1answer
105 views
Persistence manager failing to instantiate
I have a web application project using gwt and using google app engine to store my data. When I run my project I get the following error:
WARNING: Error for /proj/saat
java.lang.NoSuchFieldError: ...
0
votes
2answers
120 views
Programatically setting subdomain on Google app engine
I am having my application deployed to GAE with main domain www.mysite.com. When someone subscribe to my application, he will use email id username@company.com.
I want to capture the company from the ...
0
votes
0answers
70 views
Kinda CRM Solution with Google App Engine (?)
Dear programmers and developers,
I am doing a research on an application development. I don’t know much about Google App Engine and I come from Microsoft applications development environment.
Our ...
1
vote
1answer
81 views
Manifest app validation for Firefox Marketplace using GAE for Java
I want to upload my app to the Firefox Marketplace.
When I try to validate my app manifest (called manifest.webapp), I got the following message:
JSON Parse Error
Manifests must be served with ...
4
votes
1answer
84 views
Separating service and front-end in AppEngine causes latency
I have a set of Java AppEngine apps structured as follows:
REST service
Web Frontend
These two components are hosted on 2 separate AppEngine instances (paid), this is a standard way to design you ...
-1
votes
1answer
179 views
How to host my Java servlet web applikation
Im having some trouble hosting my web application. It runs Jetty and servlet 3.0. Since Google App Engine does not support servlet 3.0 and I dont know any other free hosting services with Eclipse ...
0
votes
4answers
372 views
How can I debug Web Application with Eclipse?
I would like to debug web application of my university mate because I am developing android application that it will interact with the web application.
I am using "debug" perspective and with andorid ...
-2
votes
1answer
40 views
How to integrate Google App Engine to an existing web application?
I am new to Google App Engine, I have an existing web application and now I need to integrate that with Google App Engine for https://developers.google.com/appengine/docs/java/mail/receiving purpose, ...
1
vote
2answers
40 views
Managing latency in URL specific way on App Engine
I'm using an app on GAE to receive emails generated by PBS pro running on a cluster. The app parses through the emails for statistics on the cluster jobs and generates a simple report.
The problem ...
1
vote
2answers
67 views
ListProperty with GoogleAppEngine
How do I assign a ListProperty with Google App Engine?
name = self.request.get("name")
description = self.request.get("description")
list = '''insert code here'''
I want list to work ...
1
vote
1answer
33 views
Image Property in Google App Engine with Python?
I have a Card Class.
class Card(db.Model):
name = db.StringProperty(required = True)
image = '''insert property here'''
description = db.TextProperty(required = True)
submitted = ...
0
votes
1answer
49 views
How to store all usernames in lowercase?
username = db.StringProperty(required = True)
^How do I store the username in lowercase, using GAE.
2
votes
1answer
66 views
GAE: User By Name / Regex Expressions [duplicate]
Possible Duplicate:
How to make case insensitive filter queries with Google App Engine?
Currently on my web app,
If I type in www.website.com/Rohit , it takes me to my desired profile ...
0
votes
3answers
62 views
How good is GoogleApp Engine to build a web application? [closed]
After quite a bit of research, and many of the blogs/posts/tutorials is out of date.
I can not figure out if Google App engine is good enough to build a webapp nowadays. Consider only Java as a ...
-2
votes
2answers
153 views
Can I use a free cloud database on Google App Engine?
I built a simple Web Application using GWT and deployed it to Google App Engine Now I want to build my database and integrate it to my website I searched for it all what I found is Google Cloud SQL
...
0
votes
1answer
74 views
Compiling/Building Google App Engine Java Project
Good day everyone!
I am a graduating student doing Google App Engine-Java Web Application.
My problem is I need to compile/build it so it will run upon click. I've been trying exporting it to a jar ...
0
votes
2answers
339 views
how to convert java web application for deploying on Google App Engine
I have created java web application using struts2 in tomcat server in eclipse. I wanted to deploy it in Google App Engine after created it. so I installed google app engine plugin for eclipse and ...
0
votes
1answer
73 views
Why Google app engine throwing persistence exception
I am writing a web application using java on the Google app engine. Everything was working ok cause I had deployed and run the application numerous times. After I updated my jdk 7 to update 6 (had a ...
0
votes
1answer
121 views
Billing is not enabling in Google App Engine account
I went through the steps of "Enable Billing" 3 times in the past 3 days and after everytime I start the enable billing on my GAE python app it tells me billing is activating then I come back and it ...
1
vote
2answers
626 views
All my Restful web services stopped working when I add new service
Ok I have a package with two restful web service class Login.class and Subscribe.class. When I deploy them to the app engine and test them they work. Now I add a new service class name User s.class to ...
1
vote
1answer
241 views
What Python Web Framework should I use with GWT to stream KML from Python Back-end?
I have a long-running process written in Python 2.7 that I would like to send KML files to my GWT application asynchronously as the KML files are generated.
I have been trying to determine what ...
1
vote
1answer
88 views
User access restriction website
I am developing an web app in Python using GAP and I have multiple users, each with it's own resources.
What I want to know is, if user A has a resource at /A/resource/ how can I restrict access to ...
1
vote
1answer
213 views
download all files as zip
I am developing a web app on google app engine using java.I have links to many files and I have to provide a link to download all these files as zip.
The one way I can think of is to download all ...
2
votes
2answers
559 views
Google App Engine WebApp/Python Custom 404 Handler Implementation
I'm using GAE, Google App Engine with Webapp using Python.
I've been trying to implement a custom error handler, or template, or along those lines. GAE provides some documentation here however it ...
0
votes
2answers
165 views
Difference between Web Application and Application?
I have built a music store program similar to iTunes in Java and and want to deploy it to the web. But when I go to Heroku App and see the demo application, its completely different. They say we need ...
1
vote
2answers
208 views
Setting cookies from webapp. Just won't work
Been banging my head against the well on this issue for a few hours. I just can't get cookies set properly. The cookie that I am setting never seems to get saved or sent back properly.
The situation ...
1
vote
1answer
193 views
Converting html to image using java on google app engine
I was trying to convert html to image using Google's API HtmlImageGenerator. But when I upload the code on Google app engine it blocks many classes like JLabel,ImageIO,JeditorPane,Dimension2D etc. So ...
0
votes
1answer
89 views
Google App Engine: Orchestrating Multiple Apps to Deliver a Composite Service
To my knowledge, GAE does not allow you to upload different Java apps (WARs) to different instances and have them all be part of the same "GAE app".
However, it would be nice to have a modularized ...
0
votes
0answers
42 views
entity by itself vs. property of an ancestor entity
i'm working on some gwt/ae/j webapp including multiple choice questions. Guess what: each Question consists of multiple Choice :D
I wonder what way of storing these questions might be the best.
I ...
0
votes
1answer
508 views
Google App Engine ImportError
I've come to run my app in development locally this morning, in the Google App Engine Launcher for Windows. Up until yesterday this has been working fine, and the code hasn't been changed since then.
...
4
votes
1answer
2k views
'unicode' object is not callable
I'm a web dev. noobie and I'm putting together a simple signup page as practice using Python on GoogleApp Engine.
When the signup form is filled out incorrectly, the program works fine. When it's ...
0
votes
2answers
52 views
Where do I keep the relevant jars so that I am able to use them when I have deployed the application?
How do I use external library while developing applications on google app engine ? Suppose I have to use javax.mail library. Where do I keep the llibrary so that when I deploy the application on the ...
0
votes
1answer
65 views
Profile Pictures Disappeared. Mystery here - GAE (Python)
Ok, first I want to state that this is Google App Engine via Python.
Any who,
These are my handlers / routing where the problem is occuring. Please read below for context and specifics:
class ...
0
votes
1answer
160 views
Tutorial for OAuth in App Engine (Python)
I know the basics of App Engine and Python. I am right now trying to write a web app to ask the user to log in with OAuth and then display their email address. Do you know any tutorial that teaches ...
2
votes
1answer
139 views
get appengine website without www
Is there a way to set up an appengine web application to deploy on a website without making the user type in www.url.com?
I have it deployed to www.url.com but url.com does not work.
Is this ...






