[appengine-java] Re: Any best practice of bulk update in JPA ?

2010-01-20 Thread Alan She
Thanks! This really a smart way for relations that often changes. But I wonder if this is the only way? What if the relation seldom change? I believe the cost of the indirection will be shown on the complexity of code and the runtime performance, if using the resolution Entity everywhere. On

Re: [appengine-java] Re: Any best practice of bulk update in JPA ?

2010-01-20 Thread John Patterson
Actually, another option is just to overwrite B so the key stays the same but the data in it changes. On 20 Jan 2010, at 15:31, Alan She wrote: Thanks! This really a smart way for relations that often changes. But I wonder if this is the only way? What if the relation seldom change? I

[appengine-java] Re: Error while deploying GWT application on google app engine.

2010-01-20 Thread Anton
Hi John, Ive got that web.xml from gwt wizard in eclipse, so there is no copypase... Ive tried removed all whitespace chars from that file - still have no luck to deploy it to google app engine... On 19 янв, 20:47, John Patterson jdpatter...@gmail.com wrote: I recall an error I got from cutting

[appengine-java] Re: Any best practice of bulk update in JPA ?

2010-01-20 Thread Alan She
To make the requirement clear, the relation should change to an existing B. And there will be some queries on A which using B as the criteria. For example, the JPAQL would be, select a from + A.class.getName() + as a where a.bKey = :bKey So I think the second solution won't fit. For the first

[appengine-java] error is coming on appspot but local working fine

2010-01-20 Thread java
Hello I am developed a page which is working fine at local machine but when I deploy on appspot showing error : Uncaught exception from servlet java.lang.RuntimeException: java.io.NotSerializableException: com.ei.server.web.fe.ReviewFrmCmd at

Re: [appengine-java] error is coming on appspot but local working fine

2010-01-20 Thread John Patterson
You class ReviewFrmCmd is being put in the session and so must be made serializable. On the local dev server the session is not serialized so you do not get this exception. On 20 Jan 2010, at 18:13, java wrote: Hello I am developed a page which is working fine at local machine but when I

[appengine-java] Re: Forwarding to Blobstore URL from existing servlet

2010-01-20 Thread akochnev
I completely blanked out, here's the code of the servlet that handles the upload from SwfUploader and tries to dispatch to the Blobstore: String postUploadUrl = null; try { BlobstoreService blobstoreService = BlobstoreServiceFactory.getBlobstoreService(); postUploadUrl =

[appengine-java] Re: Communication between multiple applications

2010-01-20 Thread A1programmer
I'm very familiar with BlazeDS, but haven't looked into GraniteDS for a few years. I know that with BlazeDS, this is done using a streaming AMF channel, which is essentially an endless http request, or streaming response. Since the connection is left open, I am a bit worried that it may not work

[appengine-java] contain() filter with ListKeys

2010-01-20 Thread aswath satrasala
Hello I have the following class public class SecurityPermission { @PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY) private Key key; @Persistent private String name; } I have the following query on SecurityPermission Entity to filter by keys.

[appengine-java] Re: How to store/retrieve inheritance and composition in Datastore

2010-01-20 Thread Federico Keen
Thanks guys, but I ended up migrating away. I'll wait until the datastore is a bit more developed :D On Jan 16, 6:54 am, datanucleus andy_jeffer...@yahoo.com wrote: I think Max has been improving the GAE/J inheritance support recently, so would be surprised if this isn't possible, at least in

[appengine-java] Say goodbye unoptimized Frameworks. Say hello Code Generation!

2010-01-20 Thread andy.booth
Hi My initial testing with Google App Engine used JPA, JAX-RS, Google GSON, Google Closure Templates - elegant REST development, but it wasn't the quickest loading or serving app. Everything loosely coupled, lots of class path scanning, compiling of templates on the fly. So I've ditched the

Re: [appengine-java] access denied

2010-01-20 Thread Toby Reyelts
Thanks Andrés, I've filed an issuehttp://code.google.com/p/googleappengine/issues/detail?id=2658for this. There's a bug in the implementation of HttpServlet.doOptions which is preventing OPTIONS http requests from being fulfilled correctly. Most people don't need to serve OPTIONS requests, so

[appengine-java] Quirks with key name concurrency / uniqueness control

2010-01-20 Thread Todd Vierling
I've read (only in snippets, and in passing reference in the GAE documentation) that using an unencoded String key, aka key name, guarantees uniqueness of that user-provided field in the same way that a Long field is unique (but generated by the backend). However, it's been really tough figuring

Re: [appengine-java] access denied

2010-01-20 Thread Andrés Cerezo
ok, I'll test it this night and I'll tell you. Thanks. 2010/1/20 Toby Reyelts to...@google.com: Thanks Andrés, I've filed an issue for this. There's a bug in the implementation of HttpServlet.doOptions which is preventing OPTIONS http requests from being fulfilled correctly. Most people

[appengine-java] Re: Timeout using GData API

2010-01-20 Thread smile laugh
I also get same error is there someone can help me out -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to google-appengine-j...@googlegroups.com. To unsubscribe from this group, send email to

[appengine-java] Re: the inappropriate encoding occured when store chinese characters to datastore

2010-01-20 Thread lawrence
make sure you compile the java source using encoding=UTF8 On Jan 18, 4:38 pm, 凌志 许 lingzhixu...@gmail.com wrote: In my project, I need to store chinese characters to datastore, but I tried using the following code to do it: PersistenceManager pm = PMF.get().getPersistenceManager();

[appengine-java] Uniqueness of system generated IDs

2010-01-20 Thread Torquester
I have a problem, that Appengine generates duplicate keys and thus my objects get overwritten. I have following classes: @PersistenceCapable(identityType = IdentityType.APPLICATION) public class ProfileEntity { @PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)

Re: [appengine-java] Using Restlet to access datastore.

2010-01-20 Thread Ikai L (Google)
Wow, Jeff, this actually looks pretty good. Did you write this? This is exactly the reason why we expose the low-level API! On Tue, Jan 19, 2010 at 7:28 PM, Jeff Schnitzer j...@infohazard.org wrote: Entities persisted with Objectify can be serialized in their entirety (including keys) through

[appengine-java] Proxy written in java for browsers

2010-01-20 Thread Harry Monroe
Hi, I was trying to write a proxy server in java. It´s a very simple application that filters the requests to myproxy.appspot.com, retrieves the pages itself and then displays them with the same url. It´s not the same as seen proxies like http://proxycgi.appspot.com/ (which work really good) I

[appengine-java] Re: Using Restlet to access datastore.

2010-01-20 Thread datanucleus
DataNucleus also provides a REST API, http://www.datanucleus.org/products/accessplatform_2_0/rest/httpmethods.html -- 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

Re: [appengine-java] Re: Communication between multiple applications

2010-01-20 Thread Timothy Spear
Please posts how it works, I will need it later this year. Good luck. Tim Sent from my iPhone On Jan 20, 2010, at 9:00 AM, A1programmer derrick.simp...@gmail.com wrote: I'm very familiar with BlazeDS, but haven't looked into GraniteDS for a few years. I know that with BlazeDS, this is

Re: [appengine-java] Re: equal rights for Java URLFetch

2010-01-20 Thread Jeff Schnitzer
Sorry if this is a silly question but... How do you make an asynchronous URLFetch call in Java? Is this a question of making calls to fetch() without calling getContent() on the response? Jeff I see no limit of simultaneous [urlfetch] API calls documented on the quotas page (

Re: [appengine-java] Re: equal rights for Java URLFetch

2010-01-20 Thread Don Schwarz
This functionality will be available in the low-level URLFetch API, hopefully in the next release. I have not implemented it for java.net.URLConnection, although we could potentially do that in the future (by having connect() initiate the request and having methods like getContent and

Re: [appengine-java] Re: Put (insert) data store operations use increasingly high amount of CPU as the number of entities increases

2010-01-20 Thread Ikai L (Google)
How many child entities does a model have? Is it in a transaction? Index updates are synchronous, though a simple update to the index should not dramatically increase the insert time. In addition to reducing the indexed properties, you may also want to look at inserting entities asynchronously

Re: [appengine-java] One to many sample application needed on GWT

2010-01-20 Thread Ikai L (Google)
There should be plenty of examples around, but here is one from Max Ross's blog: http://gae-java-persistence.blogspot.com/2009/10/creating-bidrectional-owned-one-to-many.html We're looking at expanding the capabilities of the App Engine Cookbook to support examples like this contributed by the

[appengine-java] Re: Put (insert) data store operations use increasingly high amount of CPU as the number of entities increases

2010-01-20 Thread Lucian Baciu
In total my model has about 4000 entities. The shape of my model is like this: a root entity that has many owned one to many relationships (about 10), and each children collection can have hundreds or thousands of child entities in them, something like: public class Account{

Re: [appengine-java] Use Google login cred to logon in one GAE in other GAE app

2010-01-20 Thread Ikai L (Google)
No, you won't be able to authenticate the second application once a user is logged into the first. If you think about the security issues here - and there are many - this is something that just won't work and won't be supported in the manner you have described. One solution to the problem you

Re: [appengine-java] Re: Put (insert) data store operations use increasingly high amount of CPU as the number of entities increases

2010-01-20 Thread Ikai L (Google)
How much does the CPU time increase by? On Wed, Jan 20, 2010 at 1:59 PM, Lucian Baciu lucianba...@gmail.com wrote: In total my model has about 4000 entities. The shape of my model is like this: a root entity that has many owned one to many relationships (about 10), and each children

[appengine-java] Re: Put (insert) data store operations use increasingly high amount of CPU as the number of entities increases

2010-01-20 Thread Lucian Baciu
This is what an insert request looks like now: 10659ms 44687cpu_ms 40040api_cpu_ms for about 4000 entities in the model. I would say its increases by 10 seconds per 1000 entities. On Jan 21, 12:01 am, Ikai L (Google) ika...@google.com wrote: How much does the CPU time increase by? On Wed,

Re: [appengine-java] Re: Put (insert) data store operations use increasingly high amount of CPU as the number of entities increases

2010-01-20 Thread Ikai L (Google)
Do you have 4000 entities total? Or 4000 child entities for the model? On Wed, Jan 20, 2010 at 2:04 PM, Lucian Baciu lucianba...@gmail.com wrote: This is what an insert request looks like now: 10659ms 44687cpu_ms 40040api_cpu_ms for about 4000 entities in the model. I would say its increases

[appengine-java] Re: Put (insert) data store operations use increasingly high amount of CPU as the number of entities increases

2010-01-20 Thread Lucian Baciu
Sorry, I have 4000 entities in the entity group (child entities). On Jan 21, 12:21 am, Ikai L (Google) ika...@google.com wrote: Do you have 4000 entities total? Or 4000 child entities for the model? On Wed, Jan 20, 2010 at 2:04 PM, Lucian Baciu lucianba...@gmail.com wrote: This is what

[appengine-java] Repost: Javaagent option

2010-01-20 Thread Kartik
Hi, Any plans of supporting the -javaagent flag in the app engine? I would like to add my agent for instrumenting code. -Kartik -- 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

Re: [appengine-java] Repost: Javaagent option

2010-01-20 Thread Toby Reyelts
There are no immediate plans for this. Is there something that prevents you from instrumenting via ClassLoaders? On Wed, Jan 20, 2010 at 5:40 PM, Kartik kart...@gmail.com wrote: Hi, Any plans of supporting the -javaagent flag in the app engine? I would like to add my agent for instrumenting

[appengine-java] Re: One to many sample application needed on GWT

2010-01-20 Thread Dave
I had gotten my application to save data, but my queries are returning nothing. I see my data in both the parent and the child. I am getting a java.lang.IndexOutOfBoundsException: Index: 0, Size: 0 error when I try to iterate through the child data. One of the strangest thing is that my primary

[appengine-java] XMPP Problems

2010-01-20 Thread Hani Naguib
Anyone else getting problems XMPP? Seems to have started this afternoon. Trying to chat to an appengine bot from beejive (IM client on iphone) I get a [Error 503] The gtalk webgadget in my gmail page shows all appengine buddies as offline! Regards, Hani -- You received this message because you

[appengine-java] Getting error when updated from 1.2.5 to 1.3.0

2010-01-20 Thread mar_novice
I can't run anymore after I updated the sdk and even downloading a fresh eclipse and gae plugin, I always get the same error. Initializing AppEngine server The server is running at http://localhost:/ 01 21, 10 2:30:15 AM com.google.apphosting.utils.jetty.JettyLogger warn WARNING: EXCEPTION

[appengine-java] what class need to be nucleus enhance?

2010-01-20 Thread asianCoolz
i only enhance my model classes (pojo) , but i get warning like below . Is class dao, service need to be included for data nucleus enhancer? [testetefsdf/2.339300673130228559].stdout: 13:20:36,874 DEBUG [DataNucleus.MetaData] - Class com.user.testing.service.TestingImplDao has annotations but

[appengine-java] Re: XMPP Problems

2010-01-20 Thread Hani Naguib
It looks like xmpp messages to the application do not get received. It can send xmpp and everything else seems fine. -- 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

Re: [appengine-java] access denied

2010-01-20 Thread Andrés Cerezo
Sorry i think that's not my problem. I'm using a rpc call, here you have the stack: # /net.brucecooper.mindmapgadget.MindMapGadget/greet - Mostrar texto citado - java.security.AccessControlException: access denied (java.lang.RuntimePermission accessDeclaredMembers) at

[appengine-java] SAML Federated Single Sign On

2010-01-20 Thread Brian
Will app engine support SAML identity providers? Our app currently supports 100K+ users at multiple universities as a SAML service provider. We use the Shibboleth service provider for our site and currently integrate with Shib, CAS, and Oracle IdPs. We'd like to deploy our app in the app engine,

[appengine-java] Re: contain() filter with ListKeys

2010-01-20 Thread aswath satrasala
After debugging more, I found out that I was passing secPermKeyList as null. Hence I was getting zero results back. But, after correcting that issue and passing a valid Key list, I get the following error Testcase: testSecurityGroup took 1.351 sec Caused an ERROR Illegal argument

[appengine-java] Re: XMPP Problems

2010-01-20 Thread Hani Naguib
Looks like I am not the only one with this problem! http://groups.google.com/group/google-appengine/browse_thread/thread/0d93bab93e3195dc# -- 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

Re: [appengine-java] Re: the inappropriate encoding occured when store chinese characters to datastore

2010-01-20 Thread 杨浩
In developer server:_ah/admin watch the datastore viewer is not encode utf8,so see ??? but in GAE server it's good! -- 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: Objectify-Appengine, a typesafe data persistence tier for App Engine

2010-01-20 Thread Marcel Overdijk
This really looks great! On 13 jan, 18:28, Jeff Schnitzer j...@infohazard.org wrote: http://code.google.com/p/objectify-appengine/ I probably should have called this project Goldilocks, because it's a little bit how I feel.  Despite being a longtime Hibernate user (since the 1.0 days), the

[google-appengine] Re: Mail Service Quarantine

2010-01-20 Thread Grégoire Galinand
No, i receive a mail from : [mydomain.com] myad...@mydomain.com with object : Quarantine Summary 1/19/2010 In the body, i've got : These messages were quarantined as potential junk or virus-infected messages, and have not been sent to your inbox. To deliver a message to your inbox, click the

Re: [google-appengine] Re: Scalability problem in GAE

2010-01-20 Thread Eric Ka Ka Ng
I have also installed this lib and am having fun with it. personally i 'feel' the overhead is really insignificant refer to your diagram, i'm not sure whether the blue bars are actually showing time without the profiler, i think it may mean something else (i also wanna know what the blue bar and

[google-appengine] Mail inbound limitation.

2010-01-20 Thread Chen Jie
Is there any limitation of the total inbound mail messages? I didn't found it through the Quotas document, there are only limits on mail sent. Or one inbound message is a Mail API call? can somebody explain it? -- You received this message because you are subscribed to the Google Groups Google

Re: [google-appengine] Mail inbound limitation.

2010-01-20 Thread Nick Johnson (Google)
Hi Chen, There are no direct limitations on the number of inbound emails you can receive. Practical limitations are the number of requests you can handle and your other resources. -Nick Johnson On Wed, Jan 20, 2010 at 9:53 AM, Chen Jie chenyue...@gmail.com wrote: Is there any limitation of

Re: [google-appengine] Re: Mail Service Quarantine

2010-01-20 Thread Nick Johnson (Google)
Hi Gregoire, 2010/1/20 Grégoire Galinand gregoire.galin...@gmail.com No, i receive a mail from : [mydomain.com] myad...@mydomain.com with object : Quarantine Summary 1/19/2010 In the body, i've got : These messages were quarantined as potential junk or virus-infected messages, and have not

Re: [google-appengine] Blobstore API Feedback

2010-01-20 Thread Nick Johnson (Google)
Hi Piotr, On Wed, Jan 20, 2010 at 7:33 AM, Piotr Sikora piotr.sik...@frickle.comwrote: Hi Nick, thanks for reply, but I must disagree ;) 500 is the correct response to return in this case, as the URL the user requested (your handler script) was found, while the blobkey returned by your

[google-appengine] Configuration issues - Google Apps account, GAE Application

2010-01-20 Thread Alex
Hi, Three (related) questions! (1) Why am I unable to access the App Dashboard from the GAE Launcher Dashboard link? Is this normal? Clicking 'Dashboard' directs me to a google account sign in page, and so does not accept my not google apps sign in. However when I 'Deploy' I am, as I would

Re: [google-appengine] Re: Selling App Engine Apps

2010-01-20 Thread Nick Johnson (Google)
Hi Andrew, On Wed, Jan 20, 2010 at 2:29 AM, Andrew Chilton andychil...@gmail.comwrote: Hi Brian, 2010/1/20 bFlood bflood...@gmail.com: openid - I really wish Google would just build support for FriendConnect directly into GAE. I don't have a good answer for you right now, maybe someone

Re: [google-appengine] Configuration issues - Google Apps account, GAE Application

2010-01-20 Thread Nick Johnson (Google)
Hi, On Wed, Jan 20, 2010 at 10:22 AM, Alex alexle...@googlemail.com wrote: Hi, Three (related) questions! (1) Why am I unable to access the App Dashboard from the GAE Launcher Dashboard link? Is this normal? Clicking 'Dashboard' directs me to a google account sign in page, and so does not

Re: [google-appengine] Trouble viewing apps

2010-01-20 Thread Nick Johnson (Google)
Hi Ben, You need to log in at http://appengine.google.com/a/freckleinteractive.net -Nick Johnson On Wed, Jan 20, 2010 at 1:39 AM, Ben b...@freckleinteractive.net wrote: I know I've made google app engine applications before with my b...@freckleinteractive.net login. However, tonight when I

Re: [google-appengine] Re: uploading 1MB file over slow connection - GAE request timeout

2010-01-20 Thread Nick Johnson (Google)
Hi Locke, The same applies to downloads: The response is not sent to the user until your script finishes executing, and thus the time the user takes to download the response is not factored into your overall execution time. -Nick Johnson On Tue, Jan 19, 2010 at 9:37 PM, Locke

Re: [google-appengine] Blobstore API Feedback

2010-01-20 Thread Nick Johnson (Google)
Hi Piotr, On Wed, Jan 20, 2010 at 10:44 AM, Piotr Sikora piotr.sik...@frickle.comwrote: Hi Nick, I don't assume any such thing. Your code asking the infrastructure to send the user a non-existent blob is an issue with your code, not with the user's request, and as such, it should return

[google-appengine] Re: Scalability problem in GAE

2010-01-20 Thread mani doraisamy
Sorry. I got the degradation wrong. Datastore degrades from 40ms to 1283ms. thanks, mani On Jan 20, 3:48 pm, mani doraisamy mdorais...@orangescape.com wrote: Here are the stats for the same request at 05:37 Vs 10:49 on

[google-appengine] Re: Scalability problem in GAE

2010-01-20 Thread mani doraisamy
Same request, but another query has degraded from 45ms to 846ms: http://247-test.appspot.com/stats/details?time=1263968821144 http://247-test.appspot.com/stats/details?time=1263908256446 thanks, mani On Jan 20, 4:00 pm, mani doraisamy mdorais...@orangescape.com wrote: Sorry. I got the

Re: [google-appengine] Re: Scalability problem in GAE

2010-01-20 Thread Nickolas Daskalou
Hi mani, I have a question. How did you get appstats to not require an admin login in production? Nick 2010/1/20 mani doraisamy mdorais...@orangescape.com Same request, but another query has degraded from 45ms to 846ms: http://247-test.appspot.com/stats/details?time=1263968821144

[google-appengine] Re: Java, Query class, SELECT with || (logical OR) clause not working

2010-01-20 Thread kattus
Thank you for reply (I saw it only now..). I don't remember now which version I was using, I have already overcome the issue by changing the database schema. On Dec 11 2009, 2:13 am, Ikai L (Google) ika...@google.com wrote: Are you running 1.2.6 SDK or 1.2.8? The issue has been resolved in

Re: [google-appengine] Blobstore API Feedback

2010-01-20 Thread Piotr Sikora
Hi Nick, I did, and it's unfortunate - feel free to file a bug - but it's still far from clear that this should result in returning a 404 to the user. I don't think this is a bug, but I believe that 404 response is simply better and more obvious than 500 in this case and since Blobstore API

[google-appengine] Re: Mail Service Quarantine

2010-01-20 Thread Grégoire Galinand
Thanks ! Indeed, it came from postini service who generate this quarantine ! thank you very much for your quick responses. On 20 jan, 11:10, Nick Johnson (Google) nick.john...@google.com wrote: Hi Gregoire, 2010/1/20 Grégoire Galinand gregoire.galin...@gmail.com No, i receive a mail from

[google-appengine] Re: Request was aborted after waiting too long followed by random DeadlineExceededError on import.

2010-01-20 Thread Jason C
I was under the impression that something happened internally at Google to adjust the way that apps were balanced around machines and/ or other internal tuning. Additionally, we run a ping every 10 seconds to keep an instance hot. While I understand how this doesn't have much effect in a

[google-appengine] Blobstore upload gives 500 error when there is no file.

2010-01-20 Thread Kenneth
Hi, If the user submits the form to the blobstore without a file I'm getting a google 500 error. This error is not reported in my logs. This was working fine before Christmas so it is a regression. If they select a file then everything works. Note that in our application the file is optional,

[google-appengine] Re: Scalability problem in GAE

2010-01-20 Thread mani doraisamy
Is that a technical question or process question? On Jan 20, 4:35 pm, Nickolas Daskalou n...@daskalou.com wrote: Hi mani, I have a question. How did you get appstats to not require an admin login in production? Nick 2010/1/20 mani doraisamy mdorais...@orangescape.com Same request,

Re: [google-appengine] Re: Scalability problem in GAE

2010-01-20 Thread Nickolas Daskalou
Technical. I tried editing the appstats code to turn off this admin user requirement, but I kept getting a 500 error. 2010/1/21 mani doraisamy mdorais...@orangescape.com Is that a technical question or process question? On Jan 20, 4:35 pm, Nickolas Daskalou n...@daskalou.com wrote: Hi

[google-appengine] Re: App Engine and Gzip

2010-01-20 Thread bFlood
issue created here with Test Url: http://code.google.com/p/googleappengine/issues/detail?id=2657 On Jan 19, 10:35 pm, Wesley Chun (Google) wesc+...@google.com wrote: niklas does have a workaround, but some users are indeed running into this problem where there shouldn't be an issue, especially

Re: [google-appengine] Re: Scalability problem in GAE

2010-01-20 Thread Robert Kluin
I think I just edited the main function in appstats/ui.py. I can not recall how the original looked, but mine is now: def main(): Main program. Auth check, then create and run the WSGIApplication. if not os.getenv('SERVER_SOFTWARE', '').startswith('Dev'): if users.get_current_user() is

[google-appengine] Re: Put data store operations use increasingly higher CPU as the number of entities in the entity group increases

2010-01-20 Thread Lucian Baciu
Could someone from Google please help! Thanks, Lucian On Jan 20, 12:30 am, Lucian Baciu lucianba...@gmail.com wrote: Yes, in some cases I might fetch about three entities by their keys from the datastore. But I doubt this is the problem because even for a small entity like Label in my model I

[google-appengine] Re: Scalability problem in GAE

2010-01-20 Thread mani doraisamy
It uses webapp (with routes) instead of Django and with custom authentication. That's the reason, i guess. thanks, mani On Jan 20, 8:46 pm, Nickolas Daskalou n...@daskalou.com wrote: Technical. I tried editing the appstats code to turn off this admin user requirement, but I kept getting a 500

[google-appengine] Re: App Engine and Gzip

2010-01-20 Thread Flips
I have discovered that I get compressed content when I am at home. If I am at work I do not get compressed content via app engine. We use a dedicated hardware firewall, but I do not think that this is the problem because I recieve the app engine dashboard compressed and according to its response

[google-appengine] Re: App Engine and Gzip

2010-01-20 Thread bFlood
weird. after your post, I just tried my test url from an Amazon EC2 instance and it was gziped for both the sample browser User-Agent and one set to gzip Ran it from Fiddler so the only thing that could be different between the EC2 instance and my work/home computers is the IP addresses. (right?)

[google-appengine] Re: permissions error adding app engine to google apps account

2010-01-20 Thread Snaggle
I encountered a similar situation, and scratched my head for a few days. Forums and searching turned up this thread as the most useful resource I could find, but I still wasn't able to solve the issue. After fiddling around for awhile, I discovered that when I created my app-id, I had specified

[google-appengine] I can't visite *.appspot.com from China, anybody knows why?

2010-01-20 Thread Yiou
I can't visite *.appspot.com from China, anybody knows why? -- 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

Re: [google-appengine] Re: Scalability problem in GAE

2010-01-20 Thread Danny Tuppeny
2010/1/20 Eric Ka Ka Ng ngk...@gmail.com i'm not sure whether the blue bars are actually showing time without the profiler, i think it may mean something else (i also wanna know what the blue bar and red rectangle refer to, and will dig into the doc to find out what it actually means. anyone

Re: [google-appengine] Re: Scalability problem in GAE

2010-01-20 Thread Danny Tuppeny
2010/1/20 Danny Tuppeny da...@tuppeny.com 2010/1/20 Eric Ka Ka Ng ngk...@gmail.com i'm not sure whether the blue bars are actually showing time without the profiler, i think it may mean something else (i also wanna know what the blue bar and red rectangle refer to, and will dig into the

Re: [google-appengine] Re: Scalability problem in GAE

2010-01-20 Thread Danny Tuppeny
2010/1/20 mani doraisamy mdorais...@orangescape.com Same request, but another query has degraded from 45ms to 846ms: http://247-test.appspot.com/stats/details?time=1263968821144 http://247-test.appspot.com/stats/details?time=1263908256446 Which calls are you looking at? They look like

Re: [google-appengine] Re: Scalability problem in GAE

2010-01-20 Thread Robert Kluin
The blue line is wall-clock time. The red line is CPU or API time. As Danny mentioned, the blue line indicates blocking time of each call. The red line indicates what you are charged for each. Robert On Wed, Jan 20, 2010 at 12:43 PM, Danny Tuppeny da...@tuppeny.com wrote: 2010/1/20

Re: [google-appengine] Re: App Engine and Gzip

2010-01-20 Thread Eli Jones
I would say that you this issue here... Your work firewall trusts *.google.com (which is where dashboard comes from) but does not trust *.appspot.com (which is where the apps are running from). Thus.. gzip headers get mangled for *.appspot.com traffic.. so the firewall can scan the packets. I

Re: [google-appengine] Re: App Engine and Gzip

2010-01-20 Thread Eli Jones
Oh, and I mentioned this in my reply on the Issue page... but I'll put it here so others can see the correct way to test. Mainly, you should create a test page that just prints out what Browser Headers it receives whenever someone visits it. That way, you can verify if it's really receiving the

[google-appengine] Re: Scalability problem in GAE

2010-01-20 Thread mani doraisamy
Oops! The url seems to redirect to newer requests now. It no longer refers to the same request that i had referred to. Enhancement request for Appstats: Generating url with surrogate key for each request (instead of time=1264004278534) would be of great help for bookmarking/reference. Anyway, i

[google-appengine] Re: I can't visite *.appspot.com from China, anybody knows why?

2010-01-20 Thread Wooble
On Jan 20, 9:45 am, Yiou rong...@gmail.com wrote: I can't visite *.appspot.com from China, anybody knows why? The Chinese government periodically blocks appspot. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send

[google-appengine] Disable Billing and Change Budget buttons missing on the Billing Settings page

2010-01-20 Thread Johann C. Rocholl
I want to increase the daily budget for my scoretool app, but the buttons on the Billing Settings page are missing. They disappeared several days ago. I am the only developer, and the billing administrator. I have successfully adjusted the Billing Settings before. My current daily budget is $5,

Re: [google-appengine] Re: Scalability problem in GAE

2010-01-20 Thread Robert Kluin
Mani, Just a note. Guido's AppStats uses memcache to store the stats info so it will sometimes disappear. I think it also only stores the most recent 100 (or something like that) requests. You might want to take screen-shots or something to be sure people will see what you want to show them.

[google-appengine] Re: App Engine and Gzip

2010-01-20 Thread bFlood
I believe eli is correct. the gzip header seems to stripped as it leaves our network. we do have a hardware firewall, still need to find out how its configured thanks to everyone, sorry for all the fuss On Jan 20, 1:13 pm, Eli Jones eli.jo...@gmail.com wrote: Oh, and I mentioned this in my

[google-appengine] full-text search of 10 million strings

2010-01-20 Thread Mats
Hi, I'm making an app that will search through a database of 10 million records (all strings less than 500 bytes). What I need is to return the 100 strings that closest matches a search query. Would this be feasible to do on App Engine with Compass or something like appengine- search

Re: [google-appengine] Disable Billing and Change Budget buttons missing on the Billing Settings page

2010-01-20 Thread Ikai L (Google)
Hi Johann, Sorry for this delay. We'd really like Billing Issues to go through our issue tracker and not the groups: http://code.google.com/support/bin/request.py?contact_type=AppEngineBillingSupport http://code.google.com/support/bin/request.py?contact_type=AppEngineBillingSupportCan you post

[google-appengine] Re: Blobstore upload with empty file

2010-01-20 Thread Hazzadous
Sorry, missed these updates. Yes, I am currently selection form action based on if any file fields are non empty. JavaScript, as you allude to. On Jan 5, 10:37 pm, Andy Lo-A-Foe andy.loa...@gmail.com wrote: You can use JavaScript to check if the file form field is filled in before submitting.

Re: [google-appengine] full-text search of 10 million strings

2010-01-20 Thread Barry Hunter
Simple-Text-Search (or Searchable) would probably work unless you need complex queries and/or proper ranking (but you say 'closest' so possibly not) From what I understand of Compass etc, they pretty much need to load the whole index into memory to use it, so are not going to work on large

[google-appengine] Billing enabled and then flips back to Free

2010-01-20 Thread jread
Hi. I'm trying to enable billing on a new application (id: steprep- staging). After enabling it, the status in the dashboard changes to 'Activating Billing' but then after a little while if flips back to 'Free'. Does a certain amount of time need to pass before the enabling takes effect or is

[google-appengine] Re: Cron jobs fail with error Request was aborted after waiting too long to attempt to service your request.

2010-01-20 Thread Xlorep DarkHelm
Just as an FYI, I also have been seeing this bug happen over and over, I have a cron job (that quite simply just drops off a task to be processed into the default task queue), and it fails probably 60% of the time, from casual glance at my logs. I originally just wanted this cron to run once a

[google-appengine] View this page Google App Engine Open Source Projects

2010-01-20 Thread Jason (Google)
Added Objectify-Appengine Click on http://groups.google.com/group/google-appengine/web/google-app-engine-open-source-projects - or copy paste it into your browser's address bar if that doesn't work. -- You received this message because you are subscribed to the Google Groups Google App Engine

Re: [google-appengine] Re: Scalability problem in GAE

2010-01-20 Thread Eric Ka Ka Ng
yes exactly. I think this is the correct interpretation of the blue line and red line. - eric 2010/1/21 Robert Kluin robert.kl...@gmail.com: The blue line is wall-clock time.  The red line is CPU or API time. As Danny mentioned, the blue line indicates blocking time of each call.  The red

Re: [google-appengine] Deploying more than 10 apps

2010-01-20 Thread Nir Yariv
Unfortunately these are apps I'm developing so I can't be added by others - and I don't want to delete existing apps in order to add new ones.. - Nir 2010/1/19 Piotr Jaroszyński p.jaroszyn...@gmail.com: Is there a way to get more than 10 apps working on the Google App Engine, with billing or

[google-appengine] incoming XMPP down for app engine?

2010-01-20 Thread Sam
Looks like it has been down for a couple hours .. -- 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: incoming XMPP down for app engine?

2010-01-20 Thread KAVIN
Me too.My robot based on GAE went offline for a few hours. On Jan 21, 12:14 pm, Sam afi...@gmail.com wrote: Looks like it has been down for a couple hours .. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email

[google-appengine] Help!! Infinite loop when trying to sign up for app engine

2010-01-20 Thread Erem
Hey guys, I have entered an unescapable loop on the Welcome to Google App Engine page when completing sign up for app engine. This is what happens: (1) I log in and arrive at the Welcome to Google App Engine page. (2) As it requests, I click Create an application., fill out the form, and click

[google-appengine] Re: Help!! Infinite loop when trying to sign up for app engine

2010-01-20 Thread Erem
Why do I feel sheepish? I just saw the front page of the discussion group. Which described my exact problem. The only emergency was a failure to read directions. *facepalm* On Jan 20, 9:18 pm, Erem ehb...@gmail.com wrote: Hey guys, I have entered an unescapable loop on the Welcome to Google

[google-appengine] Re: incoming XMPP down for app engine?

2010-01-20 Thread Hani Naguib
Me too Posted about it 3-4 hours ago (on appengine java forum) , have not heard anything from anyone. -- 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

[google-appengine] Re: auto run tasks using dev sdk

2010-01-20 Thread Andy Freeman
Any other suggestions on how to easily test with background tasks using the SDK so they run automatically with hopefully more than 1 running concurrently? The development server does not support concurrent execution. On Jan 13, 3:25 pm, Philip phili...@gmail.com wrote: There really needs to

  1   2   >