[appengine-java] sitemap.xml and urllist.txt

2011-08-10 Thread Vik
Hie I have sitemap.xml and urllist.txt files in my web root folder of my gwt+gae app. However, on deploying these files are still not accessible. I can see other files at the same place like sitemap.html is accessible. Any advise why this is happening? Thankx and Regards Vik Founder

[appengine-java] Re: Multiple PersistenceManagerFactory with Singleton?

2011-08-10 Thread Simon Knott
If that was your original code, that could definitely cause the problem - two threads can both hit that method at the same time and create a new PersistenceManager. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this

[appengine-java] Re: Multiple PersistenceManagerFactory with Singleton?

2011-08-10 Thread dimi
I was afraid about that.. I'm using Objectify for my future projects, so if it happens again.. I'll blame someone else :) But it still doesn't explain why only the queries on kind A went wrong... (unless there were more instances) -- You received this message because you are subscribed to

[appengine-java] GAEJ down!

2011-08-10 Thread doright
got the following error message a few times this morning: Error: Server ErrorThe server encountered an error and could not complete your request. If the problem persists, please reporthttp://code.google.com/appengine/community.html your problem and mention this error message and the query that

[appengine-java] Problem with URLFetchService and cookies

2011-08-10 Thread Bjorn B
I'm trying to move over a project I used to run on a tomcat server to GAE. I'm using Apache HttpClient, and found some great tips on http://esxx.blogspot.com/2009/06/using-apaches-httpclient-on-google-app.html how to get this running. After some modificatications (removing the https scheme) I got

[appengine-java] subclass-table inheritance strategy, new errors on query

2011-08-10 Thread Eliot Stock
Hi there, I have an object model that uses inheritance, with classes like so: @Inheritance(strategy=InheritanceStrategy.SUBCLASS_TABLE) Post { // Owned one-to-many @Persistent(mappedBy = post, defaultFetchGroup = true) private ListResponse responses; } OfferedPost extends

[appengine-java] GWT + GAE pom?

2011-08-10 Thread vehdra music
Hi, I hope this post well not be off topic because is related to GAE GWT. I want to create a GWT + GAE project using maven, but I am pulling my hairs of my head. I hope that someone can give me little hand with this :) I am following this steps: 1) mvn archetype:generate

[appengine-java] JDO RequestFactory

2011-08-10 Thread Micah Caldwell
@PersistenceCapable public class MyEntity extends EntityBase { @PrimaryKey @Persistent private String mPrimaryKey; } com.google.web.bindery.requestfactory.server.UnexpectedException: The domain type javax.jdo.identity.StringIdentity cannot be sent to the client Is there a known

[appengine-java] NPE in InsertMappingConsumer on JDO query

2011-08-10 Thread Eliot Stock
Have been getting this since deploying recently. A redeploy has not fixed it. The same code was working just fine until now. java.lang.NullPointerException at org.datanucleus.store.appengine.InsertMappingConsumer.consumeMapping(InsertMappingConsumer.java:65) at

[appengine-java] Re: Multiple PersistenceManagerFactory with Singleton?

2011-08-10 Thread gk
Simon, this is equivalent public static final void a(){} and public static void a(){} - following of course not public static final int b and public static int b. On Aug 9, 5:57 pm, Simon Knott knott.si...@gmail.com wrote: Whilst I don't know what could cause this error, what makes you

[appengine-java] Re: Multiple PersistenceManagerFactory with Singleton?

2011-08-10 Thread dimi
Thanks. I should have know that things they learn you at school, don't work in real life :-) -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit

[appengine-java] New merge-join (next-gen query) doc following latest release

2011-08-10 Thread Remy Gendron
hi all, It was mentioned that an official blog entry or gae doc page would be published to explain the additions to the merge join capabilities. Anyone seen it? -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group,

Re: [appengine-java] GWT + GAE pom?

2011-08-10 Thread David Chandler
I usually just copy a POM from a similar project like this one (GWT+GAE+Objectify): http://code.google.com/p/listwidget/ Step 9 is not necessary in recent versions of Google Plugin for Eclipse when used with Sonatype m2eclipse and m2e-extras (WTP integration). After you install these Eclipse

[appengine-java] appengine deploy fails with 409 error and rollback doesn't work

2011-08-10 Thread Kesava Neeli
Hi, I was deploying my app to google appengine server and ran into 409 conflict error. I deployed the app hundred of times in last month. I ran into this 409 conflict error sometimes and I just waited for 2-3 minutes and I could redeploy. This time the 409 error persists. I looked at similar

[appengine-java] Re: appengine deploy fails with 409 error and rollback doesn't work

2011-08-10 Thread Kesava Neeli
Anyone from GAE team has any inputs? I am not sure why my appcfg rollback may appp id/war command doesn't work. It's just painful to just move to another app id just because of this 409 conflict error. -- You received this message because you are subscribed to the Google Groups Google App

Re: [appengine-java] GWT + GAE pom?

2011-08-10 Thread John Patterson
I haven't read your exact setup but some things that might help: Add this to your pom.xml build outputDirectory${project.build.directory}/${project.build.finalName}/WEB-INF/classes/outputDirectory I use the Eclipse plugin FileSync to keep src/main/webapp synchronised with /target/myapp-1.0/