[appengine-java] servlet url pattern

2009-09-05 Thread klong86
I'm trying to map a URL pattern to a servlet that contains a path. Below is the example: /admin/servlet I've been able to map this correctly and it works on my local development. However, when I push the application, it does not work correctly Instead, this url pattern generates a 404 error

[appengine-java] Re: querying using ANCESTOR IS

2009-09-05 Thread Clay Lenhart
Thanks Jason! If you ever want to return to JDO ... --~--~-~--~~~---~--~~ 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

[appengine-java] JDO Relationships (Primary key for object of type XXX is null)

2009-09-05 Thread Mr. Deckard
Hello everyone, I have a class Employee (Parent) is MasterdData (Child). The code of classes is at the end of the message. When I try to write to the datastore: Employee employee = new Employee (); setMethod for employee use MasterData masterData = new MasterData (); method for use in September

[appengine-java] Re: Bulk writes to datastore

2009-09-05 Thread Vince Bonfanti
Your two quick notes seem to be contradictory. In order to use transactions, don't all of the entities have to be in the same entity group? Vince On Fri, Sep 4, 2009 at 8:24 PM, Jason (Google)apija...@google.com wrote: Batch puts are supported, yes, and as of yesterday's release, calling

[appengine-java] Re: GAE takes 28 sec to read just 200 records

2009-09-05 Thread Vik
Hie yeah I did that.. and what I get are two different values from this block At first time of app startup vik.sakshum.sakshumweb.jsp.model.jdo.PMF clinit: Loading PMF in com.google.apphosting.runtime.security.userclassloa...@1f7cdc7 and in another flow vik.sakshum.sakshumweb.jsp.model.jdo.PMF

[appengine-java] Re: jsp.error.beans.property.conversion

2009-09-05 Thread Piotrek
On Sep 3, 11:08 am, objectuser kevin.k.le...@gmail.com wrote: I think one difference might be your use of JSPs.  I'm using JSF 2.0 but with XHTML.  But that's just a guess. Did you follow the instructions here? https://sites.google.com/a/wildstartech.com/adventures-in-java/Java-P... Before

[appengine-java] Re: QueueFactory.getQueue( String )

2009-09-05 Thread Vince Bonfanti
I found the answer to this: the Queue.add() method throws IllegalArgumentException if the specified queue isn't configured (BTW, the message in the IllegalArgumentException is The specified queue is unknown : but doesn't actually include the queue name in the message string). This isn't as nice

[appengine-java] Re: JasperReports on GAE

2009-09-05 Thread Sherman Wood
JasperReports uses AWT classes to determine pixel perfect positioning of visual elements, which is core to a lot of functionality. It would be a lot work to change this. JR uses iText only for PDF generation. I think a broader question is why does GAE not support Java standards. Sherman Wood

[appengine-java] Re: Seeing different (incorrect?) JDO behavior after upgrading to 1.2.5

2009-09-05 Thread Max Ross
The difference in behavior you're seeing is most likely the result of this bug fix: http://code.google.com/p/datanucleus-appengine/issues/detail?id=58 Adjusting the fetch plan to pull back this field is one solution. Another solution is to add the PrivilegedUser field to the default fetch

[appengine-java] Re: After upgrade to Java SDK 1.2.5 Key property saved but retrieved as null

2009-09-05 Thread Max Ross
Key is not in the default fetch group because it is an appengine-specific class. The JDO spec doesn't know anything about app engine so there's no way that Key could be included in the list of types that are automatically included in the default fetch group. Max On Fri, Sep 4, 2009 at 1:32 PM,

[appengine-java] Re: JDO BUG !?

2009-09-05 Thread Max Ross
Looking at the low-level code it appears that your versions are stored as Strings. My guess is that your JDO query is treating the parameter 0.2 as a double rather than as a string. That would certainly explain why you're not getting any results. If you can post a boiled down version of your