[appengine-java] Re: Unable to deploy to App Engine Anymore

2010-02-21 Thread ylmz
you have 2 choice 1) wait like one day. than your opened connection will be closed by appEngine and you will be able to upload again. 2) command update tool to have a parameter to close that connection. On Feb 20, 3:00 pm, Henning henning2...@hotmail.de wrote: Hi, I had a connection error

[appengine-java] Re: owned relationship ? - could it be a bug

2010-02-21 Thread Payam
Hello Aswath, What you are doing seems really odd to me. From my understanding a Datastore Key consists of multiple components. A complete key includes several pieces of information, including the application ID, the kind, and an entity ID - GAE Docs If you use encoded key strings, you can get

[appengine-java] Discussion on will-it-play-in-app-engine

2010-02-21 Thread SRF
I have put together a template project for getting started with Wicket on Google App Engine. It's a re-implementation of the Guestbook demo. It also uses Guice. http://code.google.com/p/wicket-gae-template/ -- You received this message because you are subscribed to the Google Groups Google

[appengine-java] Batch load from DataStore?

2010-02-21 Thread Ftaylor
Is this the fastest way to load all of the Elements of a given type from the DataStore? @SuppressWarnings(unchecked) public static final ListPage loadAllPagesFromDataStore() { ListPage pages = new ArrayListPage(); PersistenceManager pm =

[appengine-java] Help needed with this error using GWT and Google AppEngine.

2010-02-21 Thread VSS
It is coming for a new domain object created on a GWT + AppEngine Project on Eclipse. 19:01:14.750 [ERROR] [cms] Line 3: The import com.google.appengine cannot be resolved Thanks, Shyam. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java

[appengine-java] What is the purpose of keyName? (Low-level API)

2010-02-21 Thread DutrowLLC
Hi, What is the intended purpose of keyName when creating a new Key or new Entity in the low-level API? What are the proper use cases for keyName? Thanks! Chris -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this

Re: [appengine-java] Re: JPA with database

2010-02-21 Thread Chau Huynh
Beside useful hint from Jake, providing links by google search might be helpful to you http://tinyurl.com/cofmen Specifically, you might need to look into Get Started guide... On Fri, Feb 12, 2010 at 4:12 PM, maheswari maheswari rma...@gmail.comwrote: is their is any authentication required to

Re: [appengine-java] Re: owned relationship ? - could it be a bug

2010-02-21 Thread aswath satrasala
Hello Payam Thanks for looking into this. Please see inline On Sun, Feb 21, 2010 at 3:25 PM, Payam pmoghad...@gmail.com wrote: Hello Aswath, What you are doing seems really odd to me. From my understanding a Datastore Key consists of multiple components. A complete key includes several

[appengine-java] Re: wildcard *srt support?

2010-02-21 Thread vbart
And what do you exactly need ? If you need to enable GWT RPC mechanism to work with your DTO classes, then you just have to put the following lines into your appengine- web.xml: resource-files include path=**.gwt.rpc / /resource-files Vaclav On Feb 21, 7:59 am, Prashant Gupta

Re: [appengine-java] Re: wildcard *srt support?

2010-02-21 Thread Prashant Gupta
I want to pass all gwt modules' rpc request through a single servlet. So, that I need not to modify web.xml every time add or remove a GWT module. OR you can say there is only one common Impl servlet for all gwt services/modules, and I want to have only one entry in web.xml which will for all

Re: [appengine-java] Re: wildcard *srt support?

2010-02-21 Thread John Patterson
If you use the command pattern as explained in Ray Ryans talk then you have only one Servlet to map for all commands. http://code.google.com/events/io/2009/sessions/GoogleWebToolkitBestPractices.html We use an implementation that also takes care of retrying failures and ignoring