[appengine-java] Jersey crash in Eclipse

2011-03-13 Thread Adam Musial-Bright
Hi, I am using GAE 1.4.2 + Eclipse 3.6 with the Google Eclipse Plugin on a Mac with the newest Java update 1.6.0_24. When I start App (Jersey) in Eclipse it crashes after a moment. There is no obvious error. This is the log from the Eclipse terminal: 2011-03-12 17:51:55.513 java[958:903] [Java C

[appengine-java] AppEngine Supported Countries

2011-03-13 Thread javabuddy
Is there any country restriction for applications targetted for specific countries. Iam in the process of hosting an gwt app inside app engine for Bangladesh. I hope it's feasible. Also from the performance stand point I assume the app is hosted on app servers close to Bangladesh. Thanks -- You

[appengine-java] Re: GAE on Mac OS X not working on local Jetty

2011-03-13 Thread Noel
I am experiencing the same issue. Jetty terminates almost immediately after starting with no output in the console. In the eclipse debug panel I see the following: flwrs [Web Application] com.google.appengine.tools.development.DevAppServerMain at localhost:51482 /System/Library/Jav

[appengine-java] Re: GAE on Mac OS X not working on local Jetty

2011-03-13 Thread Igor Mihálik
Same problem here, started after the last java update... did not find solution yet :-/ -igor On Mar 12, 6:25 am, Vinent wrote: > Hi >       I got the same problem. The weird thing is it is ok before few days > ago. Not sure if the java update cause the problem. Is there anyone found > out what h

[appengine-java] Re: GAE on Mac OS X not working on local Jetty

2011-03-13 Thread Adam Duke
See this post and the others that are linked to it. https://groups.google.com/group/google-appengine-java/browse_frm/thread/5a22269f355bf45a?hl=de On Mar 11, 5:51 am, ThePablick wrote: > I ran into a strange problem: when I try to run the Web Application I > created using the SDK, it can not be r

[appengine-java] Re: GAE on Mac OS X not working on local Jetty

2011-03-13 Thread mseegm
Me too:( The JVM crashed. The crash log is under /User/Library/Logs/ CrashReporter. For me the solution was: delete the all files cached by java. This can be done in the java setup app. -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" grou

[appengine-java] Re: GAE on Mac OS X not working on local Jetty

2011-03-13 Thread Vinent
Hi I got the same problem. The weird thing is it is ok before few days ago. Not sure if the java update cause the problem. Is there anyone found out what happening? Vincent -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group.

Re: [appengine-java] Re: Weird performance problem last 3 days or so

2011-03-13 Thread Michael Green
Thanks for the tip! I've confirmed the exact same behavior. I deployed the same application to a new appspot domain and it seems to be running much faster.My problem is that I've set up a Google App domain for the first. So before going through the headache to switch to a new domain, i'd

[appengine-java] Re: XMPP Encoding problems/ XHTML-IM

2011-03-13 Thread squix
So in case anyone could solve this problem: I'm still interested. I switched back my app to use plain text XMPP messages, which is a pitty because a little bit of formatting would be nice. My App (http:// www.feederator.org) can act (among other things) as a bridge between RSS and XMPP. Formatting

[appengine-java] com.google.gwt.dev.DevMode exit with 138 and 139 code

2011-03-13 Thread Octavio Martin
I'm running eclipse in snow leopard all was working until the last OS upgrade, yes the release at 11 March, at first run the server work without problem, but after that is imposible run again. is necessary restart the OS completely -- You received this message because you are subscribed to th

[appengine-java] Re: GAE on Mac OS X not working on local Jetty

2011-03-13 Thread Andrei
I removed ~/Library/Caches/ and it started working again On Mar 12, 2:19 am, mseegm wrote: > Me too:( The JVM crashed. The crash log is under /User/Library/Logs/ > CrashReporter. For me the solution was: delete the all files cached by > java. This can be done in the java setup app. -- You recei

[appengine-java] JSP error output using dev_appserver (appengine's development server)

2011-03-13 Thread Luca Matteis
When my JSP pages fail for some reason I can't find where the development server puts the error output information. Most web-servers just return a formatted HTML page showing the cause of the JSP error but the built-in development web-server appengine uses doesn't. Where can I get this information

Re: [appengine-java] does the Google AppEngine or WebToolkit replace the bootclasspath of the running Java runtime?

2011-03-13 Thread Shawn Brown
Hi, > Do you have the contact information for the Apple Engineer? He's contacted you, Toby, off list now. I got cc'd on the mail. Let me know if for some reason you didn't get it. Shawn -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java"

Re: [appengine-java] com.google.gwt.dev.DevMode exit with 138 and 139 code

2011-03-13 Thread Shawn Brown
> I'm running eclipse in snow leopard all was working until the last OS > upgrade, maybe you should see http://code.google.com/p/googleappengine/issues/detail?id=4712 Shawn -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post

Re: [appengine-java] com.google.gwt.dev.DevMode exit with 138 and 139 code

2011-03-13 Thread Octavio Martin
thank for the help, I will apply the workaround On Sun, Mar 13, 2011 at 10:44 PM, Shawn Brown wrote: > > I'm running eclipse in snow leopard all was working until the last OS > > upgrade, > > maybe you should see > http://code.google.com/p/googleappengine/issues/detail?id=4712 > > Shawn > > -- >

[appengine-java] using the bulk loader with a date_time field

2011-03-13 Thread Michael Green
I think this is a very basic question, but I can't seem to find a clear answer. I'm uploading date into app-engine and one of the entities has a date_time field: - property: startDate external_name: startDate import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')

[appengine-java] Blob Store Service and GWT

2011-03-13 Thread Miguel Angel De la Torre Martínez
Hello I'm new to the Blobstore so please help. I'm trying to use a really standard GWT RPC like this: public String askForBlobStoreURL() { try { return BlobstoreServiceFactory.getBlobstoreService() .createUploadUrl("/complejidad/u"); } catch (java.lang.IllegalArgumentExcepti

[appengine-java] Re: ManyToMany with list properties - IllegalArgumentException: name: String properties must be 500 characters or less.

2011-03-13 Thread Charms Styler
Datastore supports only till 500 Unicode characters for String. Exceeding that, your required to make that field a Text type. check here. http://code.google.com/appengine/docs/java/datastore/entities.html#Properties_and_Value_Types -- You received this message because you are subscribed to t

[appengine-java] $RequestStatProto$Builder cannot be cast to $RequestStatProto$Builder in hosted mode

2011-03-13 Thread Dzmitry Lazerka
Error 500 com.google.appengine.tools.appstats.StatsProtos$RequestStatProto$Builder cannot be cast to com.google.appengine.tools.appstats.StatsProtos$RequestStatProto$Builder HTTP ERROR 500 Problem accessing /search. Reason: com.google.appengine.tools.appstats.StatsProtos$RequestStatProto$B

[appengine-java] Re: $RequestStatProto$Builder cannot be cast to $RequestStatProto$Builder in hosted mode

2011-03-13 Thread Dzmitry Lazerka
Full restart helps, seems like an old cache in a ClassLoader. -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email to google-appengine-java@googlegroups.com. To unsubscribe from this group, send email t

[appengine-java] Re: Jersey crash in Eclipse

2011-03-13 Thread Didier Durand
Hi, Jersey is supposed to work "officially" on app engine: see http://groups.google.com/group/google-appengine-java/web/will-it-play-in-app-engine May the associated how-to will help you fix your issue: http://tugdualgrall.blogspot.com/2010/02/create-and-deploy-jax-rs-rest-service.html regards

[appengine-java] Re: Blob Store Service and GWT

2011-03-13 Thread Didier Durand
Hi, please provide the stack trace of your exception regards didier On Mar 14, 2:04 am, Miguel Angel De la Torre Martínez wrote: > Hello > > I'm new to the Blobstore so please help. > > I'm trying to use a really standard GWT RPC like this: > >     public String askForBlobStoreURL() { > >  try