[appengine-java] UnknownException

2010-02-16 Thread aswath satrasala
I was working on my application (vs-accounting.appspot.com), and suddenly I started getting errors for the same operation I performed earlier. I looked into the logs. I get the following error. Please see if the following information from the logs can help. Is there a way to traceback more

[appengine-java] Re: Web XML validation NPE upon launching the 1.3.1 dev server

2010-02-16 Thread Ian Marshall
Can no one help me? I am a bit stuck on this one. My web.xml file is: ?xml version=1.0 encoding=UTF-8? web-app filter filter-nameWicketApplication/filter-name filter-classorg.apache.wicket.protocol.http.WicketFilter/filter- class init-param

Re: [appengine-java] Re: How would you suggest to have a dynamic settings in my app ?

2010-02-16 Thread Shai Levy
1. Well, I guess that's the best option. Normally from my past experience a setting file would include the db connection properties and then I would just add more settings to it. I guess that as long as I don't need to save settings regarding what to do if the datastore has a problem - it would

[appengine-java] Re: Datastore migration

2010-02-16 Thread mably
If you need an integrated backup solution in GAE, please star issue : http://code.google.com/p/googleappengine/issues/detail?id=776 On 2 fév, 19:22, Moritz mor...@cloudme.org wrote: Hello everyone, after a couple of versions of my application I found out that I need to change the datamodel

Re: [appengine-java] Content caching and Compression

2010-02-16 Thread Stephan Hartmann
AFAIK gzip compression is turned on by default. You can verify this by looking at the content-encoding response header (i use the Live HTTP headers plugin for firebug/firefox). Regards, Stephan 2010/2/15 zainul franciscus zainul.francis...@gmail.com I was browsing through Google App Engine

Re: [appengine-java] DeadlineExceededException on LogFactory.getClass()

2010-02-16 Thread Raphael André Bauer
On Mon, Feb 15, 2010 at 4:29 PM, Heru Martinus Salim heru.sa...@googlemail.com wrote: Hello, I got a DeadlineExceededException as I initialize my Logger. Here is the code which threw this exception: private final org.apache.commons.logging.Log LOG =

Re: [appengine-java] Mail API / Sender Email Address

2010-02-16 Thread Stephan Hartmann
You could try to login to app-engine with your google apps account under https://appengine.google.com/a/YOURDOMAIN.COM/ Of course you have to create and deploy a new app instance in this account. I guess it is related to the fact that real google accounts (like google mail) and google apps

[appengine-java] Re: JPA still has the 1000 record limit in GAE 1.3.1?

2010-02-16 Thread Timofey Koolin
I don't know about JPA, but with JDO you can use cursors now for simple get more than 1000 records. http://code.google.com/appengine/docs/java/datastore/queriesandindexes.html#Query_Cursors It new new feauture http://code.google.com/p/googleappengine/wiki/SdkForJavaReleaseNotes On Feb 15,

Re: [appengine-java] AppCfg error

2010-02-16 Thread 杨浩
you can see:Using Apache Anthttp://code.google.com/appengine/docs/java/tools/ant.html 在 2010年2月16日 上午5:40,Andreas Blomqvist blomqvist.andr...@gmail.com写道: Hi Still has this problem. Using Netbeans 6.8 on SnowLeopard 10.6 (OSX) What build file are you refering to? The build-impl.xml or the

[appengine-java] Re: Problem with Junit Test with JDO

2010-02-16 Thread Timofey Koolin
Thanks, but error not repeated, when I re-create project. On Feb 13, 11:50 pm, Moritz mor...@cloudme.org wrote: Remove datanucleus-appengine-1.0.5.final.jar from your build path, but leave it in the WEB-INF/lib folder. On 13 Feb., 07:07, Timofey Koolin timo...@koolin.ru wrote: I use

[appengine-java] GWT Integration with Acegi to run on AppEngine.

2010-02-16 Thread VSS
Hi, I would like to know if GWT can be integrated with Acegi to run on AppEngine. I have read the link below. But, looking for more detailed information. http://code.google.com/p/gwt-ent/wiki/IntegrationGWTWithAcegi Can anyone provide any better ways of providing form based login. I know that

Re: [appengine-java] Re: Handling HardDeadlineExceededError

2010-02-16 Thread Don Schwarz
We don't currently make any guarantees about throwing DeadlineExceededException or HardDeadlineExceededError if you're in a tight CPU loop. We may in the future, but for the moment please only rely on getting notifications of deadlines if you're doing one of the following: a) periodically making

[appengine-java] How to get testing working with anything other than the default queue

2010-02-16 Thread Will Bunker
Prior to version 2.01 I was able to get testing to work with other queues by the following code: LocalTaskQueue ltq = LocalTaskQueueTestConfig.getLocalTaskQueue(); LocalServiceContext ctx = new LocalServiceContext() { public File getAppDir() {

Re: [appengine-java] How to get testing working with anything other than the default queue

2010-02-16 Thread Max Ross (Google)
Try this: private final LocalServiceTestHelper helper = new LocalServiceTestHelper(new LocalTaskQueueTestConfig()) { @Override protected LocalServerEnvironment newLocalServerEnvironment() { final LocalServerEnvironment lse =

[appengine-java] Re: 500 internal server error

2010-02-16 Thread freak3y3
You can try logging into App Engine Admin Panel (http:// appengine.google.com), select Logs and you can filter the Logs by Error,Info,Debug,etc, and you might see the stacktrace where it breaks in your code. On Feb 14, 5:22 am, karthikeyan s.p spkarthikeya...@gmail.com wrote: Hi,  I have

[appengine-java] Citical Security error in Accounts Java API: request.getUserPrincipal() gets wrong username/email

2010-02-16 Thread tsschnoc
Hello, I use App Engine in my Google Apps domain and restricted the authentification of app engine to my apps domain. (see http://code.google.com/appengine/articles/auth.html ) I developed a widget and use this in multiple accounts of my google apps domain. When i switch from one account (of my

[appengine-java] NullPointerException at Transaction.commit()

2010-02-16 Thread sushama
import java.util.List; import javax.jdo.JDOHelper; import javax.jdo.PersistenceManager; import javax.jdo.PersistenceManagerFactory; import javax.jdo.Transaction; import javax.persistence.EntityManager; import javax.persistence.EntityManagerFactory; import javax.persistence.EntityTransaction;

[appengine-java] Jpa gae nullpoiterException

2010-02-16 Thread sujata pagar
Dear all, I am getting NullPointerException in the following code for the transaction tx. Please reply me soon. Code: package com.wissen.enterprisebysush. server; import java.util.List; import javax.jdo.JDOHelper; import javax.jdo.PersistenceManager; import

[appengine-java] Compass on Google App Engine

2010-02-16 Thread yonny
Hello Folks, I think deploying a compass app on gae is not possible because the core compass interface extends javax.naming.Referenceable which is not on google's whitelist.I encoutered a similar problem when I call buildCompass() It throws a NoClassDefFoundError on

[appengine-java] Null Pointer Exception at the time of transaction commit.

2010-02-16 Thread Sushama Khadilkar
package com.wissen.enterprisebysush.server; import java.util.List; import javax.jdo.JDOHelper; import javax.jdo.PersistenceManager; import javax.jdo.PersistenceManagerFactory; import javax.jdo.Transaction; import javax.persistence.EntityManager; import javax.persistence.EntityManagerFactory;

[appengine-java] problem while deploying app engine

2010-02-16 Thread vengatesh
Hi, I just started using GWT and I am trying to deploy my first app on app engine.. I am getting the following error while doing Deploy to App Engine... Unable to update app: Connection timed out: connect com.google.appengine.tools.admin.AdminException: Unable to update app: Connection timed

[appengine-java] Re: How to get testing working with anything other than the default queue

2010-02-16 Thread Will Bunker
Actually it doesn't seem to be reading the queue at all. It is coming from the standard directory in WAR, but doesn't seem to pick it up. I am on Mac OS if that makes any difference. On Feb 16, 9:35 am, Max Ross (Google) maxr+appeng...@google.com wrote: Hi Will, You're loading queue.xml from

Re: [appengine-java] Re: How to get testing working with anything other than the default queue

2010-02-16 Thread Max Ross (Google)
By default the LocalTaskQueueTestConfig configures the local task queue service to not automatically execute tasks: http://code.google.com/appengine/docs/java/tools/localunittesting/javadoc/com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.html Or are you saying it's not

[appengine-java] Re: How to get testing working with anything other than the default queue

2010-02-16 Thread Will Bunker
This workaround works, all I have to do is give it: return new File(war); and it finds the queue.xml file. Is there another location other than the war/WEB-INF/queue.xml the file is supposed to be in? -- You received this message because you are subscribed to the Google Groups Google App

[appengine-java] Re: How to get testing working with anything other than the default queue

2010-02-16 Thread Will Bunker
I am saying that it is not reading queue.xml. I am testing to make sure a certain function puts x number tasks in a queue that is not the default. It doesn't load the queue.xml file unless I use your workaround (then it works great.) On Feb 16, 10:21 am, Max Ross (Google)

Re: [appengine-java] Re: How to get testing working with anything other than the default queue

2010-02-16 Thread Max Ross (Google)
I see. In the test environment it looks in . by default so if you place queue.xml in the directory from which you're executing the test it should pick it up. On Tue, Feb 16, 2010 at 10:35 AM, Will Bunker w...@thebunkers.com wrote: I am saying that it is not reading queue.xml. I am testing to

[appengine-java] Re: How to get testing working with anything other than the default queue

2010-02-16 Thread Will Bunker
Is that the best expected behavior. Should I have to remember to move over a new copy of queue.xml if it changes in the war directory. Or should it pick up the actual directory?? I am thinking of doing a link on the file system as a workaround. Thanks for your help. On Feb 16, 10:47 am, Max

[appengine-java] Re: How to get testing working with anything other than the default queue

2010-02-16 Thread Will Bunker
I put in queue.xml in the test directory and it didn't seem to find it. On Feb 16, 10:47 am, Max Ross (Google) maxr+appeng...@google.com wrote: I see.  In the test environment it looks in . by default so if you place queue.xml in the directory from which you're executing the test it should

[appengine-java] Re: Tag search

2010-02-16 Thread Max
I am sorry but it does not work. With 1 objects and searching for 2 tags we got following error. com.google.appengine.api.datastore.DatastoreNeedIndexException: The built-in indices are not efficient enough for this query and your data. Please add a composite index for this query.. Unable to

Re: [appengine-java] Re: Handling HardDeadlineExceededError

2010-02-16 Thread Esteban Masoero
Thanks for the response Don. I would suggest altering the page http://code.google.com/intl/en/appengine/docs/java/runtime.html to clarify this. Thanks again, Esteban El 16/02/2010 13:08, Don Schwarz escribió: We don't currently make any guarantees about throwing DeadlineExceededException

Re: [appengine-java] can not get message containing embedded widget to work

2010-02-16 Thread Ikai L (Google)
This sounds like a Google Web Toolkit question. Have you tried posting there? http://groups.google.com/group/Google-Web-Toolkit On Fri, Feb 12, 2010 at 3:45 PM, laurent cha...@gmail.com wrote: when defining a simple embedded link in a msg, using uibinder, I can not get the text of the

Re: [appengine-java] GWT Developer Plugin for Safari 4.0.4!

2010-02-16 Thread Ikai L (Google)
Can you ask on the Google Web Toolkit groups? http://groups.google.com/group/Google-Web-Toolkit On Sat, Feb 13, 2010 at 11:11 AM, Babgali babuvi...@gmail.com wrote: Can any one please help me out on getting GWT Developer Plugin for Safari 4.0.4 to read MIME type application/x-gwt-hosted-mode.

Re: [appengine-java] Re: Handling HardDeadlineExceededError

2010-02-16 Thread Esteban Ignacio Masoero
In case anyone is interested in the feature Don talked about, you can vote it here: http://code.google.com/p/googleappengine/issues/detail?id=2782 . Regards, Esteban On Tue, Feb 16, 2010 at 5:56 PM, Esteban Masoero emaso...@getsense.com.arwrote: Thanks for the response Don. I would suggest

Re: [appengine-java] delete log and entities

2010-02-16 Thread Esteban Masoero
Hi, I'm also interested in a both features, mainly the datastore one. Are we going to have something like this soon? Thanks, Esteban El 30/01/2010 6:08, Andrés Cerezo escribió: Hello!! Ho can I delete the logs and the entities of my project in app engine? I need it to initializate all the

[appengine-java] App Engine and Spring slow start up

2010-02-16 Thread luijar
Hello Google App Engine forum, We have been seeing ever since we deployed our applications (currently 3 of them) that when our application instances become idle (they have not been hit for x amount of seconds) subsequent requests return with a 500 response. Logs show a hard deadline exceeded

Re: [appengine-java] Re: Getting the size of a http request?

2010-02-16 Thread Ikai L (Google)
This data may come from a system outside App Engine before being sent to the request logs. At any rate, it's not available in an API yet, and would likely only be in aggregated form or seriously delayed. At any rate, you may wish to create a feature request and star it:

[appengine-java] How to get more than one Testing Environment going

2010-02-16 Thread Will Bunker
I have a section of code that uses both TaskQueue and Datastore services. I can get one or the other working with: private final LocalServiceTestHelper helper = new LocalServiceTestHelper(new LocalDatastoreServiceTestConfig()); or private final LocalServiceTestHelper helper =

[appengine-java] Problems using a ThreadLocal variable

2010-02-16 Thread Esteban Masoero
Hi there: Since today, my app started to have problems when using a ThreadLocal variable. I'm using wicket framework, and it happens that the first request to the page is fine, but sometimes I get an exception caused by wicket saying that the app (which is stored in a threadlocal variable)

Re: [appengine-java] Custom User Management using App Engine and GWT

2010-02-16 Thread Ikai L (Google)
Yes, though you will have to maintain your own User models and not use the UsersService (read only). You could also use GData and work with User's contact and calendar information, to name a few places you could start. On Tue, Feb 16, 2010 at 8:56 AM, VSS shyamsunder...@gmail.com wrote: Hi,

Re: [appengine-java] Re: Tag search

2010-02-16 Thread Ikai L (Google)
How many different kinds of tags are there? Is this an exploding indexes situation? http://code.google.com/appengine/docs/python/datastore/queriesandindexes.html#Big_Entities_and_Exploding_Indexes On Tue, Feb 16, 2010 at 12:34 PM, Max max.seven@gmail.com wrote: I am sorry but it does not

[appengine-java] Re: bulk download error 403

2010-02-16 Thread Matthew Blain
The Google Apps control panel does not affect who is a admin on a particular app engine application. That's controlled by the App Engine admin console, e.g. http://appengine.google.com/permissions?app_id=myprogram . For remote_api to work you also need the admin to match the authentication option

[appengine-java] Re: Bulk Upload with Authentication

2010-02-16 Thread Matthew Blain
I've responded in the other thread. On Feb 14, 1:01 pm, lembas keremo...@gmail.com wrote: I have a Java-app-with-authentication. I created it this way. I wish I had not. I need to upload bulk data. I am waiting for months but Java still cannot do it. I tried to do it with Python. I cannot

Re: [appengine-java] Re: How to get testing working with anything other than the default queue

2010-02-16 Thread Max Ross (Google)
Sorry Will, we look for ./WEB-INF/queue.xml by default. Anyway glad you got it working with the workaround. I'll get this straightened out for the next release. Max On Tue, Feb 16, 2010 at 11:41 AM, Will Bunker w...@thebunkers.com wrote: I put in queue.xml in the test directory and it didn't

[appengine-java] Creating a key for retrieval, but the key id is zero (IllegalArgumentException)

2010-02-16 Thread Clint
I'm not sure what I'm doing wrong here. I'm persisting an object with a key created using a unique string, in this case the user id. However, to make things more URI friendly, I'm using the Key.getId() of these objects to serve as a unique id (uid). The first entity I save has key.getId() ==

[appengine-java] Re: Problems using a ThreadLocal variable

2010-02-16 Thread Brian
I have not used Wicket myself, but have you seen http://groups.google.com/group/google-appengine-java/web/will-it-play-in-app-engine ? It looks like Wicket must be massaged a little to work... On Feb 16, 3:36 pm, Esteban Masoero emaso...@getsense.com.ar wrote: Hi there: Since today, my app

[appengine-java] Re: Request was aborted after waiting too long to attempt to service your request.

2010-02-16 Thread sdr
I am also getting this error on a simple app that sends back hello world essentially. There does seem to be something strange going on because I'm the only one accessing the app, so it couldn't be simultaneous requests. Have you found anything around this? On Jan 22, 11:44 am, Locke

[appengine-java] Problem whit upload form multipart

2010-02-16 Thread NIko Judo
Hola he probado el codigo siguiente para recibir un formulario multipart en mi aplicacion : Test folowing code import org.apache.commons.fileupload.FileItemStream; import org.apache.commons.fileupload.FileItemIterator; import org.apache.commons.fileupload.servlet.ServletFileUpload; import

[appengine-java] Re: Google Plugin for Eclipse 1.3 plans

2010-02-16 Thread KasperDK
Hi all, Where exactly is the Google Plugin for Eclipse preview located ? Or is it not released yet ? Im dying to try it out :-) Cheers, :-) Kasper On Feb 4, 8:52 pm, Keith Platfoot kplatf...@google.com wrote: Hey all, Many of you have reported incompatibilities between the Google Plugin for

Re: [appengine-java] Problem whit upload form multipart

2010-02-16 Thread John Patterson
Do you have a different version of the jar in your lib directory to the one on your build path? On 17 Feb 2010, at 09:11, NIko Judo wrote: Hola he probado el codigo siguiente para recibir un formulario multipart en mi aplicacion : Test folowing code import

Re: [appengine-java] how to keep fields unique

2010-02-16 Thread John Patterson
You could use transactions if all Servers are in the same entity group. In a transaction you can query for existing A specifying the ancestor in the query. When you find no other Server with the key you can store it - also with the same ancestor - then commit the transaction. If another

[appengine-java] [URGENT RFH] Help on com.google.appengine.repackaged.com.google.common.base.FinalizableReferenceQueue init: Failed to start reference finalizer thread

2010-02-16 Thread imyousuf
Hi, I am continuously getting the exceptions mentioned below. Can someone please help me? I have no idea why this exception occurs :(, PLEASE HELP! /Imran 02-16 08:34PM 17.041 com.google.appengine.repackaged.com.google.common.base.FinalizableReferenceQueue $SystemLoader loadFinalizer: Not

[appengine-java] Production Strange behavior for Struts 2 Iterator Tag

2010-02-16 Thread MKumar
Hi, I have a struts2 based application running beautifully till time. I am using struts2 tag extensively, and its working fine and pulling the stuffs effectively from valuestack. s:iterator value=adminUserList status=status span s:property value=#status.count//span span id=loginIds:property

Re: [appengine-java] [URGENT RFH] Help on com.google.appengine.repackaged.com.google.common.base.FinalizableReferenceQueue init: Failed to start reference finalizer thread

2010-02-16 Thread John Patterson
Try searching this list first - the question has been answered many times. On 17 Feb 2010, at 12:14, imyousuf wrote: Hi, I am continuously getting the exceptions mentioned below. Can someone please help me? I have no idea why this exception occurs :(, PLEASE HELP! /Imran 02-16 08:34PM

[appengine-java] Re: sending mail in google app engine in java

2010-02-16 Thread lakshmi
Hi, Thanks for your reply.But i can not get any error or mail ,even i set that favicon. please,help me. On Feb 12, 12:12 am, Ikai L (Google) ika...@google.com wrote: That's just your browser trying to get a favicon from your site: http://en.wikipedia.org/wiki/Favicon

[appengine-java] Re: [URGENT RFH] Help on com.google.appengine.repackaged.com.google.common.base.FinalizableReferenceQueue init: Failed to start reference finalizer thread

2010-02-16 Thread imyousuf
Thanks, I did not know about the warming up exception, then this same thing could have caused Google Guice to crash, will re-investigate It would be nice to have it as a FAQ/Notice just for developers info! /Imran On Feb 17, 11:47 am, John Patterson jdpatter...@gmail.com wrote: Try

[appengine-java] Re: SVG data in a jsp file

2010-02-16 Thread moissinac
On 14 fév, 19:35, Martin Trögner troegner_mar...@web.de wrote: My application shall create SVG  data which will be integrated in a jsp. For svg data you normally can use     object data=f.svg type=image/svg+xml width=200 height=200 / I think that you could have something like this object

[appengine-java] Re: Creating a key for retrieval, but the key id is zero (IllegalArgumentException)

2010-02-16 Thread vbart
Probably you did not retrieve the Key of the stored object correctly, or the error/bug is while storing the object. I do the same - convert Key to Long or String when storing relationship between entities, but I never got 0 as the generated Key. Vaclav On Feb 17, 12:15 am, Clint

[appengine-java] unexpected execution of task queue

2010-02-16 Thread AJ Chen
I have a queue to run a task every hour by adding a new task (ETA=60min) after the current task is finished. It works fine in eclipse, but it behaves unexpectedly on production. The task is actually run every minute or so even though ETA time on the task queues console indicates it should be

[appengine-java] Re: owned relationship ? - could it be a bug

2010-02-16 Thread aswath satrasala
any help on this please... Thanks. On Fri, Feb 12, 2010 at 3:18 PM, aswath satrasala aswath.satras...@gmail.com wrote: Hello Ikia As suggested by you in the thread 'Incorrect number of entities returned', I have attached the complete files in my previous email. Please let me know, what am

[appengine-java] Re: App Engine and Spring slow start up

2010-02-16 Thread Moritz
Yes, I have the same problem, although it doesn't happen every time. Unfortunately, I don't have a fix for this problem. My application uses a scheduled task to update the cache every 5 minutes - this task fails every time with a HDEE, and I didn't have the time to optimize it yet - maybe both

[appengine-java] Suggested migration path for Web app using realm auth and offering web service.

2010-02-16 Thread AlexC
Hi all, I have an app which is running on Glassfish and serves data via web services and BlazeDS. Authentication is handled via realm authentication on the app server. My client side is a flex app which launches from a secure folder once the user has authenticated. Persistence is currently in

Re: [google-appengine] Re: Select columns

2010-02-16 Thread Manny S
Ryan - I will check out query cursors. Took a quick look and I think this would solve my problems. Thanks. Jeff - thanks for the input. I have included a createdDate and a modifiedDate in all my entities. manny On Tue, Feb 16, 2010 at 12:11 AM, Jeff Schnitzer j...@infohazard.orgwrote: You

[google-appengine] Re: what is the free quota of GAE?

2010-02-16 Thread David Sowerby
Hi I guess it isn't quite that simple - quote from http://code.google.com/appengine/docs/quotas.html CPU time is reported in seconds, which is equivalent to the number of CPU cycles that can be performed by a 1.2 GHz Intel x86 processor in that amount of time. The actual number of CPU cycles

[google-appengine] Re: Some questions about scalability and feasibility (i.e. trying to do due diligence :))

2010-02-16 Thread peterk
Thanks Ryan, that's kind of reassuring. But just to nitpick if I might...it seems apps that are presented as use cases for breaking the 500qps limit have only needed higher capacity relatively temporarily (e.g. the obama questions app). And the wording on the quota increase form sort of makes it

[google-appengine] Re: Moving domain to Google App Engine

2010-02-16 Thread Wooble
On Feb 16, 2:50 am, Martijn keloys...@gmail.com wrote: Thanks for the reply Robert, it's quite clear now. Just a quick follow-up question: I can also keep my current hosting provider to host the domain (DNS) only. This way nothing will change in the MX-records. If I understand correctly I

[google-appengine] Re: 1.3.1 SDK Prerelease - help us verify

2010-02-16 Thread Andy Freeman
Furthermore, it seems highly probable that as things are, many people will obliviously write public webapps that take a raw cursor as a parameter. This could be the new SQL injection attack. Can you comment a bit more on the security issues? AFAIK, cursors can not be used to write anything.

[google-appengine] Re: 1.3.1 SDK Prerelease - help us verify

2010-02-16 Thread Christian Schuhegger
I just noticed that the maven repository was updated and all jars that I need are there. many thanks. On Feb 14, 6:27 pm, Christian Schuhegger christian.schuheg...@gmail.com wrote: Hello, I understand that this is a prerelease, but is there a maven repository where I can reference this new

[google-appengine] Re: Why i don't use Google App Engine... and don't recomend it to you

2010-02-16 Thread johnwlockwood
ai_boy, Wobble is calling himself a troll, not you. it is slang for someone who post inflammatory messages intended to get an emotional response. On Feb 15, 9:28 pm, ai_...@live.ru ai_...@live.ru wrote: 1) Don't be rude with me plz.. i'm not your freind, and i (unlike you) don't call you

[google-appengine] Re: Why i don't use Google App Engine... and don't recomend it to you

2010-02-16 Thread johnwlockwood
On Feb 15, 9:36 pm, ai_...@live.ru ai_...@live.ru wrote: Well i like GAE, but this situation is pissing me off. And you even want someone to pay money for THAT? o_O I just want to use servise. I don't want you to suggest somethin. I want you to help me. Is it really hard for Google to

[google-appengine] Re: Why i don't use Google App Engine... and don't recomend it to you

2010-02-16 Thread johnwlockwood
I guess you are right, I was just trying to point out that Wobble wasn't calling ai_boy a hideous creature that lives under a bridge. :P On Feb 16, 10:46 am, Eli Jones eli.jo...@gmail.com wrote: Nah, he's calling him a Troll..  by replying to a Troll one is feeding the Troll.. and the number

[google-appengine] Sign up error message: Mobile Number or Username

2010-02-16 Thread lfischer
Hello, I tried to sign up an app engine account while logged in with my google apps account. I filled up the signup form with my mobile number, but all I get is this error message: Mobile Number or Username. The mobile number was well formated. I searched the web and this group, but all I found

[google-appengine] How to create local database during development

2010-02-16 Thread neha kedia
Hi, I am new to GAE, and am trying to setup initial database in a GAE application. The local_db file is generated in the Web-Inf folder, how can I insert initial values in this database? -- You received this message because you are subscribed to the Google Groups Google App Engine group. To

[google-appengine] Re: Some questions about scalability and feasibility (i.e. trying to do due diligence :))

2010-02-16 Thread peterk
That's good enough for me :) Now off to build my 4000 qps monster ;) Cheers, On Feb 16, 7:18 pm, ryan ryanb+appeng...@google.com wrote: On Feb 16, 4:58 am, peterk peter.ke...@gmail.com wrote: But what if your app needed this capacity on a more persistent/ permanent basis - would this be

[google-appengine] Re: what is the free quota of GAE?

2010-02-16 Thread Mackaaij
The free daily limit of 6,5 CPU-Hours is mentioned here: http://code.google.com/intl/nl-NL/appengine/docs/quotas.html On 15 feb, 23:06, oscar ooda...@gmail.com wrote: I only find this,but no cpu cycle that we can free use... Hard limits Quota   Limit Apps per developer      10 Time per

[google-appengine] Re: How to create local database during development

2010-02-16 Thread Mackaaij
You can insert (create) and modify (update) entities by putting them. See documentation, for Python it's here: http://code.google.com/intl/nl-NL/appengine/docs/python/datastore/overview.html On 16 feb, 18:39, neha kedia kedia.n...@gmail.com wrote: Hi, I am new to GAE, and am trying to setup

Re: [google-appengine] Re: Rename an existing table

2010-02-16 Thread Robert Kluin
You'll have to iterate through the entities, copy, then put them. Robert On Tue, Feb 16, 2010 at 1:03 PM, Abhishek mahisha...@gmail.com wrote: Yes, I meant to say entities, was just using traditional RDBMS language. Is there a way to change the name/type of existing entities, or would

Re: [google-appengine] My app - shameless plug :-)

2010-02-16 Thread Ikai L (Google)
Ben, cool! Is this open source? On Sat, Feb 13, 2010 at 12:26 PM, Benjamin bsaut...@gmail.com wrote: Hey Guys, Well i'm pretty much ready to release my app engine app to the world so i thought i would put out a quick post about the Beta to you guys. I've worked for 12 years in the process

Re: [google-appengine] about clearing the datastore

2010-02-16 Thread Ikai L (Google)
No, there is no real concept of structure. The closest thing to structure would be the indexes on the values of the data stored. You can read more about this here: http://code.google.com/appengine/articles/storage_breakdown.html On Sat, Feb 13, 2010 at 11:16 PM, kang areyouloo...@gmail.com

Re: [google-appengine] Re: Programmatic access the logs

2010-02-16 Thread Ikai L (Google)
I'm pretty sure this specific issue isn't in the issue tracker yet: http://code.google.com/p/googleappengine/issues/list?can=2q=programmatic+log+access On Mon, Feb 15, 2010 at 3:44 PM, peterk peter.ke...@gmail.com wrote: Came to ask about this and found your post. This would be exceptionally

[google-appengine] Re: What additional JARs do I need to use the Memcache Java API?

2010-02-16 Thread Charles
Bump! Anyone have any suggestions? Charles On Feb 12, 8:42 pm, Charles char...@whoischarles.com wrote: Hi all, I've tried adding caching functionality to my app using the Memcache Java API but I'm hitting a wall here.  I've followed the Using JCache instructions on the GAE docs page

Re: [google-appengine] Memcache: key_prefix vs namespace?

2010-02-16 Thread Ikai L (Google)
Nickolas, I thought the same thing when I first read about namespaces. As it turns out, namespaces with App Engine's memcache instance are not the same thing as prefixes. They are actual namespaces with their own LRU in addition to the global LRU. The details are still being worked out, though,

Re: [google-appengine] Unit testing XMPP service

2010-02-16 Thread Ikai L (Google)
The highest layer at which I would write this would be at the servlet layer. Past that point, to me, it's no longer considered a unit test anyway and becomes more brittle than would be worthwhile considering the hoops you'd have to jump through to make something like this work with an IDE or a CI

[google-appengine] Re: Programmatic access the logs

2010-02-16 Thread peterk
There's some talk about it in issue 76, 'log admin enhancements', but maybe it should have its own dedicated one... Could I ask a couple of other related questions here? 1) I read that the raw request logs are kept for 90 days. Is this invariant with the number of requests? Even if I have a huge

Re: [google-appengine] Unable to Sign up for Google App Engine

2010-02-16 Thread Ikai L (Google)
Have you added yourself to the SMS waitlist? https://appengine.google.com/waitlist/sms_issues On Sun, Feb 14, 2010 at 1:31 AM, intermension intermens...@gmail.comwrote: There appears to be a problem with the Google Apps sign up service at : https://appengine.google.com/start At the above

Re: [google-appengine] Servelts jsp

2010-02-16 Thread Ikai L (Google)
Yes, it is technically possible. JSPs are translated to servlets anyway, so you should be able to do anything in a servlet that you can do in a JSP. The more important consideration is why you would want to. Using a combination of Servlets and JSPs allows you to segregate responsibilities, makes

Re: [google-appengine] BotNet/DDoS Attack on my App Engine site ?

2010-02-16 Thread Ikai L (Google)
Submit an issue here for our billing team: http://code.google.com/support/bin/request.py?contact_type=AppEngineBillingSupport On Mon, Feb 15, 2010 at 5:39 PM, Madhukar madhuka...@gmail.com wrote: I have a simple website at http://www.dollar2rupee.net/ which uses App Engine. I used to get

Re: [google-appengine] Google Searchable site .. Displaying Array list help

2010-02-16 Thread Ikai L (Google)
1. Check out this resource for learning how to be indexed by Google: http://www.google.com/webmasters/ http://www.google.com/webmasters/2. Are you describing pagination? You can use offsets with queries or cursors. On Sun, Feb 14, 2010 at 5:31 AM, Avis developer sivaram.subb...@gmail.comwrote:

[google-appengine] Re: Problems deploying apps at the moment?

2010-02-16 Thread herbie
Working again! That was quick. Was it a general problem? On Feb 16, 10:41 pm, herbie 4whi...@o2.co.uk wrote: I can't deploy a new version of my app at the moment.  Keep getting... Rolling back the update. Error 403: --- begin server output --- Too Many Versions (403) The application

Re: [google-appengine] Re: Some questions about scalability and feasibility (i.e. trying to do due diligence :))

2010-02-16 Thread Ikai L (Google)
Go for it! What's great about App Engine and capacity is that we'll grow with you. It's unlikely you get the same amount of traffic all hours of the day, so you only pay for 4000 QPS the hours during the day you're hitting that - the rest of the time, we'll spin down unused instances. On Tue, Feb

Re: [google-appengine] Sign up error message: Mobile Number or Username

2010-02-16 Thread Ikai L (Google)
Go ahead and add yourself to the SMS manual verification waitlist: http://*appengine*.google.com/*waitlist*/sms_issue On Tue, Feb 16, 2010 at 3:35 AM, lfischer lfisc...@reschif.de wrote: Hello, I tried to sign up an app engine account while logged in with my google apps account. I filled up

[google-appengine] Re: 1.3.1 SDK Prerelease - help us verify

2010-02-16 Thread Waldemar Kornewald
Hi, what's the advantage of cursors compared to key-based pagination? The latter at least allows for paginating backwards from any point. Why don't cursors just build on the same principle? Bye, Waldemar Kornewald On Feb 16, 5:46 pm, Nick Johnson (Google) nick.john...@google.com wrote: Hi Andy,

[google-appengine] Re: 1.3.1 SDK Prerelease - help us verify

2010-02-16 Thread ryan
On Feb 4, 3:31 pm, Kyle Heu kyleheus...@gmail.com wrote: Do the Datastore Cursors solve the 1000 query limit? actually, we removed the 1000 result limit independent of cursors. you can now fetch or iterate more than 1000 results, no cursor needed. On Feb 5, 11:04 am, alf alberto@gmail.com

Re: [google-appengine] Memcache: key_prefix vs namespace?

2010-02-16 Thread Nickolas Daskalou
On 17 February 2010 14:14, Ikai L (Google) ika...@google.com wrote: The implementation isn't going to change if it works Is there a list of what's currently working (and hence won't change), and what's not working (and hence may change in the future)? Also, is the namespace simply a string

[google-appengine] Re: Watermarking with Image Composite

2010-02-16 Thread Nickolas Daskalou
*BUMP* On Feb 5, 6:04 pm, Nickolas Daskalou n...@daskalou.com wrote: Hey Google, has this been fixed in the new SDK? On Jul 31 2009, 1:40 pm, Rodrigo Moraes rodrigo.mor...@gmail.com wrote: On Jun 3, 8:08 pm, Mick wrote: Just tested and it worked on appspot. awesome! but is there a

[google-appengine] Re: 1.3.1 SDK Prerelease - help us verify

2010-02-16 Thread ryan
On Feb 7, 5:52 pm, Takashi Matsuo matsuo.taka...@gmail.com wrote: For the time being, you can use following strategy for a workaround. 1) prepare a handler for sending particular mail 2) put this handler into the task queue in a transactional manner exactly! we actually don't even consider it

[google-appengine] Re: Issue with app deployment?

2010-02-16 Thread Raymond C.
I am getting error #1 on deployment also On Feb 17, 11:20 am, gwstuff gwsa...@gmail.com wrote: Hi, I'm having trouble updating my apps. Anyone else facing this problem? At first, I got error #1. Now I'm getting error #2. I only have 5 versions in this app. #1: This is the error log

[google-appengine] Re: 1.3.1 SDK Prerelease - help us verify

2010-02-16 Thread ryan
On Feb 8, 1:33 pm, Stephen sdea...@gmail.com wrote: What are the performance characteristics of cursors? good question! we'll address this in the docs, but for now... The serialised cursor shows that it stores an offset. Does that mean that if the offset is one million, one million rows will

Re: [google-appengine] Re: Watermarking with Image Composite

2010-02-16 Thread Nickolas Daskalou
Answer: No. However, Rodrigo's fix still works with SDK 1.3.1. On 17 February 2010 14:27, Nickolas Daskalou n...@daskalou.com wrote: *BUMP* On Feb 5, 6:04 pm, Nickolas Daskalou n...@daskalou.com wrote: Hey Google, has this been fixed in the new SDK? On Jul 31 2009, 1:40 pm, Rodrigo

[google-appengine] Re: Issue with app deployment?

2010-02-16 Thread gwstuff
I tried multiple times in succession till error #1 changed to #2. I'm guessing the versions that didn't get deployed and got rolled back are counting towards the version quota. Hope someone at Google is looking into this :-/ On Feb 16, 10:25 pm, Raymond C. windz...@gmail.com wrote: I am getting

[google-appengine] Re: Issue with app deployment?

2010-02-16 Thread TheCleanMachine
I'm having same problem - error #1: Exception: Version not ready. Have tried it like 5 times now. Yes - hopefully someone at Google is looking at it. On Feb 16, 7:49 pm, gwstuff gwsa...@gmail.com wrote: I tried multiple times in succession till error #1 changed to #2. I'm guessing the

  1   2   >