0
votes
1answer
66 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
0answers
89 views

Google App Engine/Jetty: Introspection Fails for Dynamic Proxy?

Why does Introspector not correctly discover the properties of a dynamic proxy class in Jetty/GAE? I ran into this curious problem while trying to use a dynamic proxy with Java EL/JSPs when deploying ...
0
votes
1answer
154 views

Java servlet request javax.xml.stream.XMLStreamException - Premature end of file

I am trying to read and parse an rss feed from a 2 jetty servers (Eclipse - Google Plugin): one with App engine SDK enabled and one without it. 1. When i test on the jetty run with app engine enabled ...
1
vote
1answer
118 views

Jetty IncompatibleClassChangeError: Implementing class

I had an app that was running fine with app engine 1.7.1, but when I upgraded to 1.7.5 all my library dependencies were broken. So I think I got all the dependencies corrected, so at least I don't ...
0
votes
1answer
113 views

Unable to deploy app on google app engine using jetty:“HTTP ERROR 404 Pblm accessing /.Reason: not found”

Ive bee trying to set up a sample 'todo' google app engine example that uses Java, using an article I found here . However, when I try to run the application locally, and check the localhost:8888 ...
0
votes
3answers
174 views

GAE ClassFormatError: Incompatible magic value 4022320623 EFBFBDEF

I have a simple webapp in an mavenized Eclipse project. My pom.xml contains some lines that add Google's appengine-maven-plugin to the build plugins. When I run mvn appengine:devserver I eventually ...
0
votes
0answers
47 views

AppEngine constantly writing to appengine-web.xml causes Eclipse build loop. How do I stop it?

I'm working with a Google AppEngine project using Jetty as local server for my project. This has worked fine up until now, where I suddenly observe that Eclipse sticks in a automatic build loop ...
2
votes
2answers
191 views

Sharing Memcached between Jetty Instances

I'm writing integration tests against a Google App Engine project that is running on a local Jetty instance. Before running my tests, I spawn a new instance of my GAE web service at ...
1
vote
1answer
81 views

How do I get Jetty to reload the .class files for each new build from Eclipse when running an AppEngine Servlet locally?

I've successfully created a "Hello world" AppEngine project in Eclipse Juno. The problem is that I have to restart Eclipse each time I do a code change in order to get Jetty to provide me with the ...
-3
votes
1answer
125 views

Running GWT with jetty server [closed]

I have started jetty server and trying to run GWT project on it, but the following error arises. Jan 04, 2013 8:57:26 PM com.google.apphosting.utils.jetty.JettyLogger info INFO: Logging to ...
0
votes
1answer
64 views

App Engine, Jetty, GWT(GXT) projects, reduce the free space on my disk

I installed: On disk ā€œDā€: WinXP SP3 On disk ā€œEā€: JDK 1.7.0_10, Eclipse Indigo Service Release 2, GWT 2.4, GXT 2.2.5, App Engine 1.7.0, Glassfish-3.1.2.2-windows-ml, Also, I have paths: ...
0
votes
1answer
43 views

Appengine debug TagLibConfiguration (java jetty)

I'd like to debug the following class in GAE: TagLibConfiguration To do so I need the exact Jetty Version that GAE uses in order to get the source code and be able to step by step. Where can I get ...
1
vote
0answers
71 views

AppEngine Spring Controllers not updating

Perhaps I am missing something really basic here, but the problem is as follows: I have a Java class annotated as a @Controller with a method annotated with @RequestMapping and its return value with ...
2
votes
2answers
4k views

http 503 error gwt jetty server SERVICE_UNAVAILABLE

i get 503 error from eclipse integrated jetty server while running project in a web browser. i get this error since i changed the gae application-id of the project. java.lang.ClassNotFoundException: ...
3
votes
3answers
234 views

Disable taglib scanning in google app engine (Jetty)

Trying to reduce the startup time of my instances I've come accross the taglib classpath scanning. My application has 50mb of jars. The scanning of the tld takes 20% of the startup time. Is there ...
0
votes
0answers
109 views

RequestDispatcher custom loader

I am trying to do some crazy stuff with Google App Engine - one aim being to reduce the number of files to be uploaded by creating bundles (jar/zip/tar files). Wondering if there's a way to tell the ...
1
vote
0answers
157 views

How does AppEngine(or its embedded-server) processes different urls

I created a simple appengine project that accesses a restful webservice hosted in http://commerce.qa.mycomp.com (mycomp should be replaced with my actual company name). I am using the Jersey Client ...
1
vote
1answer
1k views

App Engine preview does not work in Eclipse

Jetty opens up but it shows. HTTP ERROR: 503 Problem accessing /. Reason: SERVICE_UNAVAILABLE From my Eclipse console Apr 15, 2012 3:50:38 PM com.google.apphosting.utils.jetty.JettyLogger ...
3
votes
1answer
368 views

Using logback-access with Google App Engine (GAE)

I am working on a project that uses GAE as the backend for a mobile app. We want to have really good logging implemented in the project. I have spent a lot of time reading about log4j, ...
0
votes
2answers
170 views

Migrate a jetty8 web app to google app engine

I have a web application currently deployed in jetty8, which is based on jsf2, jersey and atmosphere. I would like to migrate to GAE but the following question comes up to me: Does GAE support ...
0
votes
3answers
1k views

Jersey + App Engine project launch error

Did a lot of search, but no luck. I'm trying to make a 'hello world' app which integrates Jersey and Google App Engine. In Eclipse, I created a 'Web Application Project' and added Jersey JAR to the ...
1
vote
0answers
322 views

GAE throws IllegalStateException: WRITER

I have an GAE + Java + Spring app, with very simple controller: @RequestMapping(value = ['/_warmup', '/_ah/warmup']) @ResponseBody String warmup() { return 'OK' } It just return string, and ...
2
votes
2answers
1k views

“HTTP ERROR: 500 No realm” running GWT's “MobileWebApp” sample

I'm trying to run the GWT 2.4 sample app "MobileWebApp". I get a 500 "No Realm" error when I try to run the app in dev mode through Eclipse. I understand this is an authentication problem. I'm not ...
2
votes
1answer
236 views

Block servlet access to the file system or other Java core libraries in Jetty (like Google App Engine)?

GAE uses Jetty, and it prevents access to the file system from servlets. I was wondering if limiting acces to core Java libraries from servlets can be accomplished in your own Jetty setup...is ...
0
votes
1answer
425 views

Access to servlet logs on localhost (jetty) when developing app for Google Application engine

I am prototyping an java servlet application using Google application engine. Is there any way how I can access the log4j servlet logs in when testing on localhost? E.g. if I use the Logger class ...
0
votes
1answer
96 views

Persistence Manager modifying object even closed?

Recently I saw someone writes this piece of code, in which Courses is a static object, holding 1 PersistenceManager instance. public class Courses { private PersistenceManager pm; private ...
0
votes
3answers
432 views

How to avoid connection loopbacks with DynDNS when I debug locally?

I'm developing with Java GAE and Google API's with OAuth authentication that requires an URL Callback that receives the access tokens. To test locally, running Jetty in ...
2
votes
3answers
787 views

Changes wont reflect in localhost while using google app engine

I'm using eclipse 3.7 and google app engine 1.5. When i make changes to servlet and run it , i do not see the changes reflecting in the server. Stopping jetty ( by pressing red button on console ...
3
votes
1answer
175 views

How to get the actual URI on Google App Engine?

I'm using Gaelyk 0.7 with GAE 1.5, and I'm attempting to get the request URI in controllers/views: ${request.uri} That works fine locally, however org.mortbay.jetty.Request.getUri() does not seem ...
1
vote
2answers
663 views

GoogleAppEngine: dev_appserver crashed

When start the development server, Java will crash What is the cause? (OS) Mac OS X 10.6.6 (Java) Java(TM) SE Runtime Environment (build 1.6.0_24-b07-334-10M3326) Java HotSpot(TM) 64-Bit Server ...
1
vote
2answers
407 views

GoogleAppEngine: couldn't start server - jetty

Jetty did not start, and the following errors occurred. What is the cause? (OS) Mac OS X 10.6.6 (Java) Java(TM) SE Runtime Environment (build 1.6.0_24-b07-334-10M3326) Java HotSpot(TM) 64-Bit ...
1
vote
1answer
571 views

Google app engine development server does not update web.xml

The development server updates .jsp and servlets files, but it does not update web.xml. So, the mapping doesn't work/update. If I deploy to google app engine, everything works great (online). What ...
3
votes
2answers
1k views

Adding a JSP file to a GWT project in Eclipse Helios( and Galileo )

I have a GWT project in Eclipse to which i try to add a jsp file. I run the application in development mode and when i try to access that jsp file i get the following error: HTTP ERROR 404 ...
0
votes
1answer
1k views

Why can't I access a web app running on my Mac via my iPhone?

I'm developing an iPhone app that has a network component. I'm developing the app in Java (Google App Engine actually), running on port 8080. And it works, when I test my app in the iPhone simulator. ...
0
votes
2answers
2k views

Usage of Static variables in Java Servlets (e.g. in AppEngine)

I have an application where Servlet has a method called Update(ReqIn, ReqOut). I call it from doGet & doPost and pass the Request and Response variables, and it is then up to Update(...) to fill ...
1
vote
2answers
2k 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 ...
2
votes
2answers
927 views

Xerces JAR on GAE project's classpath leads to “SAXParserFactoryImpl not found”

I'm using the Eclipse plugin for Google App Engine and I'm having a strange issue with a Xerces dependency. On of my classes depends on the Apache Xerces JAR which I have added to the project's ...