[appengine-java] Update on Datastore Performance Status

2010-07-28 Thread Peter Ondruska
Charging for Datastore CPU usage will be re-enabled on Tuesday, August 3rd http://googleappengine.blogspot.com/2010/07/update-on-datastore-performance-status.html -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this

[appengine-java] Re: Index over a list property on GAE not working as expected

2010-07-28 Thread l.denardo
Yes, I would say it is working on your local dev. because you have automatic indexes enabled and so is automatically creating the necessary index for you but then you are not deploying this I can tell for sure, using Java, that there's a different behavior for composite queries in the

[appengine-java] Re: Index over a list property on GAE not working as expected

2010-07-28 Thread l.denardo
Getting back to the original question, since the error appears to be for the second query and it's only a get (no composite index), probably it's only a matter of automatic indexing being disabled. Just as a pointer on text search, there's a post here:

[appengine-java] Re: Dance Dance Robot error / Channel API

2010-07-28 Thread Daniel Guermeur
Thanks Don. Including dev-channel-js.js works perfectly. Daniel On Jul 27, 10:14 am, Don Schwarz schwa...@google.com wrote: Sorry, to be clear, I meant that you should create an /_ah/channel directory at the top of your war and copy dev-channel-js.js so it is a file named 'jsapi' in that

[appengine-java] Re: Channel api / Dance dance robot: what is ApplicationError: 2:

2010-07-28 Thread Daniel Guermeur
Thanks Don. Works perfectly. Here is a recap to summarize all the steps so others can do it too: 1. Extract the apphosting/tools/dev-channel-js.js file from appengine-api-1.0-sdk-1.3.5.jar 2. Create a directory _ah/channel in your war directory 3. Rename dev-channel-js.js to jsapi and place it

Re: [appengine-java] Re: Index over a list property on GAE not working as expected

2010-07-28 Thread Miroslav Genov
First I wanna thank you all for the feedback. Now I had looked into guestbook example at http://code.google.com/p/guestbook-example-appengine-full-text-search/source/browse/trunk/guestbook/src/guestbook/SearchJanitor.java and I had modified my code to use the same query generation. Here is

Re: [appengine-java] Re: Index over a list property on GAE not working as expected

2010-07-28 Thread Miroslav Genov
It seems that the issue is with the sorting order. Now sorting order has been removed and works like a charm. On 28.7.2010 ?. 13:22 ?., Miroslav Genov wrote: First I wanna thank you all for the feedback. Now I had looked into guestbook example at

[appengine-java] listproperty usage and suggestions.

2010-07-28 Thread aswath satrasala
Hi, I have the following class. GlAccount { @Id Long id; String customerid; Date date; double balance; } Here, I am querying by date and customerid. If I get back an existing entity, I update the new balance and do put of the entity If not, I create a new GlAccount (Date, balance, customerid),

[appengine-java] Servlet 3 support?

2010-07-28 Thread Guillaume Laforge
Hi all, I'm curious to know if/when Google App Engine is going to migrate to Servlet 3? Things like web fragments are pretty interesting for framework developers, as users don't need to specify too much in their web.xml. -- Guillaume Laforge Groovy Project Manager Head of Groovy Development at

[appengine-java] Re: Index over a list property on GAE not working as expected

2010-07-28 Thread l.denardo
Glad to hear it! Anyway more information about automatic generation is available here http://code.google.com/appengine/docs/java/datastore/queriesandindexes.html#Defining_Indexes_With_Configuration BTW there's the answer to everything in that: Other forms of queries require their indexes to be

[appengine-java] Problem importing datastore in to app engine.

2010-07-28 Thread JµGÅL ÐË ©øøL˧T
Hi All, I am trying to use bulkuploader for one of my app(using Java) and i followed the steps given in the google app engine docs (http:// code.google.com/appengine/docs/python/tools/uploadingdata.html). I was able to export the data from the appengine but while uploading I saw that the data

[appengine-java] SMTP OAuth and App Engine

2010-07-28 Thread Tarun
Hello all, I recently started experimenting with OAuth access to apps domain email accounts. Using the sample for OAuth access provided by google, here is the code I was using. String userEmail = user.getEmail(); LOGGER.info(Using email: + userEmail); String smtpHost = smtp.googlemail.com; int

[appengine-java] Can I use goo.gl if I'm building a service on GAE?

2010-07-28 Thread Erik Lydecker
Can I use goo.gl if I'm building a service on GAE? Thanks! -- 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] Signing as user (localhost) and trying to generate bulkloader

2010-07-28 Thread David Saenz Tagarro
Good afternoon, I'm new with GAE using JAva, and I have some problems that Im not able to resolve.. Start point: Environment: OS  Ubuntu 10.04. / appengine-java-sdk-1.3.5 I have created an application (id = tyd) to manage entities of king MenuInfo. The application let me create and select

[appengine-java] How can I front GAE's Jetty with Apache/mod_jk?

2010-07-28 Thread broc.seib
Note: I only wish to do this during development in Eclipse; I do not need it in production on GAE. I want to use my existing apache + mod_jk frontend to direct some of its traffic to my development environment. My apache frontend has a real SSL certificate, and I am debugging some code for an

[appengine-java] Can I restore my source from GAE?

2010-07-28 Thread Елена Соколовская
Help me please! I loosed my source code of latest version of my application. How can I get it from GAE? It is possible? -- 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

[appengine-java] Problems with localhost Authentication and generating bulkloader Entities..

2010-07-28 Thread David Saenz Tagarro
Good afternoon, I'm new with GAE, en entorno Java, y me estoy encontrando con un par de problemas que no consigo resolver por mas esfuerzos que dedico. *Start point: *Environment: OS Ubuntu 10.04. / appengine-java-sdk-1.3.5 I have created an application (id = tyd) to manage entities of king

[appengine-java] Problemas con Servicio de Usuarios y generación del Bulkloader.yaml

2010-07-28 Thread David Saenz Tagarro
Buenas tardes, soy nuevo usando GAE, en entorno Java, y me estoy encontrando con un par de problemas que no consigo resolver por mas esfuerzos que dedico. *Situación de partida: *Entorno: Sistema operativo Ubuntu 10.04. / appengine-java-sdk-1.3.5 He creado una aplicación (identificador = tyd)

Re: [appengine-java] Can I restore my source from GAE?

2010-07-28 Thread Ikai L (Google)
No, you cannot do this. See related discussions: http://groups.google.com/group/google-appengine/search?group=google-appengineq=download+sourceqt_g=Search+this+group On Wed, Jul 28, 2010 at 3:54 AM, Елена Соколовская beatrix.xirt...@gmail.com wrote: Help me please! I loosed my source code of

[appengine-java] webcast on how to connect google appengine to chef

2010-07-28 Thread Adrian Cole
As you may know, jclouds is an open source framework that deals with abstraction and runtime portability of cloud apis. For example, our blobstore and compute features help avoid some lock-in to APIs such as Amazon S3 and EC2, yet still give you access to the underlying service for those features

[appengine-java] Bulk loader and JPQL query

2010-07-28 Thread Deepika M
Hi, I am trying to use the bulk loader to upload information about edges for Java app engine. I have an Edge entity and it has the source (int), destination (int) and graph_id (long) as its attributes. And the csv file contains sample data like this source,graphId,destination 1,1,1 2,2,2

Re: [appengine-java] Re: regarding the keys in the datastore

2010-07-28 Thread Deepika M
Thank you all for the replies! On Sun, Jul 4, 2010 at 10:49 PM, Didier Durand durand.did...@gmail.comwrote: Hi, You can also create your own keys (i.e. with the structure you want) via KeyFactory.createKey() regards didier On Jul 3, 9:58 pm, Deepika M drift2elys...@gmail.com wrote: Hi,

[appengine-java] Creating and storing unique values

2010-07-28 Thread Sven
Dear group, in order to validate the e-mail address entered by a user, I want to create a classic opt-in-kind of e-mail which is sent to the user and that contains a link on which the user has to click to validate his address. Part of this link is a unique identifier. I played around with a

Re: [appengine-java] Servlet 3 support?

2010-07-28 Thread Jeff Schnitzer
Please star this issue: http://code.google.com/p/googleappengine/issues/detail?id=3091 I'd be happy with just the annotation-based servlet configuration. Enough with the tedious xml already! Jeff On Wed, Jul 28, 2010 at 6:34 AM, Guillaume Laforge glafo...@gmail.com wrote: Hi all, I'm curious

Re: [appengine-java] Creating and storing unique values

2010-07-28 Thread John Patterson
On 29 Jul 2010, at 04:35, Sven wrote: I played around with a couple of ways to generate identifiers which do not look too simple (short integers, such as primary key values), not to complicated (too long or cryptic) and not too predictable (System time). My current favorite is to generate a

[appengine-java] [Question/Need Help] Uncaught exception from servlet

2010-07-28 Thread Xlorep DarkHelm
I just tried to deploy my app (showsort -- http://showsort.appspot.com) with my new development version 3 (http:// 3.latest.showsort.appspot.com/) and it now is producing a strange error I've never seen before: Uncaught exception from servlet java.lang.NoClassDefFoundError:

[appengine-java] Re: Servlet 3 support?

2010-07-28 Thread Xlorep DarkHelm
Consider it starred. This would be a very nice thing for them to get working. On Jul 28, 2:53 pm, Jeff Schnitzer j...@infohazard.org wrote: Please star this issue:http://code.google.com/p/googleappengine/issues/detail?id=3091 I'd be happy with just the annotation-based servlet configuration.

[appengine-java] Re: Servlet 3 support?

2010-07-28 Thread Andrei
Since Google uses Jetty web server, i think it's more a question when Jetty will run Servlet 3 On Jul 28, 9:34 am, Guillaume Laforge glafo...@gmail.com wrote: Hi all, I'm curious to know if/when Google App Engine is going to migrate to Servlet 3? Things like web fragments are pretty

[appengine-java] Bulk Downloading

2010-07-28 Thread pbadn
This is a problem I have been working on for several hours. I installed the RemoteApiServlet into my GAE Java app and deployed it. I also modified my web.xml file to have a security-constraint that limited access to admin only. I get about 10 messages marked [INFO ]. The last one says it is