[appengine-java] java.io.FileNotFoundException: logging.properties.

2011-01-19 Thread Dzmitry Lazerka
Hi folks, I've created default GAE 1.4.0 project in Eclipse Galileo. 1. Changed .level = FINE, but don't see log messages of level FINE and lower in console. INFO and higher are shown as intended. 2. The same for .level = FINER, FINEST and ALL. -- You received this message because you are

[appengine-java] Store objects from a desktop application

2011-01-19 Thread Joshua Lückers
Hello, I am writing a desktop application with Swing. Now I want to store objects in the Google App Engine datastore. Users do have to login with their Google Account before they can use the application. The objects (Tasks, I am writing a task manager) will be stored in the datastore. Can

[appengine-java] .startsWith does not work on production

2011-01-19 Thread Dzmitry Lazerka
STEPS TO REPRODUCE: 1. Create default GAE 1.4.0 project in Eclipse Galileo. 2. Execute Query query = pm.newQuery(MyRecord.class); query.setFilter(myfield.startsWith(:1)); query.setRange(0, 10); ListMyRecord records = (ListMyRecord) query.execute(myValue); OBSERVED: 1. Works OK in Dev env. 2.

[appengine-java] Re: Store objects from a desktop application

2011-01-19 Thread Didier Durand
Hi, You have to use the official App Engine User Service: it is based on regular Google login See to start http://code.google.com/appengine/docs/java/users/ You can also go the GWT tutorial to get some working samples: http://code.google.com/webtoolkit/doc/1.6/tutorial/appengine.html#user come

[appengine-java] Sample to read Log

2011-01-19 Thread Guillaume B.
Hello ./appengine-java-sdk/bin/appcfg.sh permits to extract log from an appengine application and this shell call a java library gicen with the java appengine sdk does someone has already read logs directly in java using the sdk ? is there sample to do that the goal is to avoid to read logs

[appengine-java] Re: basic understanding of PersistenceManger

2011-01-19 Thread WillSpecht
You can look at the local datastore at localhost:/_ah/admin Also if you are storing things in an arraylist you should be using pm.makePersistentAll(gcalendar). This is because this is only one api call instead of how ever many objects are in your arraylist, plus its less code. to erase

[appengine-java] Re: 620 Error with Google Geocoding service

2011-01-19 Thread Didier Durand
Hi, I think that you've more chances of getting heard by going to http://groups.google.com/group/google-maps-api or one of the other groups mentionned on the page of this url. regards didier On Jan 19, 6:09 pm, culov cul...@gmail.com wrote: This has happened many times before and its

[appengine-java] How to delete indexes using XML configuration?

2011-01-19 Thread Dzmitry Lazerka
How to delete indexes using XML configuration? -- 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 unsubscribe from this group, send email to

[appengine-java] Re: Struggling w/datastore relationship

2011-01-19 Thread WillSpecht
This is not the way that I would do it. First, this is the JAVA app engine group that code looks like python as is the link you referenced. The way I have found in app engine to be able to make the fastest queries is to use lists of keys in each object to manage relationships. so your model

[appengine-java] Re: Unable to navigate my app in production server, while in development server works fine

2011-01-19 Thread Markel Arizaga
Solved. It was a path problem in web.xml. I didn't put the first slash (/) in the paths to the jsp files. Thanks to everyone who tried to help. -- 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: Struggling w/datastore relationship

2011-01-19 Thread Benjamin Carlson
Thanks much for the link! It doesn't directly answer my issue, but it did give me a few more ideas about how to go about this... I've watched it three times (so far)! :) Despite seeing the merge-join in action, I don't think it quite matches my model, so I'm trying to visualize how to make my

[appengine-java] Re: A MapReduce job isn't going anywhere

2011-01-19 Thread burnayev
Solved. Rebuilt the appengine-mapper.jar from the latest code and removed user-data-constraint transport-guaranteeCONFIDENTIAL/transport-guarantee /user-data-constraint for the mapped URL from web.xml. Kind regards, Borys Burnayev

[appengine-java] Re: multiple list properties

2011-01-19 Thread Benjamin Carlson
Bump, I would be interested in learning more about this as well. Thanks! -Ben -- 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 unsubscribe from this

[appengine-java] OAuth with a custom domain

2011-01-19 Thread Eurig Jones
Hi. I have an android app which has a GAE backend and validates its users using OAuth. It does not seem to validate users with a custom google domain. What do I need to do to get this to work? Thanks! Eurig -- You received this message because you are subscribed to the Google Groups Google App

[appengine-java] Re: basic understanding of PersistenceManger

2011-01-19 Thread soujiro0725
Thank you for your help! The development has become a lot easier now. soujiro On 1月20日, 午前1:56, WillSpecht willspe...@gmail.com wrote: You can look at the local datastore at localhost:/_ah/admin   Also if you are storing things in an arraylist you should be using

[appengine-java] Changing logging .level does not affect logging

2011-01-19 Thread Dzmitry Lazerka
Ugh, sorry, wrong subject. Correct is logging .level does not affect logging On Jan 19, 12:34 am, Dzmitry Lazerka dlaze...@gmail.com wrote: Hi folks, I've created default GAE 1.4.0 project in Eclipse Galileo. 1. Changed .level = FINE, but don't see log messages of level FINE and lower in

Re: [appengine-java] Re: 620 Error with Google Geocoding service

2011-01-19 Thread Matt Farnell
I'd suggest you do the geocoding on the clients browser and pass the results back to your server if you need them. On Wed, Jan 19, 2011 at 9:12 AM, Didier Durand durand.did...@gmail.com wrote: Hi, I think that you've more chances of getting heard by going to

[appengine-java] return an empty result from jdo query,any help?

2011-01-19 Thread ice_stream
Hi,all: i write a DAO in application, and i do a local junit test ,it seems ok. public ListDesignElement findByType(String type,PageModel pageModel) { PersistenceManager pm = PMF.get().getPersistenceManager(); Query q=pm.newQuery(DesignElement.class); q.setFilter(type

Re: [appengine-java] return an empty result from jdo query,any help?

2011-01-19 Thread thangavel s
hi, try follows public ListDesignElement getAll() { PersistenceManager pm = PMF.get(). getPersistenceManager(); Query q=pm.newQuery(DesignElement.class); q.setRange(0,20); ListDesignElement) DE=(ListDesignElement)q.execute(); return DE; } On

Re: [appengine-java] return an empty result from jdo query,any help?

2011-01-19 Thread ice_stream
this code is ok,it can return some pojos, -- 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 unsubscribe from this group, send email to

Re: [appengine-java] return an empty result from jdo query,any help?

2011-01-19 Thread ice_stream
the getAll() method is ok, but findByType() method will fail. -- 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 unsubscribe from this group, send email to

[appengine-java] Re: A serious problem was encountered (Error code 203)

2011-01-19 Thread Didier Durand
Hi, You probably have response to your question in the second post of this thread: http://groups.google.com/group/google-appengine-java/browse_thread/thread/9ac5d56754a1268d Let us know if it solved your issue regards didier On Jan 19, 8:37 pm, Luis l.pereira.fernan...@gmail.com wrote: Hi

[google-appengine] Re: Google App Engine Apple Push Notificantion Server (SSL raw socket)

2011-01-19 Thread Aurelian
I use the EC2 micro instance type, it's free for the first year, you can send Push notificationss as much as you want. I installed a lap server (PHP + MySql) as described in EasyAPNS. Aure. http://www.we-sport.com On 17 Gen, 00:49, Cesare Montresor cesare.montre...@gmail.com wrote: Hi, I'm

[google-appengine] Elevated latency?

2011-01-19 Thread Mike
Is anyone noticing elevated latency on their app? I noticed this starting around 10 hours ago, and it is steadily creeping up from 30 ms (normal) to 300 ms. Mike -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send

[google-appengine] AWS Elastic Beanstalk : Like GAE, but without the restrictions.

2011-01-19 Thread Rajkumar Radhakrishnan
Amazon has come out with AWS Elastic Beanstalkhttp://aws.typepad.com/aws/2011/01/introducing-elastic-beanstalk.htmland seems to be targeting GAE. First out is Java support, but more languages are being planned. AWS Elastic Beanstalk will make it even easier for you to create, deploy, and operate

Re: [google-appengine] Re: Google App Engine Apple Push Notificantion Server (SSL raw socket)

2011-01-19 Thread Cesare Montresor
Aure, I was thinking the same, but an unmanaged service, I'm not a security expert and leaving a server by it self, exposed on internet, means get it rooted in 3 months (for my experience). Anyway yes, my idea was something like urbanairship, so webapi2apns, a generic bridge, to be able to use it

[google-appengine] How Do I Have Maven create a exploded war file in war directory

2011-01-19 Thread steven.head...@gmail.com
Hi All, I have been able to create my app engine project using the following archetype: mvn archetype:generate -B -DarchetypeCatalog=http://legup.googlecode.com/svn/repo/archetype- catalog.xml -DarchetypeArtifactId=wicket-spring-jpa-archetype -DarchetypeGroupId=com.jweekend

[google-appengine] A question about Serving Images article

2011-01-19 Thread Zeynel
I am reading the Serving Dynamic Images article http://code.google.com/appengine/articles/python/serving_dynamic_images.html It's straighforward but on the Retrieving and Displaying Images section he has the GetImage handler and he writes that The first thing the request handler does is retrieve

[google-appengine] Re: Details about the HTTPS features

2011-01-19 Thread Pelle
Thanks for helping. /P On 18 Jan, 19:59, Barry Hunter barrybhun...@gmail.com wrote: Gotohttps://test.appspot.com/ in your browser. and you can use investigate the certificate. Usually by clicking the padlock. On 17 January 2011 07:58, Pelle perkarlb...@gmail.com wrote: I'm looking into

Re: [google-appengine] A question about Serving Images article

2011-01-19 Thread Barry Hunter
the code does title = self.request.get('title') movie = getMovie(title) which retrieves it from via the web app framework. The example url, shows an example http://mydomain.com/image?title=matrix so in that case the title 'matrix' would be passed to the getMovie function.

[google-appengine] Re: Stopping users from voting more than once

2011-01-19 Thread Zeynel
On Jan 17, 11:39 pm, Robert Kluin robert.kl...@gmail.com wrote: You sort-of offer the solution yourself, you need to store the fact that a user has voted for a specific article.  If they try to vote again, tell them 'no.' Thanks. I changed the models like this class SiteUser(db.Model):

Re: [google-appengine] Task Queue errors on deployment

2011-01-19 Thread Chris Vaughn
Thanks Greg Ikai! Problem is now solved. I really appreciate the help. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to google-appengine@googlegroups.com. To unsubscribe from this group, send email to

[google-appengine] Re: 30 seconds limitation

2011-01-19 Thread Simon Knott
Hi, It should be noted that the deadline for URLFetch can now be increased to 10 minutes for cron/task queues, as mentioned in the latest release notes: http://code.google.com/p/googleappengine/wiki/SdkReleaseNotes Simon On Jan 18, 7:24 pm, Michael Weinberg weinbe...@gmail.com wrote: Govindad,

[google-appengine] Re: Bulkloading empty db.ListProperty fields

2011-01-19 Thread Brendan
This stumped me for a while recently. I discovered that it was reported as a bug back in August: http://code.google.com/p/googleappengine/issues/detail?id=3646 On the bug page I included a workaround I found, which is just to bypass the empty validation check for list types. For redundancy, here

Re: [google-appengine] Re: Channel API: a suggestion

2011-01-19 Thread Steve
Moishe, A flush queue for the dev appserver would be great. Right now it appears that the send_message queue is flushed only after a Task completes or an HTTP Request returns (I tried both). A flush queue would do two things: either clear messages or push them back to the client prior to

Re: [google-appengine] Re: Cost of Datastore CPU usage seems high

2011-01-19 Thread Eli Jones
Donovan, Your description of what you're doing and why isn't very complete. Let me re-state your points to see if I understand you correctly: 1. About 3,000 new documents are processed each day. 2. When a new document comes in, the task queue code you posted runs against that new document.

[google-appengine] Google Maps geocoding from GAE Java -- CONSTANT 620 ERRORS

2011-01-19 Thread culov
This has happened about 6 times already over the last year. Over the last 24 hours, I've been getting nothing but 620 responses from the Geocoding service. I don't understand why this keeps happening and it's becoming quite a dealbreaker for my app. PLEASE try and fix this as many of us

Re: [google-appengine] Re: Cost of Datastore CPU usage seems high

2011-01-19 Thread Donovan Hide
Hi Eli, thanks for the reply! Replies inline: Your description of what you're doing and why isn't very complete. I'm creating an index of at least 3 million documents which will grow on a daily basis by a further 3000 documents. The index will be used for searching the documents in interesting

Re: [google-appengine] Google Maps geocoding from GAE Java -- CONSTANT 620 ERRORS

2011-01-19 Thread Jeff Schnitzer
It's mildly annoying, but if you run the requests through a simple proxy you can stop worrying about these issues. Jeff On Wed, Jan 19, 2011 at 9:53 AM, culov cul...@gmail.com wrote: This has happened about 6 times already over the last year.   Over the last 24 hours, I've been getting nothing

[google-appengine] Re: What is the purpose of upload in url handlers?

2011-01-19 Thread pdknsk
static_files can contain substitution parameters from the regular expression in 'url', and there's no way to tell which strings could be inserted with those substitution parameters. Can you post an example? -- You received this message because you are subscribed to the Google Groups Google

[google-appengine] Problem with receiving SMS confirmation code for App Engine

2011-01-19 Thread Code Samurai
Hi everyone, I used my cell phone num to register for App Engine multiple times and haven't received any confirmation code from Google. How can I solve this problem? My carrier is U.S. ATT Thanks, -- You received this message because you are subscribed to the Google Groups Google App

[google-appengine] Re: A question about Serving Images article

2011-01-19 Thread Zeynel
Sorry, I am confused about how the title=matrix got to the url. I am looking at the entire script here http://code.google.com/p/google-app-engine-samples/source/browse/trunk/muvmuv/main.py; line 130 has this; maybe it is related? json_obj['movie']['pic'] = 'image?' + urllib.urlencode({'title':

[google-appengine] Re: Google Maps geocoding from GAE Java -- CONSTANT 620 ERRORS

2011-01-19 Thread speedplane
I would not call the geocoding API from within GAE. You quickly hit the quota limit. This is a pretty common issue. Some google searching provides some solutions, e.g., http://groups.google.com/group/google-maps-api/browse_thread/thread/5b2382ee1324e9f6/f52533264addd766?lnk=gstq=app+engine+geocode

Re: [google-appengine] Re: A question about Serving Images article

2011-01-19 Thread Barry Hunter
Well yes. I guess. Its from the URL used in the webpage so this snippet of html img src=/image?title=matrix would show the matrix image. But if the html contained img src=/image?title=jaws Then a different iamge would be displayed. ... There are many and varied ways such html could be

[google-appengine] Re: Channel API: a suggestion

2011-01-19 Thread Moishe
Right now, yeah, the workaround is to try it in prod. Obviously that's not optimal. We're going to add presence to the Channel API so that your application knows when a client using a channel is connected/ disconnected. Since the dev appserver will need to simulate this, it could mirror

[google-appengine] DeadlineExceededError

2011-01-19 Thread Andrius A
Hello, anyone having problems with sites not loading? For me site is not working http://cloudbidder.appspot.com/, admin console is throwing default error page on some requests and google app engine status pages is really slow. Thanks, Andrius -- You received this message because you are

[google-appengine] high replication datastore consistency

2011-01-19 Thread repairman9898
Hi, gae just came out w/ high replication datastore. The bad side effect is that the data you insert into the datastore will not immediately become consistent until after a few seconds in most cases called eventual consistency. If you want to be able to query consistent data, then according

Re: [google-appengine] DeadlineExceededError

2011-01-19 Thread Wesley C (Google)
seems to be coming up for me right now. when did you start to see this problem? we did have a minor datastore latency issue earlier which may have affected some apps and perhaps was the cause, but that fix has been completed now. best regards, -- wesley - - - - - - - - - - - - - - - - - - - - - -

Re: [google-appengine] DeadlineExceededError

2011-01-19 Thread Andrius A
Thank you for your response Wesley, it started throwing errosr around 1 hour ago and noticed that it came back working in 15min I have reported this issue. Cant say exact time because my log now is empty, contains just few errors about tasks TransientError. How could that happen that my error

[google-appengine] Re: Channel API: a suggestion

2011-01-19 Thread Steve
Great answer! Thanks much - I'll keep a watch out for the enhancement. Steve -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to google-appengine@googlegroups.com. To unsubscribe from this group, send

Re: [google-appengine] DeadlineExceededError

2011-01-19 Thread Andrius A
No worries, my fault. I didn't saw logs because I have selected wrong app version in admin console! On 20 January 2011 00:30, Andrius A andriu...@gmail.com wrote: Thank you for your response Wesley, it started throwing errosr around 1 hour ago and noticed that it came back working in 15min I

[google-appengine] Re: Google Maps geocoding from GAE Java -- CONSTANT 620 ERRORS

2011-01-19 Thread culov
I've been geocoding from GAE for over a year now and I've only had these issues sporadically, especially after server maintainence. Unforunately I cant have the client geocode anything for me because the geocoding is just one step in my data generation process. On Jan 19, 12:48 pm, speedplane

Re: [google-appengine] Problem with receiving SMS confirmation code for App Engine

2011-01-19 Thread Nick Johnson (Google)
Hi, If you are having trouble with SMS verification, or want an additional account activated, please fill out the following form: http://appengine.google.com/waitlist/sms_issues (This is from the following FAQ http://code.google.com/appengine/kb/sms .html#error ) Once you fill out this form,

Re: [google-appengine] Re: What is the purpose of upload in url handlers?

2011-01-19 Thread Nick Johnson (Google)
On Thu, Jan 20, 2011 at 6:20 AM, pdknsk pdk...@googlemail.com wrote: static_files can contain substitution parameters from the regular expression in 'url', and there's no way to tell which strings could be inserted with those substitution parameters. Can you post an example? - url: