[appengine-java] Re: How are static files handled in the servlet container?

2010-10-20 Thread TL
Anyone? Can you add a filter that will handle static files (like minify)? -- 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,

[appengine-java] Re: File size when downloading files is missing

2010-10-20 Thread rapher
Am i really alone with this problem? blobstoreService.serve(blobKey, byterange, res) doesn't work either. -- 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.

[appengine-java] Re: Jetty binds to localhost and not my wireless IP

2010-10-20 Thread Maxim Veksler
For eclipse do the following: Click on the the [project name] Debug As Debug Configurations... Go to Web Application [project name] Here under tab named Arguments add the following: --address=0.0.0.0, so that your Arguments look like this: --port= --address=0.0.0.0 /

[appengine-java] Discussion on will-it-play-in-app-engine

2010-10-20 Thread Cornel Creanga
BlazeDS messaging does not work on GAE. -- 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: 1.3.8 upgrade delete datastore contents

2010-10-20 Thread Yegor
Actually, I have seen this behaviour in several recent releases of the SDK. At this point, every time I upgrade, I kinda half-expect that my test data will be gone. It would be nice if local data persisted between releases. On Oct 19, 12:20 pm, Ikai Lan (Google) ikai.l+gro...@google.com wrote:

[appengine-java] Recommended maximum number of entities in an entity group

2010-10-20 Thread nicanor.babula
Hi everbody, I have a question regarding the datastore best-practices. The appengine's official documentation says that is not a good practice to put too many entities in the same entity group. What does too many mean in this case? Hundreds? Thousands? Milions? Thanks in advance, Cristian

[appengine-java] Please anyone from google on this

2010-10-20 Thread Gal Dolber
http://www.google.com/support/forum/p/Web+Search/thread?tid=47496ffe5ea01d39hl=en I notice that it works ok on gwt's showcase. Thanks -- Guit: Elegant, beautiful, modular and *production ready* gwt applications. http://code.google.com/p/guit/ -- You received this message because you are

[appengine-java] AsyncDatastoreService - ready for use?

2010-10-20 Thread timwhunt
Someone pointed out in the Objectify group that there is now an AsyncDatastoreService in the docs - see http://code.google.com/appengine/docs/java/javadoc/com/google/appengine/api/datastore/AsyncDatastoreService.html I don't believe this was mentioned in any release notes, but I think it is new

[appengine-java] Include appengine-api-labs-1.3.8.jar in application deploy for TaskQueue?

2010-10-20 Thread andrew
In my application I have started to experiment with TaskQueue. After deploying, on execution in the cloud I get the following exception: java.lang.NoClassDefFoundError: com/google/appengine/api/labs/ taskqueue/QueueFactory I assume this is because TaskQueue is still in labs, and so is in the

Re: [appengine-java] Include appengine-api-labs-1.3.8.jar in application deploy for TaskQueue?

2010-10-20 Thread Don Schwarz
On Wed, Oct 20, 2010 at 3:48 PM, andrew aute...@gmail.com wrote: In my application I have started to experiment with TaskQueue. After deploying, on execution in the cloud I get the following exception: java.lang.NoClassDefFoundError: com/google/appengine/api/labs/ taskqueue/QueueFactory I

[appengine-java] Re: Include appengine-api-labs-1.3.8.jar in application deploy for TaskQueue?

2010-10-20 Thread andrew
VERY prompt reply Don. Thanks. I see another post here on a related subject. Maybe for future releases the JARs in the SDK that ARE present in the cloud could be separated from the JARs that must be uploaded with the app (separate folders under lib?)? Just an idea. Would help make our build

Re: [appengine-java] AsyncDatastoreService - ready for use?

2010-10-20 Thread Ikai Lan (Google)
Good eyes! No, this isn't ready for use yet. You can't get an instance of AsyncDatastoreService. The backend isn't ready for this call. We wanted to release this, but there were showstopper bugs that prevented us from shipping it. Look for it in an upcoming release. -- Ikai Lan Developer Programs

[appengine-java] Re: java.net.InetAddress present in new 1.3.8 SDK but not on live servers

2010-10-20 Thread mscwd01
Ikai, did you get a chance to look into this? When can we expect every app to be upgraded to 1.3.8? -- 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

Re: [appengine-java] Re: java.net.InetAddress present in new 1.3.8 SDK but not on live servers

2010-10-20 Thread Ikai Lan (Google)
You're in the 1.3.8 pool. I don't know why you are getting the error, since others are reporting that it's working fine for them. I'm hoping to try to reproduce this when I get a chance. -- Ikai Lan Developer Programs Engineer, Google App Engine Blogger: http://googleappengine.blogspot.com

[appengine-java] Automatic logout via Google Login Service ?

2010-10-20 Thread Didier Durand
Hello, I implemented UserService with GWT to get the login service of Google Accounts. Works fine with the provided login and logout links. But, Google Accounts will accept login for all the accounts it knows (much much more than my application with a few users only) How can I force logout of a

Re: [appengine-java] OpenID Development server

2010-10-20 Thread Fabrizio Accatino
Issue opened http://code.google.com/p/googleappengine/issues/detail?id=3922 http://code.google.com/p/googleappengine/issues/detail?id=3922 -- 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] Roadmap for SSL on 3rd party domains?

2010-10-20 Thread David Parks
All the posts about this seem to be from 2008. I see SSL for 3rd party domains is on the roadmap. Anyone have any insight about approximately when this might become a reality? I started developing an app for app-engine, but this is an obvious show stopper that I overlooked. I need to know if I

RE: [google-appengine] Local dev sandbox doesn't appear to serialize sessions to the datastore the same as the production

2010-10-20 Thread David Parks
I don't personally touch the session, but the Spring Security Framework seems to put my implementation of the UserDetailsService object on the session (used to populate user details for authentication information to the security framework). Do you suggest that I extend the Spring Security

[google-appengine] Re: Video streaming - possible, or not?

2010-10-20 Thread aah
Hi Mark, Maybe AppEngine could be combined with something like http://www.bitsontherun.com/system-apis -aah On Oct 19, 4:10 am, Mark mar...@gmail.com wrote: Hi, I'm looking to upload a video file into the blobstore, then stream it to a flash player. I'm not sure if this is possible or not

[google-appengine] Re: Eclipse plugin with 1.3.8 doesn't recognize local data from 1.3.7 (local_db.bin)

2010-10-20 Thread l.denardo
Do you mean you were able to read old (I mean created using 1.3.7) data using 1.3.8? For what I've tried (and read reports about) switching to 1.3.8 does not show old data, but the local_bd.bin is left untouched, so simply reverting to 1.3.7 will work. Ikai Lan replied that this is a known issue

[google-appengine] Re: Django version conflicts - now also in production

2010-10-20 Thread Terje Dahl
Well. I saw now other sollution. The errors were hurting me. I reverted to using the default version of Django (0.96.x). I simply removed the use_library statement. And i my case I only had to fix a couple of temlates (by removing the safe-filter), and one client had to be fixed, as I guess the

[google-appengine] ID/Name

2010-10-20 Thread Massimiliano
Dear All, in the datastore viewer I see that all the record are stored with a ID/Name, how can I refer to it? I mean I want to use this to refer to the user of my website, in the file manager the reference is element.what??? I'm searching in the documentation but I can't understand. Thanks

[google-appengine] Can't login in App Engine web interface

2010-10-20 Thread Vladimir Prudnikov
Hello, I can't login in app engine web interface using Google Chrome. It happens with apps hosted on appengine too. The error is: Request-URI Too Large The requested URL /accounts/SetSID... is too large to process. My password is 14 symbols length. It works fine in Safari. Looks like Chrome

[google-appengine] Re: Frequent deadline exceeded errors.

2010-10-20 Thread Carlos Ble
Hi, We are facing several DeadlineExceededError since yesterday. Appid = mavencharts 10-20 04:30AM 24.323 / 500 31863ms 1539cpu_ms At that time Average QPS was about 0.04 and there was 2 instances running. Thanks On 18 oct, 12:03, Stepan stepan.wag...@gmail.com wrote: Last 3-4 days my app has

[google-appengine] Re: Frequent deadline exceeded errors.

2010-10-20 Thread Carlos Ble
Our site is dead right now because of this issues. 10-20 04:40AM 21.692 / 500 31489ms 500cpu_ms Total number of instances Average QPS Average Latency Average Memory 1 total 0.033 30463.0 ms 31.8 MBytes Instances QPS Latency Memory 0.033 30463.0 ms

[google-appengine] Re: Frequent deadline exceeded errors.

2010-10-20 Thread Carlos Ble
More info: 10-20 04:41AM 48.795 / 500 38679ms 919cpu_ms - (DeadeLineExceededError) Instances: Total number of instances Average QPS Average Latency Average Memory 2 total 0.017 160.2 ms35.4 MBytes Instances QPS Latency Memory 0.000 0.0 ms 39.6

Re: [google-appengine] ID/Name

2010-10-20 Thread Robert Kluin
In python: entity.key().id() entity.key().name() entity.key().id_or_name() Robert On Wed, Oct 20, 2010 at 06:47, Massimiliano massimiliano.pietr...@gmail.com wrote: Dear All, in the datastore viewer I see that all the record are stored with a ID/Name, how can I refer to it? I

[google-appengine] Re: Roadmap for SSL on 3rd party domains?

2010-10-20 Thread Kenneth
According to the issue tracker someone started working on it last week: http://code.google.com/p/googleappengine/issues/detail?id=792 According to the App Engine For Business Roadmap it will be a limited release by the end of this year: http://code.google.com/appengine/business/roadmap.html

Re: [google-appengine] Re: Video streaming - possible, or not?

2010-10-20 Thread Mark Wyszomierski
Ah, I grossly over-estimated the size of the videos I'll be working with. They'll be more in the size range of a few mb. So this seems easier to get going business-wise. If anyone has any walkthroughs about video streaming and app engine, that'd be great. If not, I'll be happy to post a

Re: [google-appengine] ID/Name

2010-10-20 Thread Massimiliano
Thanks! 2010/10/20 Robert Kluin robert.kl...@gmail.com In python: entity.key().id() entity.key().name() entity.key().id_or_name() Robert On Wed, Oct 20, 2010 at 06:47, Massimiliano massimiliano.pietr...@gmail.com wrote: Dear All, in the datastore viewer I see that all the

[google-appengine] Datastore viewer GQL tick box missing, can't enter GQL

2010-10-20 Thread Kenneth
The tick box that allows you to enter GQL for the datastore viewer has gone awol. If you enter any gql in the datastore viewer it just gets deleted when you click submit query. Or is it just me? -- You received this message because you are subscribed to the Google Groups Google App Engine

Re: [google-appengine] Datastore viewer GQL tick box missing, can't enter GQL

2010-10-20 Thread Robert Kluin
Works fine for me. Under the 'kind' select, when I click 'options' I get a box I can enter and run a GQL query in. Maybe your browser? I'm using a FF4 beta. Robert On Wed, Oct 20, 2010 at 11:16, Kenneth goo...@kmacleod.ie wrote: The tick box that allows you to enter GQL for the

[google-appengine] Re: Datastore viewer GQL tick box missing, can't enter GQL

2010-10-20 Thread Kenneth
Yes, browser issue. I had my user agent in ff set to ie8. Switched it back and it works fine. I wonder if this happens in ie? Wow, I really don't care. Thanks Robert. On Oct 20, 4:20 pm, Robert Kluin robert.kl...@gmail.com wrote: Works fine for me. Under the 'kind' select, when I click

Re: [google-appengine] Re: Datastore viewer GQL tick box missing, can't enter GQL

2010-10-20 Thread Robert Kluin
l0l... :) I do not use ie either, so no idea On Wed, Oct 20, 2010 at 11:26, Kenneth goo...@kmacleod.ie wrote: Yes, browser issue.  I had my user agent in ff set to ie8.  Switched it back and it works fine.  I wonder if this happens in ie?  Wow, I really don't care. Thanks Robert.

[google-appengine] Re: Cound not acces my site. (times out / connection failed)

2010-10-20 Thread antichrist
Here is South Korea (Republic of Korea) So No one have issue of China's Firewall. My users live in korea. On 10월20일, 오전5시11분, nickmilon nickmi...@gmail.com wrote: Most probably you have issues with China's Firewall. On Oct 19, 7:50 pm, antichrist ttlt...@gmail.com wrote: I launched my

Re: [google-appengine] Re: Frequent deadline exceeded errors.

2010-10-20 Thread TAKEUCHI POMU
My app(appid: mb4sqjp) also have similar problem for these couple of days... Sometimes it leaves message I've never seen. For the most part, log says - Request was aborted after waiting too long to attempt to service your request. This may happen sporadically when the App Engine serving cluster

RE: [google-appengine] Re: Roadmap for SSL on 3rd party domains?

2010-10-20 Thread David Parks
Great info, this is exactly what I couldn't track down, thanks! I'll keep apprised of changes, that might just coincide with our release, or at least shortly thereafter and I'll be able to migrate back onto GAE soon. I can't imagine lack of SSL not being a showstopper, to me it makes a webhosting

[google-appengine] Google apps engine for Business pricing Q

2010-10-20 Thread David Parks
I'm looking at Google apps engine for Businesses, and in the pricing it says: Each application costs $8 per user, up to a maximum of $1000, per month. Can someone explain to me what a user is in this context? I can't find any explanation. Is this just the user that creates the app on

Re: [google-appengine] Re: Announcing the Matcher API for Trusted Testers

2010-10-20 Thread Ikai Lan (Google)
No, it's not on the roadmap. You can check this roadmap here: http://code.google.com/appengine/docs/roadmap.html Note that our roadmap is not an exhaustive list of everything we intend to do, just a list of the highest priority items for us. -- Ikai Lan Developer Programs Engineer, Google App

Re: [google-appengine] Re: Cound not acces my site. (times out / connection failed)

2010-10-20 Thread Robert Kluin
I have not had issues connecting to my apps from S. Korea. Robert 2010/10/20 antichrist ttlt...@gmail.com: Here is South Korea (Republic of Korea) So No one have issue of China's Firewall. My users live in korea. On 10월20일, 오전5시11분, nickmilon nickmi...@gmail.com wrote: Most

Re: [google-appengine] Google apps engine for Business pricing Q

2010-10-20 Thread Eli Jones
Wait.. I just realized something. Does this mean that if I am the only user of my App (and all it does it backend processing), I can pay Google $8 a month so the engineers have to respond to any old silly e-mail I send them (Will they have to LOL at my jokes?)? (AND I get a SLA? If the pricing

Re: [google-appengine] Google apps engine for Business pricing Q

2010-10-20 Thread Eli Jones
Ah, I just realized that as long as it is in development could just as easily mean, as long as it is just on your computer and you have not deployed to appengine. Unless they have some other sort of formal definition for published and active that doesn't just mean deployed.. Who knows when or how

[google-appengine] Total Files - Limit

2010-10-20 Thread MasterGaurav
Hi, I have 2079 files in my war folder. When I do a appcfg update war, I get a file-limit error for having 4141 files. How can 2079 files turn into 4141 files... where am I missing out? I remember having read somewhere that each file is counted twice in some conditions... don't remember what's

[google-appengine] Re: Datastore viewer GQL tick box missing, can't enter GQL

2010-10-20 Thread Darien Caldwell
I use IE 8, the checkbox shows fine. So it sounds like FF has a bug in it. ;) -- 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

[google-appengine] Re: Google apps engine for Business pricing Q

2010-10-20 Thread Geoffrey Spear
My understanding that the the App Engine for Business offering you're describing is intended for intranet applications, and that the user count would be the number of users in your Google Apps domain. There's no free quota because the applications aren't free in the first place. As I understand it

[google-appengine] building index.yaml

2010-10-20 Thread Tim Jones
Any thoughts or recommendations for efficiently creating complex index.yaml files? My app has a search page that uses six different filter criteria. I'd like to make sure GAE is indexing all possible permutations. I've thought of only three ways to do this: 1. Using the dev server, manually

Re: [google-appengine] Re: Roadmap for SSL on 3rd party domains?

2010-10-20 Thread Ikai Lan (Google)
David, We agree with you about SSL. It's a high priority item for us. It's just a bit more work for us to make this piece work. You may want to look into using a third-party provider for payments, though. I bring this up simply because unless you are a billing provider, dealing with money,

RE: [google-appengine] Re: Roadmap for SSL on 3rd party domains?

2010-10-20 Thread David Parks
We actually did the integration ourselves using paypal as a processor. With approval you can do reference transactions where paypal maintains all of the card data and provides a transaction ID with which you can make future charges without re-requesting payment information from the client (we

Re: [google-appengine] Re: Quota numbers seem wrong

2010-10-20 Thread Ikai Lan (Google)
Ah, I understand now. The issue is that they are stuck at higher quota numbers than expected. We believe this is a bug in which the higher numbers will not change until they are exceeded. We're investigating this. -- Ikai Lan Developer Programs Engineer, Google App Engine Blogger:

[google-appengine] Re: Quota numbers seem wrong

2010-10-20 Thread powera
This should be fixed. The problem was only with the display and not with the actual tracking/charging of quota usage. On Oct 19, 5:19 pm, Jeff Schwartz jefftschwa...@gmail.com wrote: I am testing a new app in production and it sent out 1 email but the admin screen showed that 20 emails had

Re: [google-appengine] building index.yaml

2010-10-20 Thread Robert Kluin
Hey Tim, It is probably not very elegant, but I guess I have used a combination of 1 and 3. I put together scripts to request all combinations of the fields and let the SDK generate the indexes it wants. I have done this using windmill (like selenium) script to fill in and submit forms, which

RE: [google-appengine] Re: Google apps engine for Business pricing Q

2010-10-20 Thread David Parks
Oh interesting. Maybe I'm mis-understanding google's intention here. I had hoped to use app-engine to host a generic web-facing site. It seems like a brilliant platform for that. But perhaps this is not a primary use case considered by google? Or maybe that's what they mean by users outside your

Re: [google-appengine] Re: Quota numbers seem wrong

2010-10-20 Thread Ikai Lan (Google)
D'oh, Alex's email is the correct update. I misread the internal thread. The issue should, in fact, be resolved. Please let us know if it's not. -- Ikai Lan Developer Programs Engineer, Google App Engine Blogger: http://googleappengine.blogspot.com Reddit: http://www.reddit.com/r/appengine

Re: [google-appengine] Re: Google apps engine for Business pricing Q

2010-10-20 Thread Robert Kluin
Hey David, You can use App Engine for building a generic internet facing site. App Engine for Business seems to be targeting a different market segment, businesses running intranet type apps. Robert On Wed, Oct 20, 2010 at 15:34, David Parks davidpark...@yahoo.com wrote: Oh

[google-appengine] Re: Google apps engine for Business pricing Q

2010-10-20 Thread Jamie H
From what I have read they definately plan to make app engine for business available for user facing sites, they simply have not determined the pricing for that model yet. On Oct 20, 2:45 pm, Robert Kluin robert.kl...@gmail.com wrote: Hey David,   You can use App Engine for building a generic

[google-appengine] Re: Multiple files upload and INPUT FILE HTML

2010-10-20 Thread JavierH
Hi, Yes Scott, thanks, I know, I'm using multiple inputs, the problem is that I don't want to manually select each file for each input, got my point? What I would like to do is to programatically assign a value to each with the file path, so I don't have to fetch each file manually from my disk

[google-appengine] errors

2010-10-20 Thread Jamie H
Seems that the mail.send error is back... I've even noticed it thrown by the ereporter trying to send me the day's exceptions. This is for app-id moto-tmobile. I've also seen elevated datastore timeouts today -- You received this message because you are subscribed to the Google Groups Google

Re: [google-appengine] Re: Memcache capacity

2010-10-20 Thread djidjadji
If you do this many request to memcache you have a couple of hot instances of your app. Maybe if your memory footprint will allow you can cache some of them in memory first and use memcache as an L2 cache. This will reduce the calls and data transfer. Only cache stuff in memory that is somewhat

Re: [google-appengine] building index.yaml

2010-10-20 Thread Tim Jones
Ah, that sounds like a good solution. Thanks. =T= On Oct 20, 2010, at 12:32 PM, Robert Kluin wrote: Hey Tim, It is probably not very elegant, but I guess I have used a combination of 1 and 3. I put together scripts to request all combinations of the fields and let the SDK generate the

Re: [google-appengine] errors

2010-10-20 Thread Ikai Lan (Google)
Do you have a ballpark estimate of the frequency of exceptions thrown? Also - are the emails being delivered, even if the exception is thrown? -- Ikai Lan Developer Programs Engineer, Google App Engine Blogger: http://googleappengine.blogspot.com Reddit: http://www.reddit.com/r/appengine Twitter:

[google-appengine] Re: errors

2010-10-20 Thread Jamie H
Ikai, For a ball park estimate it is very low. ~1% if even that. Much less than in the past. Only mentioning it here because as I've told you for the past week it seemed to be gone. I'm in the middle of running an invitation/registration site so I feel I have a pretty good barometer for this

Re: [google-appengine] Re: errors

2010-10-20 Thread Ikai Lan (Google)
Thanks for the info. I'll look into this and track this number. -- Ikai Lan Developer Programs Engineer, Google App Engine Blogger: http://googleappengine.blogspot.com Reddit: http://www.reddit.com/r/appengine Twitter: http://twitter.com/app_engine On Wed, Oct 20, 2010 at 3:03 PM, Jamie H

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

2010-10-20 Thread Adam Johnson
Hi folks, I'm getting tons of this error on my app id 'ipadsocial' yesterday and today. Could you take a look? Maybe you should increase some of the internal quotas for my app. It is paid app. Thanks, Adam Request was aborted after waiting too long to attempt to service your request. This may

[google-appengine] Re: Video streaming - possible, or not?

2010-10-20 Thread nacho
I have to do something like Mark, but i also need the posibility of encoding the videos uploaded by the users. So, my question is: does appengine supports ffmpg or some other encoding tool? On 20 oct, 12:11, Mark Wyszomierski mar...@gmail.com wrote: Ah, I grossly over-estimated the size of the

Re: [google-appengine] Re: Quota numbers seem wrong

2010-10-20 Thread Jeff Schwartz
Thanks, Ikai, I knew you the rest of the team were on top of it. Jeff On Wed, Oct 20, 2010 at 3:31 PM, Ikai Lan (Google) ikai.l+gro...@google.comikai.l%2bgro...@google.com wrote: Ah, I understand now. The issue is that they are stuck at higher quota numbers than expected. We believe this

[google-appengine] Updating static files

2010-10-20 Thread Rafael Sierra
Hi, I made an update which changed only 1 static file (js), after 3 updates, nothing had changed, then I tried change something in some python file, after that the static file was updated too. Is this a bug? -- Rafael Sierra http://blog.rafaelsdm.com -- You received this message because you

[google-appengine] Rejecting requests over a set size

2010-10-20 Thread Jeff Lindsay
PostBin.org is a very popular community tool used for debugging webhooks. Unfortunately, every now and then, somebody posts too much ... not in post count, but in frequency * request size, throwing us over our reasonable 4gb/day incoming bandwidth quota. I've considered running a proxy that

Re: [google-appengine] Updating static files

2010-10-20 Thread Orlando P. Abarzua
NECESITO DESARROLLADORES ANDROID SKYPE patriciony On Wed, Oct 20, 2010 at 9:31 PM, Rafael Sierra rafaeljs...@gmail.com wrote: Hi, I made an update which changed only 1 static file (js), after 3 updates, nothing had changed, then I tried change something in some python file, after that

[google-appengine] TaskQueue bulkAdd failing fairly regularly since 1.3.8

2010-10-20 Thread yo...@radioactive
Hi guys, I keep getting these errors : com.google.apphosting.api.ApiProxy $ApiDeadlineExceededException: The API call taskqueue.BulkAdd() took too long to respond and was cancelled. since the 1.3.8 release (never encountered it before). The system status says TaskQueue is doing just fine but

[google-appengine] Re: Total Files - Limit

2010-10-20 Thread sodso
compress ur files into 1 zip file or something like that...thats what google recommends for uploading large number of files...cheers ! On Oct 20, 10:52 pm, MasterGaurav gaurav.va...@gmail.com wrote: Hi, I have 2079 files in my war folder. When I do a appcfg update war, I get a

[google-appengine] Re: Cound not acces my site. (times out / connection failed)

2010-10-20 Thread antichrist
Not always, but some time and some people. That is problem. And DashBoard error Ok, System Status Ok. Thanks for reply. On Oct 21, 1:52 am, Robert Kluin robert.kl...@gmail.com wrote: I have not had issues connecting to my apps from S. Korea. Robert 2010/10/20 antichrist ttlt...@gmail.com: