Re: [appengine-java] Re: session management

2010-05-28 Thread romesh soni
Hi Stephan, Is that possible that a client had closed the browser and opens a new browser and we can still identify the client using session cookies? Thanks Romesh On Thu, May 27, 2010 at 10:42 PM, Stephan Hartmann hartm...@metamesh.dewrote: Keep in mind that sessions managed by the servlet

[appengine-java] Re: system properties

2010-05-28 Thread Marcel Overdijk
I was thinking of that. To bad I can't create a new entity in app engine console. I guess I have to use some bootstrap code to check if the records is there, and if not create it. On May 27, 11:35 am, John Patterson jdpatter...@gmail.com wrote: You can use the datastore to put and get config

[appengine-java] Re: full text search tutorial wanted

2010-05-28 Thread Toby
I use the code done by Nicolas and I can only say that it works great. There is one limitation, though. It assumes AND between the keywords that you search. I modified that by breaking it up in several queries but I think that code is not very efficient. In the longer term there is fulltext search

Re: [appengine-java] Re: system properties

2010-05-28 Thread Pieter Coucke
You can use Administration Console Custom Pages: http://code.google.com/intl/nl-BE/appengine/docs/java/config/appconfig.html#Administration_Console_Custom_Pages There you can add a simple page with configuration settings that are saved to the datastore (and memcache). -- Pieter Coucke Onthoo

Re: [appengine-java] Re: full text search tutorial wanted

2010-05-28 Thread Andrés Cerezo
You can use gaelucene code.google.com/p/gaelucene/ you have to index the information in your pc and after upload the information indexed. 2010/5/28 Toby toby.ro...@gmail.com: I use the code done by Nicolas and I can only say that it works great. There is one limitation, though. It assumes AND

[appengine-java] Re: full text search tutorial wanted

2010-05-28 Thread Nacho Coloma
If your website is public you can also use the google search Ajax API (with a site: query) and parse the returned URLs if needed. On May 28, 10:30 am, Andrés Cerezo acerezoguil...@gmail.com wrote: You can use gaelucene code.google.com/p/gaelucene/ you have to index the information in your pc

[appengine-java] cron job fails but there are no errors

2010-05-28 Thread RockyWolf
I am testing a cron job. It gets uploaded fine, but fails on the dashboard. Can't really figure out what the problem is. I created a cron.xml file in WEB-INF and put this in : cronentries cron url/cron/mycronjob/url descriptionSimple Cron Job that announces that it got

[appengine-java] Download uploaded files using GWT

2010-05-28 Thread Alexander Orlov
I've got the upload part...: May 28, 2010 9:12:50 AM com.google.appengine.api.datastore.dev.LocalDatastoreService $PersistDatastore persist But how can I retrieve my uploaded files? blobstoreService.getUploadedBlobs(httpServletRequest) requires a HttpServletRequest parameter but

[appengine-java] Delete all Datastore entries locally

2010-05-28 Thread Gaurav Munjal
I have made some changes in the class file, whose objects were persisted... Now I need to empty the local datastore. Is there a way? -- 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] Re: Delete all Datastore entries locally

2010-05-28 Thread jnizet
http://code.google.com/intl/fr/appengine/docs/java/tools/devserver.html#Using_the_Datastore On 28 mai, 13:07, Gaurav Munjal mail2gauravmun...@gmail.com wrote: I have made some changes in the class file, whose objects were persisted... Now I need to empty the local datastore. Is there a way? --

[appengine-java] Re: estimated number of entries in memcache

2010-05-28 Thread Joe Fawzy
Hi any one used memcache here?!!! please i need some help any comment will be greatly appreciated thanks a lot Joe On May 27, 11:14 pm, Joe Fawzy joewic...@gmail.com wrote: Hi all i know that memcache is documented as an unreliable storage that means that nothing is guarenteed BUT i am

[appengine-java] Re: MD4?

2010-05-28 Thread Elchin
I know that, but I am making an online service where you can calculate various hashes, so having MD4 would be good as well. Btw, you can check it out at www.hashpal.com On May 17, 8:06 pm, Ikai L (Google) ika...@google.com wrote: Is there a reason you need to use MD4? MD4 is a weak hash and has

[appengine-java] Re: Delete all Datastore entries locally

2010-05-28 Thread Ronmell (VDKiT)
Hi Gaurav. You can delete by your own calling the deletePersistenceAll from a Query sending as parameter the class of your POJO object. but if you made the changes to your POJOs, you don't need to delete all data or rebuild the entity, just make the changes and deploy the app and the columns

[appengine-java] Re: full text search tutorial wanted

2010-05-28 Thread Tristan
For what you're trying to do perhaps you should consider this instead: Create a Google Apps account. Use the Goole Document List API to upload the documents to an application account in Google Apps, something like (applicat...@myapp.com). Then when somebody submits a query, just use Google

[appengine-java] Silly question I know, but I don't know:)

2010-05-28 Thread smllms
IHow do I print child records? I have 3 parent enitities with each of the parents having 2 - 5 children. I'm trying to print the parent list, then then each of the child grouped by parent sequentially, i.e., parent1.name, parent2.name, parent3.name parent1.childname, parent1.childname

[appengine-java] Re: Spring Roo + GWT Demo

2010-05-28 Thread geoaxis
Hello, I believe that portions of the code for GWT is already in the GWT release. You can try out the ROO specific stuff with STS (screen cast here http://www.thescreencast.com/2010/05/how-to-gwt-roo.html) -- Shahzada Hatim @geoaxis on twitter, irc.freenode.net/#spring On May 23, 5:44 pm, yonny

[appengine-java] NullPointerException from org.datanucleus.store.mapped.mapping.CorrespondentColumnsMapper

2010-05-28 Thread Archie Cobbs
I'm getting a NullPointerException from the guts of datanucleus when first accessing JDO. I'm wondering if the stack trace below looks familiar to anyone who might give me a hint as to what I'm doing wrong. I've also filed bug #3277 with a test case. Any ideas appreciated. Thanks, -Archie

[appengine-java] Re: List all entitie kinds from the datastore

2010-05-28 Thread Erich
I've used the following code, to limited success... code %@ page import=com.google.appengine.api.datastore.DatastoreService % %@ page import=com.google.appengine.api.datastore.DatastoreServiceFactory % %@ page import=com.google.appengine.api.datastore.Entity % %@ page

[appengine-java] Re: Storing a web based file in the blobstore

2010-05-28 Thread Houston startup coder
If you were using a GAE app to retrieve the file and store it into the Blobstore, it would need to finish doing so within the 30-second request limit. So you might have to use an external application to retrieve the file and upload it into the Blobstore. You can do this programmatically by

Re: [appengine-java] Re: full text search tutorial wanted

2010-05-28 Thread nicolas melendez
Tristan, your solution is creative and good, but you have a limit of 5000 documents per account in google documents. NM On Fri, May 28, 2010 at 12:53 PM, Tristan tristan.slomin...@gmail.comwrote: For what you're trying to do perhaps you should consider this instead: Create a Google Apps

[appengine-java] can't enable billing quotas

2010-05-28 Thread JakeP
I have tried twice today to enable billing for my app and it says it's processing but, even after a coupole of hours, the status never changes from Free Do I just have to wait longer? the appID is salonnewsapp Any help is appreciated. -- You received this message because you are subscribed to

[appengine-java] Re: Spring Roo + GWT Demo

2010-05-28 Thread caritos
Looking for documentation to deploy Spring Roo + GWT + STS on GAE. On May 28, 11:03 am, geoaxis geoa...@gmail.com wrote: Hello, I believe that portions of the code for GWT is already in the GWT release. You can try out theROOspecific stuff with STS (screen cast

Re: [appengine-java] can't enable billing quotas

2010-05-28 Thread Ikai L (Google)
Billing is a bit slow today. The UI will not show that you have it enabled, but give it a bit of time and it will update. Apologies for the inconvenience. On Fri, May 28, 2010 at 3:55 PM, JakeP jake.pier...@gmail.com wrote: I have tried twice today to enable billing for my app and it says it's

[appengine-java] Re: full text search tutorial wanted

2010-05-28 Thread king
thanks everybody for the feedback :) On May 28, 10:17 am, nicolas melendez nfmelen...@gmail.com wrote: Tristan, your solution is creative and good, but you have a limit of 5000 documents per account in google documents. NM On Fri, May 28, 2010 at 12:53 PM, Tristan

[appengine-java] Re: Delete all Datastore entries locally

2010-05-28 Thread Tristan
you can delete war/WEB-INF/appengine-generated/local_db.bin to wipe the database On May 28, 9:06 am, Ronmell (VDKiT) ringe...@gmail.com wrote: Hi Gaurav. You can delete by your own calling the deletePersistenceAll from a Query sending as parameter the class of your POJO object. but if you