0
votes
1answer
14 views

GAE - Unable to instantiate - java.lang.RuntimeException

I do not know how to debug the following error : (could you explain me how to debug this kind of error ?). One error is related to Guice Filter, and the other one is related to MessageBodyReader. ...
1
vote
0answers
25 views

google app engine gwt application doesnt load with custom domain

I have deployed my app on google app engine here is the link Than I have done all the stuff to create custom domain link to my app with custom domain Obviously the static data from app is loaded ...
0
votes
1answer
15 views

Selecting GWT module to compile for deployment to App Engine

I introduced additional GWT modules where previously there's only been one in my GWT/GAE project. When deploying to App Engine via Google Plugin for Eclipse I noticed that the plugin compiles all the ...
0
votes
0answers
28 views

Saving GWT form data into different application

I have a GWT application which has form. If user enters data and submit i have to store the data into google datastore and also an JSP application which is running on tomcat server. I found this is ...
0
votes
1answer
37 views

SerializationException while desalinization com.google.appengine.api.datastore.Key GWT

I have a RPC-Call : @Override public void onSuccess(Void result) { Window.alert("SuccessElse"); userService.getUser("103419018118650635943", new AsyncCallback<User>() { ...
1
vote
1answer
41 views

Error connecting to Google Calendar

I'm trying to connect to Google Calendar using Oauth 2.0. Two days ago worked fine, however now throws an exception: "Caused by: java.lang.NoSuchMethodError: ...
1
vote
1answer
46 views

Load jar into project with maven

My app needs to serve a servlet like this: serve("_ah/admin/datastore*").with(DatastoreViewerServlet.class); However, this DatastoreViewerServlet is located in a runtime sdk located in my machine: ...
-1
votes
1answer
33 views

Populate data in dropdown from google datastore

Hi I have gwtp google appengine application which has a search field which is a dropdown. The data in the dropdown has to come from the datastore. But my problem is this data in the datastore is not ...
1
vote
0answers
22 views

custom-domain https requests aborted on appengine app

I have recently enabled https on custom domain for my appengine app. Everything worked just fine for a couple of days. After a while, on some machines requests started getting aborted. I observed ...
0
votes
1answer
58 views

Error:The import com.google.appengine.api.datastore cannot be resolved JPA GAE GWT

Error in Development Mode [ERROR] [cbd] - Line 15: The import com.google.appengine.api.datastore cannot be resolved User.java @Entity public class User implements Serializable { ...
-2
votes
0answers
10 views

Socialauth Example using GWT GAE [closed]

I have a web application and I am using GWT/GAE I want to integrate with Socialauth. Are there any reference implementations using above technologies ? Using social login/authentication The sample ...
1
vote
2answers
42 views

ClassNotFoundException: com.google.gwt.junit.server.JUnitHostImpl

How do I get rid of this error: java.lang.ClassNotFoundException: com.google.gwt.junit.server.JUnitHostImpl [ERROR] at java.net.URLClassLoader$1.run(URLClassLoader.java:359) [ERROR] at ...
0
votes
0answers
41 views

GWT/GAE 1MB .cache.js file is not gzip compressed

I'm using GWT's splitting method to split the code into multiple fragments. My app is served by a Google App engine server and uses gzip compression to send the fragments. The problem is that one of ...
-1
votes
0answers
38 views

Best route for robust ERP system development from scratch on GAE? [closed]

The focus will be the development of a core system with ERP capabilities and big data analysis, for government use on education performance tracking and management of massive academic history and ...
0
votes
1answer
39 views

How to create a file and make it downloadable in GWT?

I want to export the data in a celltable to a CSV file. I understand this must be done in the server side. I'm a bit lost on how to create a file, write the lines and then make the client download it. ...
0
votes
1answer
16 views

What entries to add to app.yaml to handle expiration of files of a GWT client app?

Google give the following example of setting up an Apache server to serve a GWT app. What is the equivalent entries to an AppEngine (GAE) app.yaml file? <Files *.nocache.*> ExpiresActive on ...
1
vote
4answers
108 views

Download a generated pdf from client

I'm new in stackoverflow thus this is my first post. Please excuse my poor English... I have spent hours on related topics but no anwser met my needs. I'm working on an Address book and I want my ...
0
votes
1answer
37 views

GWT - admin module protected by authentication?

I have a default GWT + app engine project. We get a GWT entry point by default. Is it possible to create a second GWT entry point, one that is only loaded by html pages which are protected behind ...
-4
votes
0answers
39 views

How to make my appspot application to run offline? [closed]

I want to have the posibility of "installing" my appengine application in the PC, like a Chrome App, but to be synced also to my web app. So when you have an internet connection it synchronize all ...
0
votes
1answer
63 views

GWT code spliting

I use MVP and I have common views interfaces for mobile and desktop. Then I implement the views interfaces once for the mobile and once for the desktop. I use deferred binding to replace the interface ...
1
vote
2answers
47 views

How to get the date when an entity was persisted

I want to sort a celltable by the last ones added on top, now , to do this, i need to sort them by the date they were added to the application. Is there a way to get this date? or i have to create a ...
0
votes
1answer
71 views

How can I work around this internal GWT compiler error

I am unable to compile to js in GWT. devmode runs fine as always. I'd quite a few changes between compiles so don't know exactly where to look. What might resolve this? [gwt 1.5 AE 1.7.1] [ERROR] ...
0
votes
2answers
40 views

How to best store credentials in a GAE app?

How could one easily store some data in a simple GAE Google App Engine Application? Like username or some Address information, that should be available again if the application is either restarted or ...
0
votes
1answer
46 views

How to use Ehcache to cache the jsp pages?

We are on the development of gwt-web application with Google App Engine. Now our application became slow due to lot of jstl logic in jsp pages.Earlier i wanted to use memcache service of appengine but ...
1
vote
2answers
223 views

java.security.AccessControlException: access denied (java.lang.RuntimePermission modifyThreadGroup)

I have a problem in using of my own Database server with Google web application. Am using eclips (java EE IDE), installed all google plugins init, and develop a sample google web aplication , ...
0
votes
1answer
47 views

Dynamic sitemap generation for GWT based appengine website

We are aware of the appengine limitation relating to writing files to disk. So the idea of having a dynamic sitemap via i/o seems a bit difficult for AppEngine. So here are some ideas that we wish to ...
-1
votes
1answer
80 views

Google App Engine restrictions with java.io? [closed]

I have a GWT app, which runs fine locally with GAE Google App Engine. Inside a serverside RPC service I use the following json class: ...
0
votes
1answer
22 views

Specify deployment path when deploying to GAE?

I have a GWT app that runs locally using GAE GoogleAppEngine already. Everything works fine and is deployed to the war folder src/main/webapp. appengine.xml is located at: ...
0
votes
0answers
29 views

Not able to persist entity using JDO in a GWT - App engine project

I am trying to persist a Poll entity which has a one to many relationship with User entity. But except other entities Poll entity is not getting persisted. Poll entity: package ...
0
votes
1answer
28 views

How to recreate compiled classes?

I'm having the following structure within a GWT project: war/WEB-INF/classes For cleanup, as I had some caching issues, I deleted the whole classes folder. Now when I run the GWT project locally, ...
0
votes
1answer
44 views

Eclipse: Appengine SDK JARs on WEBinf/lib

Everytime I update the Appengine SDK, I have to manually copy-paste some JAR files from the Eclipse/plugin to the WEB-INF/lib folder. The reason is that I get "missing file" errors on Eclipse until I ...
0
votes
0answers
34 views

GuiceServletConfig error

Technologies used are GWT 2.5.1, GWTP 1-RC4, GAE 1.7.7.1, Eclipse Juno 1 - I have the folowing error : Apr 23, 2013 1:35:34 PM com.google.apphosting.utils.jetty.JettyLogger warn Avertissement: Could ...
-2
votes
1answer
40 views

Use Maven for dependencies together with GWT Plugin?

So far I'm not using maven for a GWT project. When I deploy it to the GAE Google App Engine, I just have to right click > Google > Deploy to App Engine. Then the war folder is generated automatically ...
0
votes
2answers
44 views

ClassNotFoundException for RPC with GoogleAppEngine

I tried to deploy a locally working application to the GAE GoogleAppEngine. It already runs fine there, except for the RPC calls. They all throw ClassNotFoundExceptions. I'm just making RPC using ...
0
votes
2answers
72 views

getLastAccessedTime() in GWT sessions returns 0

I'm trying to add timeouts to GWT sessions, by using the following code to check if a session is alive: public boolean isSessionAlive() { return System.currentTimeMillis() - ...
1
vote
1answer
38 views

GAE - Should I chain asynchronous callbacks?

I'm new to using asynchronous callbacks and I'm not sure if what I'm planning out is the appropriate way to go about doing things. I'm working with Google App Engine along with Google Web Toolkit, and ...
0
votes
0answers
54 views

Unable to build my project

About my project: I use GWT and objectify with In the google appengine server. I've transferred my project from SVN client to Git client. Now after doing the clone, some how I'm unable to build my ...
1
vote
0answers
50 views

Enable High Replication Datastore - Maven GWT + GAE

I'm trying to make High replication work with my application but I get this error: java.lang.IllegalArgumentException: transactions on multiple entity groups only allowed in High Replication ...
1
vote
1answer
395 views

GWT + Appengine + JPA + Eclipse + Maven: How to get them to work together

I have a project where I want to use the eclipse GWT tools (dev mode and debugger) to interact with the GWT/Appengine/Maven application I am writing. I have things in a somewhat working order but ...
0
votes
1answer
85 views

Google Web Toolkit (GWT) rpc to Python server on Google App Engine (GAE)

I am building a web-based carbon foot-printing tool. I have a mature Google Web Toolkit (GWT) client. I have a mature Google App Engine (GAE) server in Python. I'm using Eclipse plugins: PyDev, GWT, ...
1
vote
2answers
64 views

Google end point client library for GWT

Does anyone know if Google is planning to release a end point client library for GWT ? Regards.
1
vote
2answers
87 views

GWT Modlue Restarts cause Out of Memory Error

I'm developing a GWT application, and I'm having issues with testing in development mode in eclipse. When I make changes to the client-side code, I refresh the browser page (F5) to reload the module. ...
2
votes
1answer
84 views

Servlet interface is not a javax.servlet.Servlet

hi this bug not able to trace - help required . I am using google app engine and writing rpc servlet as below <!-- Servlets --> <servlet> ...
0
votes
0answers
101 views

NoSuchMethodError: org.slf4j.helpers.MessageFormatter.format

I'm getting this error when running my application: [ERROR] Apr 12, 2013 10:18:56 AM com.google.appengine.tools.development.ApiProxyLocalImpl log [ERROR] INFO: javax.servlet.ServletContext log: ...
1
vote
2answers
108 views

Google end point returns JSON for long data type in quotes

I am using Google cloud end point for my rest service. I am consuming this data in a GWT web client using RestyGWT. I noticed that cloud end point is automatically enclosing a long datatype in double ...
0
votes
1answer
76 views

How to deploy GWT GAE applications on external server

I Have an GWT+GAE application with nosql database that runs fine in Google App Engine and in eclipse + gwt plugin with embedded jetty server on development environment. Now in production environment, ...
1
vote
1answer
47 views

How to reduce the waiting time in the Firebug net panel?

I am working on gwt application with google app engine as a server. I have put the logs and appstat filter, so that i could know that what is the latency time. Suppose if i open a link it is showing ...
1
vote
1answer
148 views

On Mac: Cannot run program /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/bin/java" in directory… error=7, Argument list too long

I get the following error. Cannot run program "/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/bin/java" (in directory ...
0
votes
2answers
56 views

How can I send cross site PUT requests through GWT?

I am creating a web application using GAE/GWT. Front end GUI is a web client and the server is a RESTFUL server both running in GAE in different domains. I am using json with padding to communicate ...
1
vote
2answers
55 views

GAE how to serve an html file dynamically from the server

I'm working with GAE (Java) in my GWT application. When my users enter a certain URL I'd like to dynamically create an html page on the server side and serve it to the client. How can I do this? ...

1 2 3 4 5 16