[appengine-java] Need a better way to set up my JDO entities

2010-04-21 Thread novarse
Hello, I'm trying to retrieve race results from a couple of JDO entities but the time taken seems too long. Given an event I want to display the rider's name and number along with their results from the event. The main objects involved: RaceHistory: id, riderID, eventID, grade (for the race),

[appengine-java] Re: Blob Store service createUploadUrl() and a Dispatcher Servlet

2010-04-21 Thread Rahul Ravikumar
Yes that is what the problem is. The getRequestURI() and or the getPathInfo() method are set to /ah/upload*. I am sorry for the confusion. On Apr 20, 12:33 pm, Don Schwarz schwa...@google.com wrote: I'm confused.  What success path is being called?  In the example web.xml file you attached to

[appengine-java] Datastore cursor return value question - CursorHelper.getCursor(List?)

2010-04-21 Thread Chau Huynh
Hello app engine team, I'd like to have a search form, which allows user to search next if more result available by using a Cursor. My issue is, in the last chunk, I am not able to detect if it's. Therefore, I will need to execute one additional query to test if more data. Can you please advise

[appengine-java] WARNING: This request caused a new process to be started for your application, and thus caused your application code to be loaded for the first time. This request may thus take long

2010-04-21 Thread Tristan
Hey, I started seeing when a task queue starts now: WARNING: 200 OK This request caused a new process to be started for your application, and thus caused your application code to be loaded for the first time. This request may thus take longer and use more CPU than a typical request for your

[appengine-java] LocalDatastoreTest Error

2010-04-21 Thread CodeMan
Hi, I am trying to unit testing. I copied the sample code on the site as is, but I get the error below. Here is the unit test code import com.google.appengine.api.datastore.DatastoreService; import com.google.appengine.api.datastore.DatastoreServiceFactory; import

[appengine-java] Re: Need a better way to set up my JDO entities

2010-04-21 Thread Tristan
I would denormalize your model and embed the rider in race history. That way there is no separate lookup and your query returns in 1s. You're doing the relational datastore technique of calculating on reads instead of the non-relational technique of preparing your data on the writes. On Apr 21,

Re: [appengine-java] open source pdf engine for GAE

2010-04-21 Thread Conor Power
for what it's worth ... I've written a small blog entry detailing the different approaches to PDF generation with GAE ... http://conorjpower.com/2010/01/11/pdf-generation-in-java/ we used pdfmyurl.com in the end, which was the least amount of additional implementation work for us ... On Sun,

[appengine-java] Problem Using 'Java SDK for Payflow Pro' with google app engine

2010-04-21 Thread Daud
Hi, I was trying to use Java SDK for Payflow Pro with google app engine, however I keep on getting this response 'Failed to connect to host Input Server Uri= https://pilot-payflowpro.paypal.com:443'. However if I run the same code as standalone all works fine. Help will be appreciated. Thanks.

[appengine-java] Blobstore upload files from CKEditor?

2010-04-21 Thread lycnsc
This is my first time to program for Google App Engine for Java. I want to make a CMS and store user uploaded data using Blobstore. I'd like to use CKEditor as web rich text editor in my program. upload configuration example of CKEditoris is:

[appengine-java] Error handler for 403 Forbidden error

2010-04-21 Thread 6pat
Hi, all I have an application, that allows only administrator to enter it, but I want to have my own error message for other users, Here is web.xml listing: --- security-constraint web-resource-collection url-pattern//url-pattern /web-resource-collection

[appengine-java] How to get GB2312 encoding query parameters?

2010-04-21 Thread cse.zh...@gmail.com
Hi, all I have encountered a problem in getting gb2312 encoded query parameters. the situation is discribed below: the url is : http://localhost:/test2?item_name=%D6%D0%B9%FA test2 is a simple servlet: protected void doGet(HttpServletRequest request, HttpServletResponse resp)

[appengine-java] where is a secure place to put Java keystore for authentication?

2010-04-21 Thread Tristan
Hey, I stuck the keystore under an admin only directory but that's not working because normal users can't use the google data apis. Where is a secure place to put the keystore? Tristan -- You received this message because you are subscribed to the Google Groups Google App Engine for Java

Re: [appengine-java] Debugging stopped working after updating GAE to 3.1.0 and higher

2010-04-21 Thread Jason Parekh
Hey Ulrik, Ok, let's make sure a few other things are set properly: - Is the JRE used by the old web app's launch configuration the same as the new app's launch configuration? (Run Debug Configurations, click on the app on the left, then JRE tab) - Is your old web app redirecting in such a way

[appengine-java] Re: where is a secure place to put Java keystore for authentication?

2010-04-21 Thread Peter Ondruska
I store keystores in WEB-INF/classes--it is not accessible to public and is accessible context.getRealPath(WEB-INF/classes/keystore) On Apr 21, 4:43 pm, Tristan tristan.slomin...@gmail.com wrote: Hey, I stuck the keystore under an admin only directory but that's not working because normal

[appengine-java] Amazon Web Services SDK on GAE/Java?

2010-04-21 Thread mjustin
Hello, the AWS SDK for Java (http://aws.amazon.com/sdkforjava/) uses the Apache Commons HTTP library which is not compatible with GAE/Java. (Apache HTTPClient, listed on http://groups.google.com/group/google-appengine-java/web/will-it-play-in-app-engine, is a different library). Maybe it is

Re: [appengine-java] Amazon Web Services SDK on GAE/Java?

2010-04-21 Thread Carmen Delessio
Take a look at this: http://alan.blog-city.com/simpledb_sqs_java.htm It is 2 classes to access Amazon's SImpleDB and SQS services. I have experimented with this on Android. I don't see a reason it should not work in GAE/J. If you want other Amazon services, these classes can serve as a good

[appengine-java] Re: Amazon Web Services SDK on GAE/Java?

2010-04-21 Thread mjustin
Hi Carmen, thank you for your answer! This library needs to be rewritten too - it uses HTTP connection classes which are not supported in GAE/Java. So actually it is the same at the moment, if there are no other hidden surprises on the road. Regards, Michael -- You received this message

[appengine-java] Re: How to exclude the optional jars for deployment?

2010-04-21 Thread Jake
No problem :) Hm, I think that if you had chosen to set the This project has a war directory setting, and set it to src/main/webapp, this error could have gone away. Yup, I discovered that eventually - it was all about the ordering. I think the best solution here would either give a more

Re: [appengine-java] Problem Using 'Java SDK for Payflow Pro' with google app engine

2010-04-21 Thread Ikai L (Google)
Can you remove the port? Port 443 is understood if you are using the HTTPS protocol. On Wed, Apr 21, 2010 at 2:28 AM, Daud daud.a...@gmail.com wrote: Hi, I was trying to use Java SDK for Payflow Pro with google app engine, however I keep on getting this response 'Failed to connect to host

[appengine-java] Re: How to exclude the optional jars for deployment?

2010-04-21 Thread Jake
Forgot to post the relevant pom.xml bits: dependencies !-- Insert Many Workspace Dependencies Here -- dependency groupIdcom.googlecode.objectify/groupId artifactIdobjectify/artifactId version2.1/version /dependency dependency groupIdnet.sf.saxon/groupId

Re: [appengine-java] What is the best way to store child object?

2010-04-21 Thread Ikai L (Google)
Hi Andrey, I'll try to answer your questions inline. First off, I'm using these docs as reference: http://code.google.com/appengine/docs/java/javadoc/com/google/appengine/api/datastore/KeyFactory.Builder.html http://code.google.com/appengine/docs/java/datastore/transactions.html It works. But

Re: [appengine-java] WARNING: This request caused a new process to be started for your application, and thus caused your application code to be loaded for the first time. This request may thus take

2010-04-21 Thread Ikai L (Google)
Yep, we're rolling this out slowly with the 1.3.3 release to let developers know that some requests are slow because they are startup requests. On Wed, Apr 21, 2010 at 6:09 AM, Tristan tristan.slomin...@gmail.comwrote: Hey, I started seeing when a task queue starts now: WARNING: 200 OK

[appengine-java] Re: WARNING: This request caused a new process to be

2010-04-21 Thread James
You're not the only on experiencing this. Please star http://code.google.com/p/googleappengine/issues/detail?id=2396 On Apr 21, 9:09 am, Tristan tristan.slomin...@gmail.com wrote: Hey, I started seeing when a task queue starts now: WARNING: 200 OK This request caused a new process to be

Re: [appengine-java] Using DataNucleus JPA - Online Quizzes Database Design

2010-04-21 Thread bosun
My second thought after posting previous message is to modify schema of ScoreBoar and make it a real scoreboard. Old: ScoreBoard(scoreboard_id as primary key, quizz_id as foreign key to Quizzes, 100, 90, 80, 70,60,50,40,30,20,10,0). New: ScoreBoard( identity id, quizz_id, foreign key to quizzes,

[appengine-java] Datastore size growing one way

2010-04-21 Thread vinothkumar
I have the datastore growing in only one way up... The datastore size shows the size of all entities as 116 MB... However, the total stored data shows up as 40% of 1GB.. The data that are being deleted are not reflected in the total stored data size. I had around 8 indexes, deleted 4 indexes

[appengine-java] Sending multi-part email from Googl e App Engine using Spring’s JavaMailSender

2010-04-21 Thread Hannu Leinonen
I've got a problem with sending Multi-Part email using Spring's JavaMailSender. It works fine without the multi-part (modified from the example in Spring documentation): final MimeMessagePreparator preparator = new MimeMessagePreparator() { public void prepare(final MimeMessage mimeMessage)

[appengine-java] Chat Time transcript for April 21, 2010

2010-04-21 Thread Jason (Google)
The high-level summary and complete transcript of the April 7th edition of the IRC office hours is pasted below. Join us in two weeks, Wednesday, May 5th from 7:00-8:00 p.m. PST for the next installment. Note: On the first and third Wednesdays of every month, the App Engine team signs into the

[appengine-java] App Engine SDK 1.3.3 is out!

2010-04-21 Thread Ikai L (Google)
Hi everyone! I just wanted to let you all know that App Engine 1.3.3 SDK is out. The blogpost is here: http://googleappengine.blogspot.com/2010/04/app-engine-sdk-133-released.html http://googleappengine.blogspot.com/2010/04/app-engine-sdk-133-released.htmlYou can download this from the standard

Re: [appengine-java] using an Objectify query filter with IN -- IllegalArgumentException

2010-04-21 Thread Jeff Schnitzer
Looks like you found a bug. I should be able to have a unit test and a fix checked in tonight. Sorry about that! Jeff On Wed, Apr 21, 2010 at 1:43 PM, Larry White ljw1...@gmail.com wrote: Hi, I'm trying to pass in a collection of Strings to be used in a filter using Objectify (which I

[appengine-java] Re: WARNING: This request caused a new process to be started for your application, and thus caused your application code to be loaded for the first time. This request may thus take

2010-04-21 Thread Tristan
Is it possible to make it an INFO and not a WARNING? Should I start an issue? As a programmer, I really don't have any direct control over this. All the WARNINGS are just masking other important issues that should be warnings. On Apr 21, 1:33 pm, Ikai L (Google) ika...@google.com wrote: Yep,

Re: [appengine-java] using an Objectify query filter with IN -- IllegalArgumentException

2010-04-21 Thread Jeff Schnitzer
Fixed. Although you might prefer to issue a batch get() operation instead of the query. There might be a performance difference - I'm not sure. Jeff On Wed, Apr 21, 2010 at 6:46 PM, Jeff Schnitzer j...@infohazard.org wrote: Looks like you found a bug.  I should be able to have a unit test and

[appengine-java] Re: Datastore size growing one way

2010-04-21 Thread vinothkumar
Thanks Ikai for a prompt response! Its been more than 24hours now and the datstore still shows up as 40% of 1GB usage. Generally, how long does it take to update? Also, in the past even when I delete significant amount of data from datastore, the datastore size never went down. However, the

[appengine-java] Re: Error message after updating AppEngine in my project

2010-04-21 Thread 时空之蕊
Me too have the misstake! It's not effect gae application running!but it's :( ubuntu 9.10 64b,Eclipse 3.5,GAE 1.3.3,jdk1.6.20 -- 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] Query returns more than limit

2010-04-21 Thread takeru sasaki
Hello, I have seen problem with Java, like this: - Fixed a datastore issue where an error was thrown when setting a query offset to more than the number of results throws an error. http://code.google.com/p/googleappengine/issues/detail?id=2875 I send this query:

[appengine-java] Indexes for one field

2010-04-21 Thread Timofey Koolin
Can I see how mach space take one-field indexes and every index - for decide about delete some indexes and monitoring for indexes that i don't want create (for example if i forgot add gae.unindexed in JDO or make mistake in it). -- You received this message because you are subscribed to the

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

2010-04-21 Thread Guillaume Laforge
Well done for the release! By the way: On Thu, Apr 22, 2010 at 00:37, Ikai L (Google) ika...@google.com wrote: [...] - Added two new system properties com.google.appengine.application.id and   com.google.appengine.application.version What about a property like

Re: [google-appengine] my domains not work in GAE, 通过GAE安装的域名无法访问了

2010-04-21 Thread zooly zou
xx.appspot.com is ok! 2010/4/21 Will vocalster@gmail.com Yes, your guess is correct, it is because of GFW. Will 2010/4/20 时空之蕊 skzr@gmail.com 以前可以通过自己的域名访问GAE程序,目前在中国大陆无法通过自己的域名访问GAE程序 难道是伟大的GFW? in china now we can't visit my gae(http://cms4gae.appspot.com/) with my domain:

[google-appengine] Re: Warning: This request caused a new process to be started for your application

2010-04-21 Thread Tim Hoffman
Looks like app engine is now logging when a new instance is started up. These warnings correspond with my own logging of an instance startup. T On Apr 21, 11:14 am, Kyle Jensen kljen...@gmail.com wrote: I'm seeing a ton of these warnings today: This request caused a new process to be started

[google-appengine] Re: Security

2010-04-21 Thread Valentino Hankypants
thx ikai, this paper fits my needs, writing some pages about security in google app engine in my master thesis greatz valentino On Apr 14, 8:19 pm, Ikai L (Google) ika...@google.com wrote: Here's a white paper that we have about Google Apps. Many of the same principles apply. Do you have any

[google-appengine] Re: Inbound emails on own domain

2010-04-21 Thread akakunin
Actually, it is not a problem to setup mail in Google Apps, problem, how to make emails, sent to this domain (used for hosting GAE application) come into my MailHandler in my GAE application. So, looks like only option to setup own mail-server for mydomain.com and automatically forward all emails

[google-appengine] Re: Warning: This request caused a new process to be started for your application

2010-04-21 Thread nasim
This is very bad. I have a cron task that runs every minute. I don't need to see this message every minute in my log. Please make it go away. On Apr 21, 8:44 am, Tim Hoffman zutes...@gmail.com wrote: Looks like app engine is now logging when a new instance is started up. These warnings

[google-appengine] Re: The API call mail.Send() required more quota than is available.

2010-04-21 Thread suri
I made speed 1/m and fetching limit less then it's not showing that exception but task queue is send mail again and again to same email id. Any solution for this problem? Thanks in advance On Apr 21, 9:51 am, suri suresh1d...@gmail.com wrote: Thanks Wooble for reply, actually I made speed to

[google-appengine] Re: Implementing a follower system similar to Twitter?

2010-04-21 Thread Mark
Hey Martin, thanks for sharing your code! I will have a read through it today. I initially wanted to try a very naive and simple approach. Something like (I am using java btw): class User { @PrimaryKey private String mUsername; } class Follow { @PrimaryKey

[google-appengine] Re: will GAE support private cloud?

2010-04-21 Thread disorderdev
Yes, you're right, I sell it to customers, but that would be difficult to upgrade, and customer has to hire someone to maintains the GAE, I just hope google can provide a much easier way. On Apr 21, 12:13 am, Wooble geoffsp...@gmail.com wrote: You can sell your code to the customer and have them

[google-appengine] Feature Request - viewable task payload in dashboard

2010-04-21 Thread Blake
Sometimes a task keeps failing and retrying, which is great, but I'd like to be able to view the payload in the dashboard to see what it's choking on. I'm using logging right now to get around this, which is fine, but viewing the payload from the dashboard would be cool. Anyone agree? -- You

[google-appengine] Catch-all filter forwarding help

2010-04-21 Thread Mark
Hi, I am trying to use a catch-all filter to support something like mod_rewrite on apache. The goal was to let users enter a username in the url like: www.mysite.com/johndoe and then I would generate a page for the user on the fly. I got help here creating this filter to do that (which

Re: [google-appengine] Catch-all filter forwarding help

2010-04-21 Thread Stephan Hartmann
Usually, just calling chain.doFilter(req, res) would do the trick. 2010/4/21 Mark mar...@gmail.com Hi, I am trying to use a catch-all filter to support something like mod_rewrite on apache. The goal was to let users enter a username in the url like: www.mysite.com/johndoe and then

[google-appengine] Re: impersonation in task queue

2010-04-21 Thread Wooble
On Apr 21, 1:12 am, Bhavana bhavanamo...@gmail.com wrote: In my application i need to send mail to more than 1000 people,so for this i used task queue.but now my problem is other than admin no one can send mail from my application. the errror ' unauthorised sender ' is raising. Even the

[google-appengine] Re: Inbound emails on own domain

2010-04-21 Thread Wooble
On Apr 21, 5:02 am, akakunin akaku...@gmail.com wrote: Actually, it is not a problem to setup mail in Google Apps, problem, how to make emails, sent to this domain (used for hosting GAE application) come into my MailHandler in my GAE application. So, looks like only option to setup own

[google-appengine] Re: Catch-all filter forwarding help

2010-04-21 Thread Mark
Cool that works, thanks Stephan. On Apr 21, 6:32 am, Stephan Hartmann hartm...@metamesh.de wrote: Usually, just calling chain.doFilter(req, res) would do the trick. 2010/4/21 Mark mar...@gmail.com Hi, I am trying to use a catch-all filter to support something like mod_rewrite

[google-appengine] Error with DOS

2010-04-21 Thread Jairo Vasquez
Hi, I'm getting this error when I'm updating: Error 400: --- begin server output --- Error while parsing yaml file: Unable to assign value '94.23.225.10' to attribute 'subnet': 'module' object has no attribute 'IPNetwork' Please let me know -- Jairo Vasquez Moreno Mentez Developer

[google-appengine] How to deploy .Net App on Google App

2010-04-21 Thread SuNiL
Hello All, I am new with Google app. deployment. I want to deploy my .Net application on the google app. How can it be possible? Thanks in Advance -- 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] Re: Prerelease: New Appengine Bulkloader

2010-04-21 Thread Jayz
A welcome improvement over the previous one. I tried this one on my java app. There is a small concern, the generated yaml file contains duplicate properties (with the message # Warning: This property is a duplicate, but with a different kind.) I had to comment out all the duplicate properties to

Re: [google-appengine] Having trouble updating my app

2010-04-21 Thread Kimia
I see you app, it just a Hello World application, but can you run it on your local system? Will Tran wrote: Hi, I am running appcfg.py and the credentials are correct. It seems to have uploaded the new files but continuously is stuck with the message Checking if new version is ready to

[google-appengine] Re: my domains not work in GAE, 通过GAE安装的域名无法访问了

2010-04-21 Thread Kimia
ghs.google.com has been blocked from China Mainland, but of cause you can visit by a proxy On Apr 21, 2:25 pm, zooly zou izo...@gmail.com wrote: xx.appspot.comisok! 2010/4/21 Will vocalster@gmail.com Yes, your guess is correct, it is because of GFW. Will 2010/4/20 时空之蕊

[google-appengine] Invalid URL exception on appengine server

2010-04-21 Thread Maxime
Hi, I am facing an issue I don't understand when I deploy my app on google servers (it works fine when I run it on the local dev server): I get an invalid URL exception when I try to connect to the OpenCalais API, with a GET method in JAVA. This is the URL I am trying to connect to (URL

[google-appengine] Re: Having trouble updating my app

2010-04-21 Thread Kimia
I see you app, it is a sample Hello World application, but can you make it run on your local system? On Apr 21, 5:57 am, Will Tran will.leafmed...@gmail.com wrote: Hi, I am running appcfg.py and the credentials are correct. It seems to have uploaded the new files but continuously is stuck

[google-appengine] relationship...

2010-04-21 Thread Matlab
Hi friends, I'm new at this forum and hope that everything will be 'OK'... My question is that what is the relationship between GAE and GWT? Thanks in advance, Matlab -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group,

[google-appengine] Discussion on google-app-engine-open-source-projects

2010-04-21 Thread bowman.jos...@gmail.com
Can the contacts for gaeutiltities, top project, be changed to bowman.jos...@gmail.com? the link there is to the old google code hosted project, which I believe is causing some confusion as I've moved it to github. -- You received this message because you are subscribed to the Google Groups

[google-appengine] Re: Inbound emails on own domain

2010-04-21 Thread akakunin
Hi! Thank you very much for answers! On Apr 21, 5:49 pm, Wooble geoffsp...@gmail.com wrote: Google Apps comes with email service; you can set up the forwarding there without running your own server.  You can either do it for individual addresses by creating accounts and setting up forwarding

[google-appengine] Re: How to deploy .Net App on Google App

2010-04-21 Thread Wooble
On Apr 21, 8:38 am, SuNiL sunil.g...@gmail.com wrote: Hello All, I am new with Google app. deployment. I want to deploy my .Net application on the google app. How can it be possible? You can't do that, unless someone's implemented .Net on the JVM. -- You received this message because you

Re: [google-appengine] Invalid URL exception on appengine server

2010-04-21 Thread Jody Belka
The first thought that comes to mind is the length of the url. Just looking at the url it's very long, and iirc there's a limit to how long it can be. Maybe you're hitting that limit? On 21 April 2010 13:49, Maxime mgosm...@gmail.com wrote: Hi, I am facing an issue I don't understand when I

[google-appengine] Re: relationship...

2010-04-21 Thread Wooble
On Apr 21, 9:47 am, Matlab rizvan.asga...@yahoo.com wrote: Hi friends, I'm new at this forum and hope that everything will be 'OK'... My question is that what is the relationship between GAE and GWT? Thanks in advance, Matlab They're both made by Google and they both have something to do

Re: [google-appengine] How to deploy .Net App on Google App

2010-04-21 Thread mloftis
It isn't. It may never be. .Net is a Microsoft specific language. App engine uses sets of API's for python or java and your app must be written with these API's in one of those two open languages. -Original Message- From: SuNiL sunil.g...@gmail.com Date: Wed, 21 Apr 2010 05:38:47

Re: [google-appengine] Re: relationship...

2010-04-21 Thread Jaroslav Záruba
Basically GAE is a web-hosting with (currently) two platforms available - Python and Java, and with kinda weird database to build upon. :) On Wed, Apr 21, 2010 at 4:52 PM, Wooble geoffsp...@gmail.com wrote: On Apr 21, 9:47 am, Matlab rizvan.asga...@yahoo.com wrote: Hi friends, I'm new at

Re: [google-appengine] Re: Inbound emails on own domain

2010-04-21 Thread Jeff Schnitzer
The docs for Google Apps For Domains suggest that when you enable Premier Edition you will get additional options for routing email. It costs $50/user/year. I haven't enabled it so I can't tell you if it works. Beware that if you switch a domain to Premier you could have trouble getting it back

[google-appengine] Re: Inbound emails on own domain

2010-04-21 Thread akakunin
Thank you Jeff! Probably it is an option for me! On Apr 21, 8:01 pm, Jeff Schnitzer j...@infohazard.org wrote: The docs for Google Apps For Domains suggest that when you enable Premier Edition you will get additional options for routing email. It costs $50/user/year.  I haven't enabled it so

[google-appengine] new warning

2010-04-21 Thread alf
Since yesterday or so appear a new warning in my application that i have never seen before somebody can help me saying how can solve this matters. message logging This request caused a new process to be started for your application, and thus caused your application code to be loaded for the

Re: [google-appengine] Calculating datastore usage per user of app

2010-04-21 Thread Ikai L (Google)
There's no API that describes space usage per user. You'll have to build this yourself, though it may be more difficult to do things such as calculate storage space taken up by indexes and such. On Tue, Apr 20, 2010 at 10:48 AM, jeffrey jeff...@zemericks.com wrote: Hi, i'd like to implement

Re: [google-appengine] Digest for google-appengine@googlegroups.com - 25 Messages in 16 Topics

2010-04-21 Thread Gleidson G Moura
I'm doing an application with JPA and is giving the error [is managed by a different Object Manager] can someone help me Thanks 2010/4/21 google-appengine+nore...@googlegroups.com:   Today's Topic Summary Group: http://groups.google.com/group/google-appengine/topics Inbound emails on own

Re: [google-appengine] java.io.IOException: Error posting to URL: http://appengine.google.com/api/appversion/create?app_id=9905107version=1

2010-04-21 Thread Ikai L (Google)
We don't generally delete applications. Could you have recorded the application ID incorrectly? On Tue, Apr 20, 2010 at 8:45 PM, Roshni Basu roshni...@gmail.com wrote: How to solve this issue? On Wed, Apr 21, 2010 at 8:10 AM, Roshni Basu roshni...@gmail.com wrote: Yeah my appication id is

Re: [google-appengine] new warning

2010-04-21 Thread Ikai L (Google)
Yes, this is to be expected. Previously, you would have just received a warning about taking up too much CPU. On Wed, Apr 21, 2010 at 9:56 AM, alf alberto@gmail.com wrote: Since yesterday or so appear a new warning in my application that i have never seen before somebody can help me saying

[google-appengine] Re: API to access admin page data? [Was: Re: Sign in to Google App Engine Programmatically]

2010-04-21 Thread Harlan Crystal
More generally, is there any plans to turn the data found on the admin console into something that can be queried programmatically? The servers running on appengine are essential to my business. Ideally I would be able to query out certain metrics from the admin page and send alerts to my pager

[google-appengine] Re: stuck in loop, deploying

2010-04-21 Thread martinfcasey
it's not happening anymore. -- 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-appeng...@googlegroups.com. To unsubscribe from this group, send email to google-appengine+unsubscr...@googlegroups.com.

[google-appengine] You are accessing this page from a forbidden country!!

2010-04-21 Thread Kasra Green
Hi guys, According to the new legislation within the US, companies are exempt from sanctions against Iran given that their product is to promote free internet and anti-censorship software. I am wondering when, if at all, GAE will allow the administrators to use this new legislation to provide

[google-appengine] Chat Time transcript for April 21, 2010

2010-04-21 Thread Jason (Google)
The high-level summary and complete transcript of the April 7th edition of the IRC office hours is pasted below. Join us in two weeks, Wednesday, May 5th from 7:00-8:00 p.m. PST for the next installment. Note: On the first and third Wednesdays of every month, the App Engine team signs into the

[google-appengine] App Engine SDK 1.3.3 is out!

2010-04-21 Thread Ikai L (Google)
Hi everyone! I just wanted to let you all know that App Engine 1.3.3 SDK is out. The blogpost is here: http://googleappengine.blogspot.com/2010/04/app-engine-sdk-133-released.html http://googleappengine.blogspot.com/2010/04/app-engine-sdk-133-released.htmlYou can download this from the standard

[google-appengine] Re: Error with DOS

2010-04-21 Thread vivpuri
I am also getting the same error. This is an urgent issue. I am getting thousands of hits for few IPs and i need to block them. Please help.. On Apr 21, 10:18 am, Jairo Vasquez jairo.vasq...@gmail.com wrote: Hi, I'm getting this error when I'm updating: Error 400: --- begin server output ---

[google-appengine] Task queues + scheduled maintenance?

2010-04-21 Thread Harlan Crystal
Can I add tasks to my queue during a scheduled maintenance period? Or does adding tasks, itself, require a writeable datastore? For instance, all the writes that I would plan to send to the datastore --- can I instead queue these writes up as tasks which can all be processed once the datastore

[google-appengine] How to write entity key safely in a form?

2010-04-21 Thread Matt C
I'm writing a goal tracking application. I'd like to write the goal entity key into a form like this: form action=/complete/entity_key method=post However, I don't want a malicious user to be able to guess someone else's ID and complete their goal for them. My first thought on getting around

[google-appengine] Re: How to write entity key safely in a form?

2010-04-21 Thread Tristan
the goal entity should have a user's entity key that you get out of the session object on the server. when you then process 'complete' action, you should check first that the user's entity key in goal entity matches the one you got from server session. otherwise you're leaving yourself

Re: [google-appengine] Re: How to write entity key safely in a form?

2010-04-21 Thread Matt Conrad
Doh. I was thinking that I would avoid an extra trip to the datastore this way. But of course I have to do the .get() in order to change the goal entity. At which point I can check the user's key as you suggest. Please excuse my thinko. Unless there is a way to do a .put() on an pre-existing

Re: [google-appengine] Re: my domains not work in GA E,通过GAE安装的域名无法访问了

2010-04-21 Thread 杨浩
Thanks! [?] my life is Good! 有人推荐一个基于java的gae代理软件不? -- 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-appeng...@googlegroups.com. To unsubscribe from this group, send email to

[google-appengine] Re: How to write entity key safely in a form?

2010-04-21 Thread Tristan
You could create a brand new entity with something like Entity entity = new Entity(entityKey). You could then populate it with the data and then do a .put(entity). This will effectively execute an update without doing a .get(), but you have to trust your data because you're replacing what you