[appengine-java] Re: production memcache grabTail namespace isolation broken

2010-02-02 Thread phraktle
Hi, In this case grabTail would be quite useless, as one cannot really construct queues with it (ie. it would just force removing items from all namespaces that wouldn't even expire otherwise). The documentation also implies that there's a separate LRU list per namespace, which does make sense,

[appengine-java] Re: here is currently a bug preventing owned one-to-many relationships where the parent and the child are the same class, making it difficult to model tree structures.

2010-02-02 Thread Ian Marshall
Yes, this is datanucleus-appengine issue 80 (Recursive relation does not work). I have starred this issue, along with 29 others. I could not wait for the fix, so I have already worked around this issue by having all my entities of this type: · having the same entity group parent (of a

Re: [appengine-java] Re: Merge join on list properties / more efficient on one list or on separate lists

2010-02-02 Thread Raphael André Bauer
On Thu, Jan 28, 2010 at 11:14 AM, Max thebb...@gmail.com wrote: Bump! In my opinion, the 2nd one performs better but use more storage. Because the first one fan out (n + m) copies whereas the second one fans out (n * m) copies. This is just MY THEORY. Please correct me if I am wrong.

[appengine-java] Persisting during scheduled maintenance periods using JDO

2010-02-02 Thread Ian Marshall
In the GAE/J documentation under How-To | Handling Scheduled Maintenance Periods, it states: During this period, all datastore writes and transactions will throw an exception. Your application can detect these errors and indicate to the user that the application is in read-only, recommending that

Re: [appengine-java] Re: Merge join on list properties / more efficient on one list or on separate lists

2010-02-02 Thread John Patterson
I have read somewhere that all properties (lists or otherwise) are stored in an Entity including the property name. An Entity is a Bag of properties rather than a Set of Lists. Therefore your two approaches would take the same amount of storage for the Entity and your two queries would

[appengine-java] Re: problem with Datastore quotas

2010-02-02 Thread Jorge
Hi Dimitar, This is an idea. Take a closer look to your _ah_SESSION kind. It is possible you are storing huge session data and it remains there after the sessions expire. If that is the case, you probably want to clean your expired sessions periodically. Jorge Gonzalez On Feb 1, 1:05 pm,

[appengine-java] AppEngine Java JDO Posting - need help

2010-02-02 Thread niraj
If anyone on this group is interested in AppEngine-Java-JDO work and make some quick bucks please look at the posting on elance http://shar.es/aM73b -- 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

[appengine-java] Re: AppEngine Java JDO Posting - need help

2010-02-02 Thread niraj
If the Last URL does not work use this http://www.elance.com/job?jobid=19035975rid=1KDB9 On Feb 2, 7:26 am, niraj njun...@gmail.com wrote: If anyone on this group is interested in AppEngine-Java-JDO work and make some quick bucks please look at the posting on elance http://shar.es/aM73b

[appengine-java] access compute and storage clouds with jclouds

2010-02-02 Thread Adrian Cole
jclouds is an open source framework that helps you get started in the cloud and reuse your java development skills. Our api allows you to freedom to use portable abstractions or cloud-specific features. We support many clouds including Amazon, VMWare, Azure, and Rackspace. After over 7 months and

[appengine-java] Converting Entity to Object

2010-02-02 Thread Alexandru Farcas
Is there a way of converting dynamically an Entity to a specific Object ? For example: I have some Contact objects and User, Invoice etc, witch are PersistanceCapable. So i can make queries (javax.jdo.Query) that return lists of those kind of objects (Contact, User, Invoice etc) or i can use app

[appengine-java] Need some pointers about XMLHttpRequest and Google user services

2010-02-02 Thread Shai
Hi, I need some clarifications about how to use the Google users services when when working with XMLHttpRequest (javascript). For the purpose of the discussion I use the code from the Google sample of user services: http://code.google.com/appengine/docs/java/gettingstarted/usingusers.html I need

[appengine-java] My application stopped working

2010-02-02 Thread Stéphane Traumat
Hello... My application as running well since some days : http://www.quatuo.com/ ( quatuo-www ) Today, i connect and i see a 500 error message... no Idea why... nothing in the logs... I tried to empty queues, redeploy and all... but still nothing is working :( I need help as peoples just can't

Re: [appengine-java] Re: problem with Datastore quotas

2010-02-02 Thread Dombrowski, Todd
Most likely indexes -- app engine maintains an index for every query the app engine will perform (from Programming Google App Engine) If you have a variety of queries that use multiple properties and sort orders, the datastore will need an index for every unique combination -- and this is in

[appengine-java] non-deterministic datastore behaviour while unit testing

2010-02-02 Thread Markus Scheidgen
Hi, I use junit to unit test my app according to the Unit Testing With Local Service Implementations tutorial. Once I use owned relationships within my data-model, the datastore sometimes behaves unexpected. Objects and links stored in the datastore, sometimes can not be read from the data store.

[appengine-java] Datastore migration

2010-02-02 Thread Moritz
Hello everyone, after a couple of versions of my application I found out that I need to change the datamodel fundamentally in order to achieve better performance. My approach was as follows: (Coding) - Mark all old API as @Deprecated - Create new classes etc. - Update views etc. - Develop a

Re: [appengine-java] Re: production memcache grabTail namespace isolation broken

2010-02-02 Thread Ikai L (Google)
That's interesting. Let me follow up with the team to try to understand how this is supposed to work. On Tue, Feb 2, 2010 at 12:05 AM, phraktle phrak...@gmail.com wrote: Plus, it's working okay in the development server :) V. On Feb 2, 9:03 am, phraktle phrak...@gmail.com wrote: Hi,

Re: [appengine-java] Converting Entity to Object

2010-02-02 Thread John Patterson
You can check out Twig or Objectify which all aim to do what you are asking about. Twig is higher level - more like an Object database built on top of the datastore in which you use the native low-level Queries. Objectify is more low level in that you handle relationships between

Re: [appengine-java] Converting Entity to Object

2010-02-02 Thread Scott Hernandez
http://code.google.com/p/objectify-appengine (it seems it got truncated from John's message) On Tue, Feb 2, 2010 at 10:32 AM, John Patterson jdpatter...@gmail.com wrote: You can check out Twig or Objectify which all aim to do what you are asking about. Twig is higher level - more like an

Re: [appengine-java] Can't run the Java version of GAE.

2010-02-02 Thread Don Schwarz
Sorry, I don't really have any theories. No one else has ever reported this, so lets start with what makes your machine unique. What JRE are you running? Can you try a Sun 1.5 or 1.6 VM if you're not already using one? Is there anything special about the networking on your machine? IPv6

Re: [appengine-java] My application stopped working

2010-02-02 Thread Ikai L (Google)
This issue should have been resolved: http://groups.google.com/group/google-appengine-downtime-notify/browse_thread/thread/7fb8a39149de3b55 http://groups.google.com/group/google-appengine-downtime-notify/browse_thread/thread/7fb8a39149de3b55Please let us know if you are continuing to be affected.

Re: [appengine-java] non-deterministic datastore behaviour while unit testing

2010-02-02 Thread Ikai L (Google)
Can you post test cases that produce non-deterministic behavior? If this is reproducible, please create an issue with the entities and test cases in question and let us know: http://code.google.com/p/googleappengine/issues/ On Tue, Feb 2, 2010 at 6:48 AM, Markus Scheidgen

Re: [appengine-java] non-deterministic datastore behaviour while unit testing

2010-02-02 Thread John Patterson
You say that you experience this when debugging - do you see any exceptions being thrown? One common exception I see during long debugging sessions is Handle 7 found or similar. But these do not occur on the production servers. On 3 Feb 2010, at 02:52, Ikai L (Google) wrote: Can you

[appengine-java] Eclipse GAE plugin problem with Datanucleus enrichment

2010-02-02 Thread Joe Hudson
Hello, I am using the Google App Engine Eclipse plugin and get an error when I save a Java class with a get(String) method. The enhancer is throwing a NullPointerException. I have added the transient annotation and don't know what else I can do to avoid this issue. Can anyobody please give me

Re: [appengine-java] Can't use hessian with appengine

2010-02-02 Thread Olemis Lang
On Wed, May 20, 2009 at 6:06 AM, Konstantin Solomatov konstantin.soloma...@gmail.com wrote: Hello, I wanted to use Hessian in my appengine application http://hessian.caucho.com/ When I test code locally everything works well. When I deploy to the app engine, things go awry. If I send a

[appengine-java] Re: non-deterministic datastore behaviour while unit testing

2010-02-02 Thread Markus Scheidgen
No, no caught or uncaught exception what so ever. I tried to create a very simple version of what I was doing. The simplest example, I could imagine, is the following: public class OwnedRelationships extends LocalServiceTestCase { @PersistenceCapable(identityType =

Re: [appengine-java] Re: Unsupported method contains while parsing expression:

2010-02-02 Thread Ikai L (Google)
Oy, this is what I get for not running code before posting it. Good looking out. On Tue, Feb 2, 2010 at 1:06 AM, datanucleus andy_jeffer...@yahoo.comwrote: query.setFilter(aliases == alias); That is invalid JDOQL syntax; the spec is the spec and JDOQL uses Java syntax. If you have a

Re: [appengine-java] Can't use hessian with appengine

2010-02-02 Thread Jeff Schnitzer
FWIW, it's actually quite easy to check out Resin trunk (which holds the hessian source code), make the patch, build with ant, and get a hessian.jar. Hessian works quite beautifully on appengine. I wish I had an asynchronous ObjectiveC hessian client so I could ditch my tediously duplicated

[appengine-java] Need to update the type of primary key on existing objects in GAE Java

2010-02-02 Thread shaz
Hi, I am building a web app using GAE Java. I have a class that uses a Long ID as its primary key. I now want to create a new class that would be the parent class to this original class (a one to many relationship) however the children that already exist need to have a primary key of type key,

[appengine-java] Re: memcache SerializationException

2010-02-02 Thread chiappone
Is it even possible to use memcache with GWT on the server side? I am wondering if I am even able to do this? On Feb 1, 1:56 pm, chiappone chiapp...@gmail.com wrote: I have hit the wall in trying to figure out what I am doing wrong in my GAE GWT application.  I am trying to use memcache to get

[appengine-java] dynamic class load

2010-02-02 Thread javaness
Hi; I am trying Java on Eclipse by App engine plugin. Is it possible to dynamically load classes? (maybe hot-swapping is the correct term) In an another project, I use Jetty plugin of Maven, and whenever I compile a java class, Jetty automically loads it. So no restart is needed on code

Re: [appengine-java] dynamic class load

2010-02-02 Thread Ikai L (Google)
Yes. Run your server using Debug. Eclipse will automatically compile your classes on save. The only exception is certain types of changes to classes that need to be enhanced after compilation. Eclipse will prompt you to restart. On Tue, Feb 2, 2010 at 4:04 PM, javaness enesa...@gmail.com wrote:

[appengine-java] Re: Can't compile Guestbook demo modified as in the video

2010-02-02 Thread SD
Any deployable demo involving the datastore? So far was able to deploy only hello-world-type applications, no luck with the datastore-linked guestbook. Tried to deploy code from: http://googleappengine.googlecode.com/svn› trunk› java› demos› jdoexamples but it did not work either. Kept

[appengine-java] Re: Restrict which google accounts can access the app

2010-02-02 Thread hendrix.jason
I think this is what you are looking for: http://code.google.com/appengine/docs/java/config/webxml.html#Security_and_Authentication On Jan 31, 2:55 pm, Scott gocards...@gmail.com wrote: I read that you can make people login to their google account in order gain access to your app, but is there

[appengine-java] Re: Object state from a query

2010-02-02 Thread Brandon
Thx. Can the state only be determined at runtime, or there is a general rule? I appreciate if you can let me know whether each match is retrieved in an independent transaction. Thx again. On Feb 2, 12:04 am, datanucleus andy_jeffer...@yahoo.com wrote: JDOHelper.getObjectState(obj) ? -- You

[appengine-java] is google app engine a real-time cloud?

2010-02-02 Thread smile laugh
hello everyone someone said that cloud computing is not real-time platform. that is to say, if you insert a record into cloud(such as bigtable), and then if you query the record immediately , maybe no rowset returned. because in a cloud platform, a record is store in lots of server , at that

Re: [appengine-java] Two ManyToOne relationships in one class

2010-02-02 Thread Ikai L (Google)
The explanation for the exception is in the exception text itself. Each entity's key contains the ancestor information for that entity: http://code.google.com/appengine/articles/storage_breakdown.html http://code.google.com/appengine/articles/storage_breakdown.htmlA path is a concatenation of

[appengine-java] Re: Can't run the Java version of GAE.

2010-02-02 Thread seleronm
Hi. Though it might be unrelated Please refer to the following links http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=560044 Please Try. thanks. On 2月3日, 午前4:23, Don Schwarz schwa...@google.com wrote: Sorry, I don't really have any theories.  No one else has ever reported this, so lets

[appengine-java] Performance of count entity

2010-02-02 Thread Max
Hi, I am designing my data model and planning to use following KeysOnly query to perform a count(*) with some filter conditions by a daily cron job. FetchOptions fetchOptions = FetchOptions.Builder.withOffset(0).limit (Integer.MAX_VALUE);

[appengine-java] Re: Memcache data life cycle

2010-02-02 Thread Max
Thanks, I have done some experiments which support your point. On Jan 17, 7:11 pm, Qian Qiao qian.q...@gmail.com wrote: On Sun, Jan 17, 2010 at 19:04, Max thebb...@gmail.com wrote: Hi GAE gurus, Is there anyone who can tell me the life-cycle of data cached in memcache? I found those

[appengine-java] Seeing owned/child entities in the datastore viewer

2010-02-02 Thread Daniel Benamy
Hi, I'm trying to find a way to see the relationships between entities in the data store viewer. If I have: class A { B foo; } and I'm looking at an instance of A in the data store viewer, is there any way for me to find its B? I feel like this should be pretty simple and maybe I'm just

[appengine-java] Re: Object state from a query

2010-02-02 Thread datanucleus
Obviously the state has a general rule; the JDO spec. Just that you can use JDOHelper.getObjectState to tell you what is the rule, since it follows the spec -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send

[appengine-java] Re: GAE For Java with struts2 And I am not able to access development admin console

2010-02-02 Thread MKumar
Thanks Andy Booth, You had answered very well to my problem, Now I got the nudge of the problem. I will opt my self for this scenario. Mrityunjay Kumar On Feb 1, 6:05 pm, andy.booth andy.booth...@googlemail.com wrote: This occurs with most frameworks that use a filter with a wildcard mapping

[appengine-java] Re: is google app engine a real-time cloud?

2010-02-02 Thread smile laugh
Enrique Perez thank you so so much laughsmile -- 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: is google app engine a real-time cloud?

2010-02-02 Thread mete
Hello Enrique, You have said that it is possible to hit 2 different datacenters. I believe appengine has a single primary dc and other one is just a passive failover. Am I wrong on this ? Does appengine have multiple active dcs ? Thanks. Mete On Feb 3, 5:47 am, Enrique Perez

[appengine-java] Re: Incorrect number of entities returned

2010-02-02 Thread aswath satrasala
Hello Anything wrong here. I have two classes Tenant and SecurityGroup. * Create Tenant * Create SecurityGroup * Add SecurityGroup to Tenant * Persist. * Create another SecurityGroup entity. * Persist When I query the datastore for SecurityGroup entities, I get back one entity instead of two.

[appengine-java] Re: Converting Entity to Object

2010-02-02 Thread vbart
1. you can also try AuDAO, which allows you to generate DAO layer over GAE low-level datastore API. The DAO layer also includes the methods for converting between DTO (e.g. Contact, User) and GAE Entity objects, so you do not need to write them manually - they can be generated. The way of

[google-appengine] Re: why my datastore nearly be full?

2010-02-02 Thread Hugo Visser
Well I guess what I'm seeing is not normal. I have 129 entities that take 1 MB in total according to the statistics. I have 48 MB in memcache and that's it. Still my total stored data quota is at 59% and didn't get reset, even after flushing the memcache and deleting all of my entities from the

[google-appengine] Re: How Google calculate datastore usage?

2010-02-02 Thread Hugo Visser
I'm seeing the same, and others are too, see this thread: http://groups.google.com/group/google-appengine/browse_thread/thread/76b71174fd94300f/e4d64b5d6618cd76#e4d64b5d6618cd76 When did you notice the quota increasing? On Feb 2, 8:55 am, lookon areyouloo...@gmail.com wrote: Here is my

Re: [google-appengine] User is online/offline

2010-02-02 Thread m seleron
Hi, Though the user is limited I think that get_presence might be useful. Please refer to the following links python:http://code.google.com/intl/us/appengine/docs/python/xmpp/overview.html java:http://code.google.com/intl/us/appengine/docs/java/xmpp/overview.html [Sending Instant

Re: [google-appengine] Re: security in task queue servlets

2010-02-02 Thread Nick Johnson (Google)
Hi Patrick, Filtering out X-AppEngine prefixed headers is intentional, and we certainly expect to continue doing so. -Nick Johnson On Mon, Feb 1, 2010 at 8:29 PM, Patrick Linskey plins...@gmail.com wrote: (and Require Admin login isn't enough) That would be enough, but the only way to do

[google-appengine] Re: why my datastore nearly be full?

2010-02-02 Thread Hugo Visser
Any suggestions from Google folks such as Nick maybe? On Feb 2, 9:56 am, Hugo Visser botte...@gmail.com wrote: Well I guess what I'm seeing is not normal. I have 129 entities that take 1 MB in total according to the statistics. I have 48 MB in memcache and that's it. Still my total stored

[google-appengine] Re: why my datastore nearly be full?

2010-02-02 Thread Hugo Visser
One other observation is that in the billing summary all seems fine: Stored Data: $0.005/GByte-day0.001.000.00$0.00 Maybe a dashboard/statistics bug? On Feb 2, 12:58 pm, Hugo Visser botte...@gmail.com wrote: Any suggestions from Google folks such as Nick maybe? On Feb 2,

[google-appengine] Re: How Google calculate datastore usage?

2010-02-02 Thread lookon
In the past few month, my datasotre usage is in the rise. I happened to have a look at the statistics today. My site is not very big and just store a few text in it. On Feb 2, 4:57 pm, Hugo Visser botte...@gmail.com wrote: I'm seeing the same, and others are too, see this

[google-appengine] Re: question about memcache time

2010-02-02 Thread Grant
I would be wary of using any cache for program control. You have no guarantees that because you asked for something to be cached for 5 minutes that it will actually be cached for 5 minutes, it may actually fall out of the cache immediately and therefore you cannot rely on it for any sort of

[google-appengine] Sitewide 500 errors

2010-02-02 Thread Jesse Grosjean
I'm seeing the following error on all of my app engine sites including: https://appengine.google.com/ http://www.hogbaysoftware.com/ http://www.simpletext.ws/ ... - Error: Server Error The server encountered an error and could not

[google-appengine] Re: Sitewide 500 errors

2010-02-02 Thread Jesse Grosjean
Not sure what is going on exactly. Maybe a local problem... though the rest of the web works. Anyway: https://appengine.google.com/ Now works for me. As do my appspot related URLS: http://hogbaysoftware.appspot.com/ http://simpletextws.appspot.com/ But I'm still seeing a sitewide 500 error

[google-appengine] Re: Sitewide 500 errors

2010-02-02 Thread johntray
My site (http://gmailnotes.appspot.com) is down too, returning the same error. System status page indicates no issues. What's going on? On Feb 2, 8:00 am, Jesse Grosjean je...@hogbaysoftware.com wrote: I'm seeing the following error on all of my app engine sites including:

[google-appengine] Re: Sitewide 500 errors

2010-02-02 Thread Jesse Grosjean
This appears to now be a local problem, at least for me. I'm on OS X using Safari. If I change to Firefox then my sites load. I cleared cache on Safari and still saw the problem. Then I did Reset Safari and that appears to have fixed the problem. Sorry for sounding the alarms when the problem was

[google-appengine] Re: Sitewide 500 errors

2010-02-02 Thread Matthew Trinneer
I'm seeing the same thing this morning too. Nothing in my logs, but site is inaccessible using Safari 4.0.4 (www.bijout.com) Error Message Error: Server Error The server encountered an error and could not complete your request. If the problem persists, please report your problem and mention

Re: [google-appengine] security in task queue servlets

2010-02-02 Thread Eli Jones
The only thing to look out for when naming Tasks is.. Task names are unique for a certain time period (I think its 7 days [I'm writing this on my phone so I won't be verifying that :) ]). This makes sure a task with the same name doesn't get added to the queue twice due to any errors. On

[google-appengine] Error: Server Error from specific domain bound to the app

2010-02-02 Thread burg
My app - www.9folds.com - is getting Server Error message: Error: Server Error The server encountered an error and could not complete your request. If the problem persists, please report your problem and mention this error message and the query that caused it. However, when trying to load from

Re: [google-appengine] my links are invalid on Digg

2010-02-02 Thread James
Thanks nick, How do i config the url to access the def head() ? best james From: Nick Johnson (Google) nick.john...@google.com To: google-appengine@googlegroups.com Sent: Tue, 2 February, 2010 6:37:58 PM Subject: Re: [google-appengine] my links are invalid

Re: [google-appengine] my links are invalid on Digg

2010-02-02 Thread Nick Johnson (Google)
Hi James, The URL is the same - only the HTTP method changes. All you have to do is add the code I included and things should work fine. -Nick Johnson On Tue, Feb 2, 2010 at 2:24 PM, James james_...@yahoo.com wrote: Thanks nick, How do i config the url to access the def head() ? best

[google-appengine] Re: Sitewide 500 errors

2010-02-02 Thread Natalie Gordon
I'm seeing the 500 error as well on our live site and on the google app engine console. What's going on? -- 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

[google-appengine] Re: Sitewide 500 errors

2010-02-02 Thread Chris L
On Feb 2, 8:32 am, Matthew Trinneer matt.trinn...@gmail.com wrote: I'm seeing the same thing this morning too.  Nothing in my logs, but site is inaccessible using Safari 4.0.4 (www.bijout.com) Actually your site (www.bijout.com) loads for me in Safari, and I found that my own site loads if I

[google-appengine] Re: Sitewide 500 errors

2010-02-02 Thread Jesse Grosjean
Actually your site (www.bijout.com) loads for me in Safari, and I found that my own site loads if I switch to a different user on my computer. Is something in cookies / cache triggering this? I think it must be related to that. I said that resetting Safari fixed the problem for me... and it

[google-appengine] Re: Sitewide 500 errors

2010-02-02 Thread Chris L
I found out if I remove the ACSID cookie my site loads fine. -- 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: Sitewide 500 errors

2010-02-02 Thread johntray
Me too -- clearing cookies fixed the problem. Kinda strange, but whatever On Feb 2, 9:44 am, Natalie Gordon natalie.gor...@gmail.com wrote: Good one. I couldn't view my sitehttp://www.lenguajero.com. I cleared cookies and I can now get to the site. I can also log in fine and view it.

[google-appengine] Re: Sitewide 500 errors

2010-02-02 Thread Jesse Grosjean
Me too -- clearing cookies fixed the problem. Kinda strange, but whatever I think the problem is bigger then that... at least for me. I can fix the problem by clearning cookies, but the problem also comes back after a few minutes. Maybe after I've logged into one of my google accounts.

[google-appengine] Re: Sitewide 500 errors

2010-02-02 Thread abwaters
No...500 errors on every page on my appengine sites as well. On Feb 2, 5:00 am, Jesse Grosjean je...@hogbaysoftware.com wrote: I'm seeing the following error on all of my app engine sites including: https://appengine.google.com/http://www.hogbaysoftware.com/http://www.simpletext.ws/ ...

[google-appengine] Re: Sitewide 500 errors

2010-02-02 Thread abwaters
Cleared cookies...good to go. My visitors won't know to do that though... On Feb 2, 7:05 am, Jesse Grosjean je...@hogbaysoftware.com wrote: Me too -- clearing cookies fixed the problem. Kinda strange, but whatever I think the problem is bigger then that... at least for me. I can fix

[google-appengine] Re: I can't get to my dashboard.

2010-02-02 Thread Jonathan Feinberg
On Feb 2, 10:18 am, Jonathan Feinberg e.e.c...@gmail.com wrote: My attempt to access the URL    http://appengine.google.com/dashboard?app_id=wordle Results in     Error: Server Error FYI, I cleared my cookies, and was able to get in. I still consider this a show-stopper. -- You received

[google-appengine] Re: I can't get to my dashboard.

2010-02-02 Thread _matt_
Had the same problem with both my dashboard _and_ my app itself. Dashboard is now working, but app is still giving that server error. Anyone else? On Feb 2, 10:01 am, Jonathan Feinberg e.e.c...@gmail.com wrote: On Feb 2, 10:18 am, Jonathan Feinberg e.e.c...@gmail.com wrote: My attempt to

[google-appengine] Re: I can't get to my dashboard.

2010-02-02 Thread _matt_
Also of interest the appengine status dashboard shows no issues despite there obviously being an issue with a server that my app is deployed on. :( (star http://code.google.com/p/googleappengine/issues/detail?id=2378 if that seems strange to you). - Matt On Feb 2, 10:07 am, _matt_

[google-appengine] Re: I can't get to my dashboard.

2010-02-02 Thread GAEfan
Yes, My app is down, and the dashboard is down. Server 500 errors everywhere. I have not cleared my cookies to test, but that is irrelevant. Visitors are not going to know to clear their cookies. From their perspective, we are either incompetent or went out of business. Please, can someone

[google-appengine] Very strange/unpredictable behavior today... need help!

2010-02-02 Thread Nevin Freeman
I am getting this error when I load my app on the domain www.riabiz.com: Error: Server Error The server encountered an error and could not complete your request. If the problem persists, please report your problem and mention this error message and the query that caused it. When I load it on

[google-appengine] Re: Sitewide 500 errors

2010-02-02 Thread _matt_
Experiencing the problem with my apps also. If you think the status page should reflect this issue (thus giving us a clue that someone is working on fixing it) please star this: http://code.google.com/p/googleappengine/issues/detail?id=2378 On Feb 2, 9:11 am, abwaters abry...@gmail.com wrote:

[google-appengine] Re: Sitewide 500 errors

2010-02-02 Thread Chris Lundie
What happens if you log in to your app at the appspot.com domain? That might set the cookie that triggers this error. —Chris L On 2010-02-02, at 11:24 AM, Mahmoud wrote: I see the same problem. However, accessing the application using the *.appspot.com URL seems to work fine. Seems to be

[google-appengine] Re: Error: Server Error from specific domain bound to the app

2010-02-02 Thread burg
Got magically fixed... now looks okay :) -- 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: Sitewide 500 errors

2010-02-02 Thread Xlorep DarkHelm
Getting this as well. Curiously, one of my apps looks like it just might work (and then doesn't) http://showsort.darkhelm.org but the actual appengine site is totally unavailable (500 error). On Feb 2, 5:10 am, Jesse Grosjean je...@hogbaysoftware.com wrote: Not sure what is going on exactly.

[google-appengine] Re: security in task queue servlets

2010-02-02 Thread Patrick Linskey
Great, thanks! Do you have any documentation to this effect? An enumeration of the headers that you strip and add, and in what contexts, would make a great contribution to your existing sections on securing an application in Python / Java, or a new security FAQ section. Also, I noticed that the

[google-appengine] Re: Sitewide 500 errors

2010-02-02 Thread Danny Tuppeny
Thanks for the update. I checked this page here: http://code.google.com/status/appengine Which doesn't show any issues (or that they're being investigated) :-( On Feb 2, 5:37 pm, Jason (Google) apija...@google.com wrote: Hi Everyone. We are currently investigating an issue that is affecting

[google-appengine] Re: Sitewide 500 errors

2010-02-02 Thread John Gardner
This is also affecting deployments. I was getting a 500 error while deploying a new release. Running appcfg.py with --no_cookies seems to work around the problem, but of course you have to log in every time. On Feb 2, 11:37 am, Jason (Google) apija...@google.com wrote: Hi Everyone. We are

[google-appengine] Re: Very strange/unpredictable behavior today... need help!

2010-02-02 Thread Danny Tuppeny
It looks like this is happening when you have cookies that would log you in. Clear your cookies and it'll work (for a while, at least). Apparently there was a backend change, and it's bolloxed :-( On Feb 2, 4:13 pm, Nevin Freeman nevin.free...@gmail.com wrote: I am getting this error when I

[google-appengine] Re: Error: Server Error from specific domain bound to the app

2010-02-02 Thread Danny Tuppeny
Seems this is being investigated: http://groups.google.com/group/google- appengine/browse_thread/thread/5815fa443a1a5a5/faf28b84ba608c0e? q=#faf28b84ba608c0e On Feb 2, 4:56 pm, Alain de R aderay...@gmail.com wrote: I see the same error on my domain. It started 2 hours ago, and it is still not

[google-appengine] Re: Sitewide 500 errors

2010-02-02 Thread nakachin
Me too - clearing ACSID cookie fixed the problem. ACSID cookie is a cookie for keeping users logged in, so I think that it is a problem of google acount. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to

[google-appengine] Re: I can't get to my dashboard.

2010-02-02 Thread dan_tohatan
I am also getting the same error when I try to sign up: https://appengine.google.com/ I am using IE 8. It appears to be working in Firefox / Chrome. I cleared my cookies and still experiencing the same error. On Feb 2, 10:18 am, Jonathan Feinberg e.e.c...@gmail.com wrote: My attempt to access

[google-appengine] Re: Sitewide 500 errors

2010-02-02 Thread rickmode
My site is down too, but only from the normal non-versioned domain. Hitting the versioned domain works. So this fails with a 500 no matter what URL is used: http://redcarpetapp.appspot.com/ (gets a 500) http://redcarpetapp.appspot.com/foo/ (doesn't exist - but still get 500) This works:

[google-appengine] appcfg update throwing 1450 HTTP Error

2010-02-02 Thread ben
Hi all, For the last hour or so running ./appcfg update has thrown an error (below) every time I try. Has anyone else been experiencing this? 2-3 hours ago I had a successful update, and things have been fine for the last few months. The only changes I've made since the last successful update

[google-appengine] java mail api

2010-02-02 Thread loucat
Hi everybody, I'm trying to send an email from a GWT project and I'm having some troubles. Even if I wasn't using Google App Engine, I got this error: Loading META-INF/javamail.providers from jar:file:/C:/documenti/ workspaces/javalou/provatesina/war/WEB-INF/lib/appengine-api-1.0-

[google-appengine] Re: Sitewide 500 errors

2010-02-02 Thread bFlood
I'm seeing this across many different apps (but not all). the appspot.com domain does not work but custom domains seem to work the admin console is completely down brian On Feb 2, 8:12 am, johntray john.tur...@gmail.com wrote: My site (http://gmailnotes.appspot.com) is down too, returning the

[google-appengine] Re: Sitewide 500 errors

2010-02-02 Thread Chris L
My site also has that error message in Safari as of this morning: Error: Server Error The server encountered an error and could not complete your request. If the problem persists, please report your problem and mention this error message and the query that caused it. It works in Firefox.

[google-appengine] Re: Sitewide 500 errors

2010-02-02 Thread Brian Dorry
Also having problems here, the cookie solution does work but is not a desirable answer for our users. On Feb 2, 10:11 am, abwaters abry...@gmail.com wrote: Cleared cookies...good to go.  My visitors won't know to do that though... On Feb 2, 7:05 am, Jesse Grosjean je...@hogbaysoftware.com

[google-appengine] GQueues Error 500, SLED 10, Firefox 2

2010-02-02 Thread Mark K
I got GQueues error today with this message: Error: Server Error The server encountered an error and could not complete your request. If the problem persists, please report your problem and mention this error message and the query that caused it. OS: SUSE (SLED 10) Browser: Firefox 2.0.0.8

[google-appengine] Re: Error: Server Error from specific domain bound to the app

2010-02-02 Thread tony
I am seeing the same issue. ..tony.. On Feb 2, 6:13 am, burg burga...@gmail.com wrote: My app -www.9folds.com- is getting Server Error message: Error: Server Error The server encountered an error and could not complete your request. If the problem persists, please report your problem and

[google-appengine] Re: Sitewide 500 errors

2010-02-02 Thread mikerowe81
I am also getting the error. (http://sso.abc.edu) Traceback (most recent call last): File /base/python_lib/versions/1/google/appengine/ext/webapp/ __init__.py, line 507, in __call__ handler.get(*groups) File /base/data/home/apps/abcsso/1.330354203179009477/main.py, line 56, in get

[google-appengine] app engine down for me too

2010-02-02 Thread Fred
Getting 500 server errors this morning when I try to access any of our apps on GAE (a couple of hundred apps). -- 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

[google-appengine] Re: Sitewide 500 errors

2010-02-02 Thread tijer
I am experiencing the same issue on my domain/appengine app, however it seems to differ for users depending on what browser they use (Chrome seems to be more affected than others, one user using Safari also submitted the issue). Pls advice On Feb 2, 2:32 pm, Matthew Trinneer

[google-appengine] Re: Sitewide 500 errors

2010-02-02 Thread tony
I am still seeing this. Must be something systemic. BTW, I am sometimes seeing the error even when going directly to appspot.com. ..tony.. On Feb 2, 5:32 am, Matthew Trinneer matt.trinn...@gmail.com wrote: I'm seeing the same thing this morning too.  Nothing in my logs, but site is

[google-appengine] Re: Sitewide 500 errors

2010-02-02 Thread tony
Now the status page itself is giving 500 errors! http://code.google.com/status/appengine ..tony.. On Feb 2, 9:52 am, John Gardner hux...@gmail.com wrote: This is also affecting deployments. I was getting a 500 error while deploying a new release. Running appcfg.py with --no_cookies seems

  1   2   >