[appengine-java] Re: problem with jsp:include page=/WEB-INF/includes/Item1.html /

2010-03-25 Thread Vaclav Bartacek
I had exactly the same problem.and I also renamed the fragments from *.html to *.jsp to make it working. The .jsp suffix is no problem for me. The J2EE documentation says about the RequestDispatcher interface (which is actually used for jsp:include and jsp:forward): This interface is intended

[appengine-java] Re: Is there any lib (UI front-end and servlet backend) for editing datastore?

2010-03-25 Thread Vaclav Bartacek
Hello, I do not think a library can exist, rather a set of JSP pages or servlets. The operations you listed are exactly the operations provided by the low-level datastore API. But you forgot to mention also dynamic search operation, which is not directly provided by the API. So I created a GQL

[appengine-java] Re: Security Exception using Guice Servlet

2010-03-25 Thread steveb
I have the answer. With help from the folks at Google I was told that the underlying problem was a ClassNotFoundException for isSerializable from the GWT toolkit. This explains why my other app worked ok, because it contained the GWT jar. This also means that the true problem was being masked by

[appengine-java] Re: cache expiration

2010-03-25 Thread moissinac
Yes, it's the same bug. But the proposed workaround seems to be irrelevant. And, the bug is coted 'Priority-Medium' I think that such a bug on the caching mechanism in a web infrastructure is a major bug: be unable to manage the expiration delay of cached objects is a critical problem -- You

Re: [appengine-java] Re: Slim3 1.0.0 Released

2010-03-25 Thread John Patterson
On 25 Mar 2010, at 10:09, pman wrote: I have gone thru the Slim3 document. Can we have this? @MOdel class Parent { ListChild childs = new ArrayListChild(); } @Model Child { } If so, how to get parents based on child's property in Slim3? Hi TQ, Twig supports these direct relationships

[appengine-java] Re: how to build same entity group

2010-03-25 Thread dreamy
for instance, you can just use a Key and reference the Person in the Telephone. you are right. and i just do it as you say. public class Telephone{ @PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY) @Extension(vendorName=datanucleus, key=gae.encoded-pk, value=true)

[appengine-java] Re: Generating Excel Sheet in Google app engine.

2010-03-25 Thread Amaan
Yea... thanks. i am using the JExcel Api now. it works fine to generate and show excel reports. :) On Mar 24, 3:54 am, Ikai L (Google) ika...@google.com wrote: I just did a quick search and found this: http://jexcelapi.sourceforge.net Not sure if it'll work since many of the times these APIs

[appengine-java] performance of Task Queue Java API

2010-03-25 Thread Eugene Kuleshov
My application need to create bunch of tasks to do some data processing. I've tried to prototype a small application that spawns 5000 tasks from the process initiated by cron job, but it seem like I am hitting some wall, because my test can't spawn more then 1000 tasks and it is terminated by

Re: [appengine-java] Re: how to build same entity group

2010-03-25 Thread Chau Huynh
As a non native English speaker also, let me guess If I got you correctly, dreamy You want to manipulate Telephone separately, independent of its-owner-to-be, so you will have a Telephone class. Similarly, you will have another class for Person. Because there're no dependency between creating of

Re: [appengine-java] performance of Task Queue Java API

2010-03-25 Thread Don Schwarz
There is a bulk add API in the upcoming 1.3.2 release that should help with this. On Thu, Mar 25, 2010 at 9:45 AM, Eugene Kuleshov ekules...@gmail.comwrote: My application need to create bunch of tasks to do some data processing. I've tried to prototype a small application that spawns 5000

Re: [appengine-java] Re: Slow JDO and JPA

2010-03-25 Thread Vít Šesták
OK, but it does not work with GAE. My persistence.xml contains property name=javax.jdo.PersistenceManagerFactoryClass value=org.datanucleus.jdo.JDOPersistenceManagerFactory/, but following exception is thrown: javax.jdo.JDOFatalUserException: A property named

Re: [appengine-java] Re: GPE 1.3 Tutorial?

2010-03-25 Thread Keith Platfoot
Hi Jake, If we (as the Google Plugin for Eclipse team) do an FAQ on Maven + App Engine, it would be simply describe how to get such a setup working with Eclipse. I must admit that I have not worked through all the details yet, but in theory if you have an App Engine project working with Maven,

[appengine-java] Re: performance of Task Queue Java API

2010-03-25 Thread Blake
I'm doing this too. Turn that task into one that takes parameters - a start and end index. You set a threshold of the biggest number of tasks that can be kicked off in one execution. Let's say it's 50. So, you're given 1 to 5000... So, you kick off a task that spawns off new instances of itself

[appengine-java] Re: Slow JDO and JPA

2010-03-25 Thread datanucleus
OK, but it does not work with GAE. My persistence.xml contains property name=javax.jdo.PersistenceManagerFactoryClass value=org.datanucleus.jdo.JDOPersistenceManagerFactory/, but In GAE/J the class ought to be org.datanucleus.store.appengine.jdo.DatastoreJDOPersistenceManagerFactory

Re: [appengine-java] Re: Slow JDO and JPA

2010-03-25 Thread Vít Šesták
Hmm, it does not work. BTW: The configuration (including class list) cannot be achieved using an extended variant ofhttp://db.apache.org/jdo/api20/apidocs/javax/jdo/JDOHelper.html#getPersistenceManagerFactory%28java.util.Map%29 , can be? There is the exception: 1. /test.do

[appengine-java] GAEJ Access to Google Calendar, How to Authenticate ?

2010-03-25 Thread ska
Hi GAEJ Experts, I like to access (Read/Write) a Google Calendar from the Google App Engine. To learn how it works I have Up my Java Google App Application and on my PC a small Calendar test program. Now I need the missing link how to combine both application's. In my GAEJ servlet I get the

[appengine-java] Is it possible and proper to use Google App Engine as the platform for Twitter or Facebook?

2010-03-25 Thread prever
Hi. I'm Kuwon and have a question about Google App Engine's capacity. Is it possible to use Google App Engine as the service platform for Twitter or Facebook and proper? Do they have to have their own service environment and optimize the environment because Google App Engine is very general

[appengine-java] truncated logs

2010-03-25 Thread Alan Stewart
I'm trying to find the root cause in a exception but the stacktrace is being truncated. Is there any way I can get access to my full log entry? Thanks Alan -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send

[appengine-java] Intregrating GAE on Google Marketplace

2010-03-25 Thread lrkirven
I was just curious if anyone has tried to integrate their GAE app into Google Marketplace using the Java Step2 OpenId Library. It seems that GAE does not support the following classes: javax.net.ssl.TrustManagerFactory, javax.net.ssl.X509TrustManager, javax.net.ssl.TrustManager. The Java Step2

[appengine-java] Re: java.lang.RuntimeException: Version not ready.

2010-03-25 Thread Michal
Hello everyone, I'm having exactly same problem today. I tried (almost :) everything: 1) deploying to original app-id failed just like this 2) I tried to deploy to other (older) app-id I had and it worked (and still works) 3) created new app with id goo-ctvolby-prod and deploy fails again and

[appengine-java] MemcacheService#grabTail

2010-03-25 Thread Hidemoto Nakada
Hello, I've recently noticed that the method 'grabTail' in MemcacheService had been removed since 1.3.1. - what happened to the method? has it gone forever ? - is there any workaround to replace the method? thanks in advance. -- HIDEMOTO NAKADA -- You received this message because you are

[appengine-java] Re: java.lang.RuntimeException: Version not ready.

2010-03-25 Thread Michal
Hello everyone, I'm having exactly same problem today. I tried (almost :) everything: 1) deploying to original app-id failed just like this 2) I tried to deploy to other (older) app-id I had and it worked (and still works) 3) created new app with id goo-ctvolby-prod and deploy fails again and

Re: [appengine-java] Re: Intregrating GAE on Google Marketplace

2010-03-25 Thread L. Kirven
Roberto, I thought the same thing, but that does not seem to be the case. Lazar On Thu, Mar 25, 2010 at 12:32 PM, Roberto Saccon rsac...@gmail.com wrote: I am also interested in this. But I have to admit that I did not even got that far, to analyze out the incompatibilities, I was assuming

Re: [appengine-java] Re: java.lang.RuntimeException: Version not ready.

2010-03-25 Thread Ikai L (Google)
Can you tell us which app ID you're unable to deploy to? On Wed, Mar 24, 2010 at 2:17 PM, Michal sra...@gmail.com wrote: Hello everyone, I'm having exactly same problem today. I tried (almost :) everything: 1) deploying to original app-id failed just like this 2) I tried to deploy to other

Re: [appengine-java] MemcacheService#grabTail

2010-03-25 Thread Ikai L (Google)
We removed this from the documentation because it was not working, and the fix turned out to be much more involved than we had originally anticipated, so the fix isn't coming out in 1.3.2. I can't comment on whether or not it will be back. I'll have to check. You can follow the issue here:

[appengine-java] Re: Best way to perform search on DataStore - Design Question

2010-03-25 Thread niraj
I am debating if I should use Compass or wait for Google to release something. I can wait for 3-4 months as my website is going to take that amount of time to complete. Niraj On Mar 16, 3:16 am, Toby toby.ro...@gmail.com wrote: I am using compass as well and it works fine. The indexing part

[appengine-java] Objectify-Appengine 2.1 released, supports Partial Indexes

2010-03-25 Thread Jeff Schnitzer
Today we released Objectify v2.1, the latest version of our opensource replacement for JDO/JPA on the Google App Engine datastore. This version includes a major new feature, Partial Indexes. If you aren't sure what partial indexes are, the Wikipedia page

[appengine-java] Combination of two projects works on dev server, doesn't when deployed

2010-03-25 Thread Luke
Hi! We've developed two means of interacting with the datastore seperately- one is a flex GUI which uses GraniteDS remoting to persist to and retrieve from the datastore, the other is a java package which translates datastore information to XML and allows it to be retrieved using HTTP requests.

Re: [appengine-java] Objectify-Appengine 2.1 released, supports Partial Indexes

2010-03-25 Thread Duong BaTien
Hi: Congratulation and thank for tremendous efforts from the Objectify Team. By the way, has any one attempted Objectify with possible very large index of subscribers and publishers of web-hook pub-sub (Google PubSubHubbub of Atom or short message twitter style). Thanks Duong BaTien DBGROUPS

[appengine-java] Why should app startup times be a problem.

2010-03-25 Thread gholler
When GAE is load balancing your app, and it decides to start up a new instance, why are they sending a client request as the first hit to your app? Unless your app is trivial, you're going to have some startup time. It's not a good job of load balancing if requests are sent to an instance that

[appengine-java] Re: Slow JDO and JPA

2010-03-25 Thread datanucleus
No available StoreManager found for the datastore URL key jdbc Since when has GAE/J been an RDBMS datastore ? Their docs state very clearly to use appengine as the DatastoreURL -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To

[appengine-java] Re: Intregrating GAE on Google Marketplace

2010-03-25 Thread Roberto Saccon
The appengine roadmap got updated: - Built-in support for OAuth OpenID http://code.google.com/appengine/docs/roadmap.html On Mar 25, 3:20 pm, Peter Ondruska peter.ondru...@gmail.com wrote: Well, me too :-)) I guess there is plenty of us. On 25 bře, 18:39, L. Kirven lrkir...@gmail.com wrote:

[appengine-java] Re: error in the GAE/J transaction docs?

2010-03-25 Thread AJ
Interesting! Thanks, that's helpful. On Mar 25, 2:19 pm, Max Ross (Google) maxr+appeng...@google.com wrote: We could perhaps be a bit more precise in our language here.  You can run any query you want inside a transaction but the results are only guaranteed to be transactionally consistent if

[appengine-java] adding new variable to persistent class

2010-03-25 Thread Zac Witte
I have a persistent class called Location, which already exists in the datastore and I'm trying to add a new variable called numCheckins. Is this possible without wiping out all the existing objects? My attempts so far have resulted in the following error whenever I try to retrieve one of the

[appengine-java] Re: App Engine SDK 1.3.2 is out!

2010-03-25 Thread asianCoolz
jgae is getting better and better. thumb up ! -- 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-j...@googlegroups.com. To unsubscribe from this group, send email to

[appengine-java] Sometime write and sabe an entity w ith JDO but same times properties are not saved.¿how can i know it?

2010-03-25 Thread nicolas melendez
Sometime write and sabe an entity with JDO but same times properties are not saved. I think it is about dataStore insolation, but how can i know to retry? ins't there an Exception for that cases? NM -- You received this message because you are subscribed to the Google Groups Google App Engine