[appengine-java] userService.createLogoutURL() not working when user accounts are Google App accounts

2010-05-06 Thread mar_novice
When using userService.createLogoutURL(URL) in a jsp, if the account used for the user is in Google Apps, instead redirected to the specified url, it just go to the login page for the Google App account. If Google account was used, it redirects to the specified url. Does anyone experienced this?

[appengine-java] Supported JSP/Servlet API version not mentioned any where

2010-05-06 Thread Sudhir Ramanandi
Which Servlet/JSP version are supported on app engine is not mentioned anywhere (or may be not easy to find) Is it servlet 2.5 ? Who can tell me ! Thanks -- Sudhir Ramanandi http://www.ramanandi.org -- You received this message because you are subscribed to the Google Groups Google App

[appengine-java] Unable to vacuum error indexes

2010-05-06 Thread Ben Gerdemann
Today I uploaded the first version of my application and got on a message about indexes with errors that suggested that I need to vacuum them. Strange because my data store is completely empty and I've never uploaded anything before... Anyway, I'm using Java so I had to download the Python API

[appengine-java] read operation that fails with a write error

2010-05-06 Thread temrad
I've a strange issue ... My application is a JSF one using primefaces. Access to the Datastore is protected by a DAO (sort of) layer. JPA is used. A page showing a quite great number of entites (just showing, not enabling to modify them) ends with the following exception: Uncaught exception from

[appengine-java] Installed appengin eclipse plugin

2010-05-06 Thread smllms
Just installed the GAE on Eclipse Galieo (3.5) but File-New- does not display the Web Application Project option, nor do I have the New Web Application Project button in the toolbar. I've uninstalled and then reinstalled the plugin and sdk, but same issue. I'm not even sure where to go about

[appengine-java] Apparent poor performance of Google Data APIs and best way to handle on GAE

2010-05-06 Thread B Loblaw
I am using the DocList API through gdata to download a document to a String. I am using the downloadFile method in the sample code DocumentList, which gets a MediaSource from DocsService and uses that to get the document content. It works. I can download a document and it generally behaves as

Re: [appengine-java] Re: uploas static resource

2010-05-06 Thread Ikai L (Google)
Not at all. In fact it may increase your page rendering time because many browsers have a limit for number of open connections per hostname. I would personally avoid it because it just adds more complexity to manage, but your needs differ from mine. On Wed, May 5, 2010 at 2:54 PM, ale

Re: [appengine-java] [JDO Paging] Getting a cursor BEFORE the end of results

2010-05-06 Thread Ikai L (Google)
This is a datastore limitation and not related to JDO/JPA, so you won't be able to do this in Objectify either (you can look at the low-level API, it doesn't provide this functionality). I believe I saw an issue in the issues tracker about creating cursors from arbitrary locations. -- You

[appengine-java] DataNucleus JPA Lifecycle Callbacks

2010-05-06 Thread Simon
Has anyone managed to get the JPA lifecycle callbacks to work? I've annotated methods with @PrePersist and @PostLoad and the methods just never get called. I followed the documentation at http://www.datanucleus.org/products/accessplatform_2_0/jpa/lifecycle_callbacks.html just to make sure that

Re: [appengine-java] DataNucleus JPA Lifecycle Callbacks

2010-05-06 Thread Sudhir Ramanandi
I have life cycle listeners working proper locally.. not tried on cloud yet.. On Thu, May 6, 2010 at 2:32 PM, Simon qila...@gmail.com wrote: Has anyone managed to get the JPA lifecycle callbacks to work? I've annotated methods with @PrePersist and @PostLoad and the methods just never get

[appengine-java] Re: read operation that fails with a write error

2010-05-06 Thread Simon
I would put the DataNucleus classes onto debug. This will then let you know where you're accidentally modifying your objects in the background which causes the objects to be flagged as dirty - that will be the cause of your unexpected writes. On May 5, 4:13 pm, temrad hdar...@gmail.com wrote:

[appengine-java] Re: DataNucleus JPA Lifecycle Callbacks

2010-05-06 Thread Simon
Is all of your JPA configuration in annotations, or do you also configure your entities through XML? On May 6, 10:07 am, Sudhir Ramanandi sramana...@gmail.com wrote: I have life cycle listeners working proper locally.. not tried on cloud yet.. On Thu, May 6, 2010 at 2:32 PM, Simon

Re: [appengine-java] DataNucleus JPA Lifecycle Callbacks

2010-05-06 Thread Chau Huynh
My entity classes were annotated, and work both in local and appspot. Thanks On Thu, May 6, 2010 at 4:02 PM, Simon qila...@gmail.com wrote: Has anyone managed to get the JPA lifecycle callbacks to work? I've annotated methods with @PrePersist and @PostLoad and the methods just never get

[appengine-java] Re: DataNucleus JPA Lifecycle Callbacks

2010-05-06 Thread Simon
Well I'm confused then. I've annotated my class with @PostLoad, @PrePersist and @PreUpdate. The @PrePersist and @PreUpdate methods never get called, whether the methods are located in the @Entity annotated class or in a defined @EntityListeners annotated class. I've tried leaving the

Re: [appengine-java] Re: DataNucleus JPA Lifecycle Callbacks

2010-05-06 Thread Chau Huynh
Here you are .. import java.io.Serializable; import java.util.Calendar; import java.util.Date; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.PostLoad; import

[appengine-java] Re: DataNucleus JPA Lifecycle Callbacks

2010-05-06 Thread Simon
Thanks for the example Chau, it looks identical to my configuration. I'll try to create a mini-project and see if I can duplicate the issue, because it definitely isn't working locally. On May 6, 10:33 am, Chau Huynh cmhu...@gmail.com wrote: Here you are .. import java.io.Serializable; import

[appengine-java] Is there any way that key name/id can be used in JPQL/JDQL?

2010-05-06 Thread Kenyth
Is there any way that key name (or pk-name), key id (or pk-id), or even parent key (or parent-key) can be used in a query regardless of JPQL or JDQL. I know in the Python edition it's possible (correct me if I'm wrong). If there's no way to use this kind query, then the power of key name or id

[appengine-java] Is key name/id the only way to ensure uniqueness when creating a new entity in a transaction?

2010-05-06 Thread Kenyth
I just want to make sure my understanding is right. Since GAE datastore use optimistic locking for transaction control, it's very easy to detect concurrent modification thus it can decide whether a transaction commit will succeed or fail. But when creating new entities, what is used to decide a

[appengine-java] Re: DataNucleus JPA Lifecycle Callbacks

2010-05-06 Thread Simon
Well I've found the following. For JPA-annotated classes the @PrePersist and @PreUpdate methods are only called if DN detects that the object is dirty. I have the problem that the @PrePersist and the @PreUpdate methods are the things which actually make the objects dirty - I only modify

[appengine-java] Re: Is there any way that key name/id can be used in JPQL/JDQL?

2010-05-06 Thread datanucleus
SELECT FROM mydomain.MyClass where myPkField = :val -- 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] Open Source FullText Search in Objectify Example

2010-05-06 Thread Duong BaTien
I got it. It may happen at googlecode maintenance time. Thanks BaTien Thanks for sharing your code. I try to get the source code, but get the following error: [bat...@dev2 restSearch]$ svn co http://fulltext-search-in- objectify.googlecode.com/svn/trunk/ fullTextSearch svn: PROPFIND request

[appengine-java] Re: Is there any way that key name/id can be used in JPQL/JDQL?

2010-05-06 Thread Kenyth
I was partly wrong in the previous post, and finding what was wrong also leads me to the answer to the question asked in the previous post. Even using the encoded String key in conjunction with annotated gae.pk-name or gae.pk-id, it is still impossible to make a query with only the key name/id.

Re: [appengine-java] Re: Is there any way that key name/id can be used in JPQL/JDQL?

2010-05-06 Thread Chau Huynh
Have you tried with KeyFactory? http://code.google.com/appengine/docs/java/javadoc/com/google/appengine/api/datastore/KeyFactory.html In this post Max Ross of Google guided how to query with Key, may it help you.. http://gae-java-persistence.blogspot.com/2010/01/querying-with-key-parameters.html

[appengine-java] Re: Is there any way that key name/id can be used in JPQL/JDQL?

2010-05-06 Thread Kenyth
Thanks for the reply! I use KeyFactory extensively in my code and I've read almost all the blog posts on that blog. It's not a question of yes or no but just for a better solution:-) On May 6, 10:44 pm, Chau Huynh cmhu...@gmail.com wrote: Have you tried with

[appengine-java] GQL: selecting by date

2010-05-06 Thread kldaniels
I am trying to run the following type of query Select * from myTable where decisionDate 2010-12-4 I am trying this with: query.setFilter(decisionDate new DATE(2010,12,4)); query.setOrdering(decisionDate desc); but this throws: javax.jdo.JDOUserException: CreatorExpression defined with class

[appengine-java] Re: App Engine cold starts and overly aggressive cycling

2010-05-06 Thread Jake
My big wonder all along is why only some people get it and not others. My restarts have always happened frequently - sometimes 1-2 restarts within the same page load. But, evidenced by my issue post, most people don't have this problem. Did you change anything recently? Anyways, just more

Re: [appengine-java] [JDO Paging] Getting a cursor BEFORE the end of results

2010-05-06 Thread Jeff Schnitzer
I'm a little confused by this. Why doesn't the OP's approach work? 1) Create query, fetch with limit of 21 items 2) Iterate through 20 items 3) Get cursor to be used for next page (if necessary) 4) Iterate to 21st item just to check for existence Why won't this work? The documentation seems to

[appengine-java] Re: PdfBox text extraction GAE

2010-05-06 Thread Fabrizio
Ken, I do not retrived the pdf using PdfBox but using an explicit http connection. Then I get the content and pass it to PdfBox. Code: URL urlObj = new URL(pdfUrl); HttpURLConnection connection = (HttpURLConnection) urlObj.openConnection(); int httpRespCode = connection.getResponseCode(); if

[appengine-java] Re: Cache pages in Memcache

2010-05-06 Thread Sarath
I would suggest a controllable/Configurable ETag than Cache-Control, would you not Ikai? -Sarath http://blog.sarathonline.com On May 5, 5:21 pm, Ikai L (Google) ika...@google.com wrote: Sounds like a great idea. I agree with you. The problem with setting a cache header is that you have very

[appengine-java] Re: Unable to vacuum error indexes

2010-05-06 Thread Ben Gerdemann
I tried using appcfg.py vacuum_index again today and the indexes were marked as deleting (or queued to be deleted?) in the admin console. While this was happening, I tried to upload my application. Uploading the indexes failed again with the same error. Reading the first error message more

[appengine-java] Re: payment gateway integrations with appengine

2010-05-06 Thread Bendanpa
Any reference showing the integration of paypal with GAE/j ? Thanks, Bendanpa On May 4, 1:56 am, romesh soni soni.rom...@gmail.com wrote: Yup Paypal works in India and its easy to integrate. On Tue, May 4, 2010 at 2:25 PM, Ikai L (Google) ika...@google.com wrote: Does Paypal work in

[appengine-java] App Engine datastore does not support operator - .

2010-05-06 Thread Jaroslav Záruba
Hello App Engine datastore does not support operator - . ...this is what I get when trying to mimic the following query example from Uses For Transactionshttp://code.google.com/appengine/docs/java/datastore/transactions.html#Uses_For_Transactions . query = pm.newQuery(select from

[appengine-java] Re: GQL: selecting by date

2010-05-06 Thread kldaniels
You must use declareParameters with dates as follows. Calendar calendar = Calendar.getInstance(); calendar.clear(); calendar.set(2000, 0, 1); Date date = calendar.getTime(); Query query = pm.newQuery(Person.class, this.birthDate = date); query.declareParameters(java.util.Date date);

[appengine-java] Re: Supported JSP/Servlet API version not mentioned any where

2010-05-06 Thread Rahul Ravikumar
It is servlet 2.5. If you looked at the web.xml then you would see a declaration: web-app xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; xmlns=http://java.sun.com/xml/ns/javaee; xmlns:web=http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd; xsi:schemaLocation=http://java.sun.com/xml/ns/javaee

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

2010-05-06 Thread Tristan
You can't avoid it. It's how App Engine decides to start new processes when it feels like it has to. In the future we will be able to reserve instances, that may solve the issue. On May 5, 8:50 am, Christian Goudreau goudreau.christ...@gmail.com wrote: This request caused a new process to be

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

2010-05-06 Thread Terry
These days, the logs show these warnings frequently and get the response code 500: Request was aborted after waiting too long to attempt to service your request. This may happen sporadically when the App Engine serving cluster is under unexpectedly high or uneven load. If you see this message

Re: [appengine-java] [JDO Paging] Getting a cursor BEFORE the end of results

2010-05-06 Thread Chau Huynh
Hi Jeff, With JPA I will need to excute getResultList() to get a collection http://java.sun.com/javaee/5/docs/api/javax/persistence/Query.html#getResultList() Somehow org.datanucleus.store.appengine.query.getCursor(Iterator? iter) can not get the cursor in the middle of my iterator, a null value

Re: [appengine-java] [JDO Paging] Getting a cursor BEFORE the end of results

2010-05-06 Thread Chau Huynh
There's 1 typo in my message, please read org.datanucleus.store.appengine.query.CursorHelper.getCursor(Iterator? iter) Thanks On Fri, May 7, 2010 at 10:48 AM, Chau Huynh cmhu...@gmail.com wrote: Hi Jeff, With JPA I will need to excute getResultList() to get a collection

[appengine-java] Versioning error using primitive int/Integer

2010-05-06 Thread Chau Huynh
Hello app engine team, It seems to me there is an issue trying to persist a @Version int field. System reports error ClassCassException from Long to Integer... java.lang.ClassCastException: java.lang.Long cannot be cast to java.lang.Integer at test.TestEntity.jdoReplaceField(TestEntity.java)

Re: [appengine-java] [JDO Paging] Getting a cursor BEFORE the end of results

2010-05-06 Thread Yasuo Higa
Hi James and Jeff, 1) Create query, fetch with limit of 21 items 2) Iterate through 20 items 3) Get cursor to be used for next page (if necessary) 4) Iterate to 21st item just to check for existence This is exactly what Slim3 supports.

[appengine-java] Re: Installed appengin eclipse plugin

2010-05-06 Thread smllms
Thanks. I uninstalled again, but this time started up eclipse as the root user and reinstalled. Now it works. Appreciate the response tho. make sure you only have one installation of eclipse on your machine and that you're opening the correct one?  that's all i got Just installed the GAE

[appengine-java] DateTime Comparison

2010-05-06 Thread CodeMan
Hi, I am trying to fetch all records after a timestamp with this query select from com.chinua.Entity.Comment where date 'Sat Apr 17 21:40:05 UTC 2010' order by date desc The query just returns 0 records but there dates after Sat Apr 17. Can anyone help me out? Thanks CHINUA -- You received

Re: [google-appengine] Re: GPL but not 'open'

2010-05-06 Thread Patrick Cornelißen
Hi! 2010/5/5 samwyse samw...@gmail.com: Go read this:  http://en.wikipedia.org/wiki/Affero_General_Public_License The AGPL was designed to close a perceived application service provider loophole (the ASP loophole) in the ordinary GPL, whereby when using but not distributing the software, the

[google-appengine] Re: can't vacuum index

2010-05-06 Thread frogrod
does anyone have any ideas on how to fix this? i have an index that has been building for the past 5 hours and and 3 indexes in error for the past 10. Is this normal for a table that only has 150 rows? On May 5, 4:35 pm, frogrod frog...@gmail.com wrote: i found this in the admin logs

[google-appengine] Cannot update or vacuum indexes

2010-05-06 Thread Ben
I can neither update my indexes because all of them have a status of error, and if I remove all the items out of my index.yaml and try to vacuum_indexes, nothing happens... I get a Deleting a composite index failed: ApplicationError: 1 when I try to vacuum. -- You received this message because

[google-appengine] Re: can't vacuum index

2010-05-06 Thread Yao
I am getting this too. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to google-appeng...@googlegroups.com. To unsubscribe from this group, send email to google-appengine+unsubscr...@googlegroups.com. For

[google-appengine] my apps just got 500 what happened?

2010-05-06 Thread Mark
it was working for the last couple days -- 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: Index error -- vacuum error, too

2010-05-06 Thread VladS
I got the same problem. My Indexes stuck in Error state and can't be deleted or removed using Python SDK with the same error message. Application Id: pyx4j-poc and pyx4j-tester -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to

[google-appengine] permanent issue: memcache .set() and .set_multi()

2010-05-06 Thread Enetri.com
Our application has an issue with memcache set operations over 20 hours now. Unfortunately, 100% of them are unsuccessful. Seems that the problem is not related with today's planned scheduled maintenance. Application ID: ua URL: http://uk.enetri.com Can someone in GAE support team help to

[google-appengine] Re: Index error -- vacuum error, too

2010-05-06 Thread Pete
I'm experiencing the same issue. I only have a single index and it was on a newly deployed app. On a side note, This app used to be part of an old app and I moved it out of its parent app and into its own app. So the index was working fine before the move. The app in question is cfgamegroup and

[google-appengine] Re: can't vacuum index

2010-05-06 Thread Yao
I am getting this same error too. I can't vacuum the index either. On May 6, 8:35 am, frogrod frog...@gmail.com wrote: i found this in the admin logs 2010-05-05 15:22:39     frog...@gmail.com  Delete failed; attempting to move 1 index(es) to Error       kinds=ww_wwunit 2010-05-05 15:22:39    

[google-appengine] Unable to create a new application under existing account

2010-05-06 Thread kkotak
Hello, This has been asked a few hundred times and seems like the only way to resolve the issue of creating additional application under a google apps account is to start a new thread and get it resolved through one- on-one help from google. So here it is. My domain name is naumu and I am trying

[google-appengine] infiltrating probably not allowed email senders

2010-05-06 Thread quodt
Today i noticed a strange behavior while trying to set a custom email address as sender. As far as i know a sender of an email can be the logged in user or any administrator of the application. Administrators of any Google AppEngine application must be either gmail adresses or valid email

[google-appengine] Patch

2010-05-06 Thread beacon
This patch fixes the above error. --- google_appengine/google/appengine/tools/bulkloader.py 2010-04-23 18:33:09.0 +0100 +++ google_appengine_patched/google/appengine/tools/bulkloader.py 2010-05-05 12:56:10.0 +0100 @@ -3733,7 +3733,7 @@ if arg_dict[command]:

Re: [google-appengine] Connect users to Google profiles

2010-05-06 Thread Ikai L (Google)
There isn't a one step way, but you can use the GData client, ask your users to grant you access, then use the Profiles API to retrieve this information. On Wed, May 5, 2010 at 6:37 PM, John Tantalo john.tant...@gmail.com wrote: Is there an automated or opt-in method to connect my logged-in

Re: [google-appengine] Re: JSP File Uploading Issues on Google App Engine

2010-05-06 Thread Ikai L (Google)
You can use the form example for any kind of file. This just happens to use Photos. There are no dependencies in the com.dateengine package - please look over the code in detail. On Wed, May 5, 2010 at 7:23 PM, deporter fakihkarade...@gmail.com wrote: Thank you very much. However it would be

Re: [google-appengine] Re: ssl connection mutual authentication

2010-05-06 Thread Nick Johnson (Google)
Hi Steve, On Wed, May 5, 2010 at 8:35 PM, Steve favez favez.st...@gmail.com wrote: Hi Nick, thanks for the quick reply. Do you plan to add this feature in a future release ? We don't have immediate plans to add client certificate validation for incoming requests, or server certificate

Re: [google-appengine] infiltrating probably not allowed email senders

2010-05-06 Thread Nick Johnson (Google)
Hi, In order to add an address to your gmail account, you need to confirm it is yours - so spammers still cannot use this to send an email from an account they do not own. A far simpler way to do this is to create a Google account for any valid email address, at

Re: [google-appengine] send_mail sender restrictions and Google Apps Premier

2010-05-06 Thread Nick Johnson (Google)
Hi Brandon, Any email address your app can receive email on (eg, appspotmail addresses) are also valid - could you use them as your sender addresses? -Nick Johnson On Wed, May 5, 2010 at 9:13 PM, Brandon Bloom snprbo...@gmail.com wrote: Hi, My app sends and receives mail on a variety of

[google-appengine] Re: Query with ancestor and JDO

2010-05-06 Thread timwhunt
I posted a similar question in the GAE-Java group and got some responses: http://groups.google.com/group/google-appengine-java/browse_thread/thread/b07c62030e7bbcb8# I see you posted to that group too. -- You received this message because you are subscribed to the Google Groups Google App

[google-appengine] Re: ssl connection mutual authentication

2010-05-06 Thread Steve favez
Hi Nick, here're some clarification. My google app need to access a web service with ssl certificate authentication. (https) As it's actually not supported and I can't change the security policy of the web service, the idea would be to install a secure data connector (http://

[google-appengine] Re: GPL but not 'open'

2010-05-06 Thread Geoffrey Spear
On May 6, 2:59 am, Patrick Cornelißen corne...@pcornelissen.de wrote: IANAL, but it's plausible that if one were to upload GPL software to a service provider, the provider would have a right to the source.  Then you'd just need to convince the provider to share the source with you.  

Re: [google-appengine] Re: GPL but not 'open'

2010-05-06 Thread Patrick Cornelißen
Hi! 2010/5/6 Geoffrey Spear geoffsp...@gmail.com: That's actually an interesting case, because if you read the App Engine terms, you actually do grant Google a license to your software; they need one to reproduce the software throughout their cloud to run it for you.  The GPL explictly allows

Re: [google-appengine] Re: ssl connection mutual authentication

2010-05-06 Thread Nick Johnson (Google)
Hi Steve, On Thu, May 6, 2010 at 2:12 PM, Steve favez favez.st...@gmail.com wrote: Hi Nick, here're some clarification. My google app need to access a web service with ssl certificate authentication. (https) As it's actually not supported and I can't change the security policy of the web

Re: [google-appengine] Re: GPL but not 'open'

2010-05-06 Thread Nick Johnson (Google)
2010/5/6 Patrick Cornelißen corne...@pcornelissen.de Hi! 2010/5/6 Geoffrey Spear geoffsp...@gmail.com: That's actually an interesting case, because if you read the App Engine terms, you actually do grant Google a license to your software; they need one to reproduce the software

Re: [google-appengine] Re: Query with ancestor and JDO

2010-05-06 Thread Jaroslav Záruba
Thank you Timwhunt, this thread is among those I read, and if my understanding is right it also falls under it can't be done answers. Which sounds just weird: We know the path to the parent object yet we can't ask for or nor for its children? On Thu, May 6, 2010 at 3:08 PM, timwhunt

[google-appengine] Re: Index error -- vacuum error, too

2010-05-06 Thread Charlie
My problem has fixed itself this morning. One thing I discovered was that I was using an old version of the SDK (2 versions old) to run appcfg.py. This morning running the latest version of appcfg.py worked to vacuum and create new index I needed (well, new index is still building, but

Re: [google-appengine] Re: Query with ancestor and JDO

2010-05-06 Thread Jaroslav Záruba
* ...yet we can't ask for or it nor for its children? 2010/5/6 Jaroslav Záruba jaroslav.zar...@gmail.com Thank you Timwhunt, this thread is among those I read, and if my understanding is right it also falls under it can't be done answers. Which sounds just weird: We know the path to the

[google-appengine] Re: Request was aborted after waiting too long

2010-05-06 Thread mkmanning
One of my apps started getting this yesterday and the problem continued all day, and is still there this a.m. This is happening any time you visit the app. The error log for / shows: Request was aborted after waiting too long to attempt to service your request. This may happen sporadically when

[google-appengine] Re: my apps just got 500 what happened?

2010-05-06 Thread mkmanning
Ditto for me (replied with more detail on this thread http://groups.google.com/group/google-appengine/browse_thread/thread/dc7f92884d5ecf5c#). On May 5, 1:38 pm, Mark m...@png.canwest.com wrote: it was working for the last couple days -- You received this message because you are subscribed to

[google-appengine] Re: using GAE datastore as triple store

2010-05-06 Thread Remo
Hi Tim thank you very much for the link, very interesting project! just too bad that there is no backend for the app engine datastore available yet... you are absolutely right, the query/fetch restrictions will probably cause problems for items with a very large number of triples. my goal is to

[google-appengine] Re: Index error -- vacuum error, too

2010-05-06 Thread Pete
I'm running the latest version of the SDK. Errors are still there as of today. On May 6, 10:31 am, Charlie charlieev...@mac.com wrote: My problem has fixed itself this morning. One thing I discovered was that I was using an old version of the SDK (2 versions old) to run appcfg.py. This

[google-appengine] Re: Request was aborted after waiting too long

2010-05-06 Thread bFlood
my task queue is filled with these today. each task had been paired back to 20 small entity puts. On May 6, 11:42 am, mkmanning michaell...@gmail.com wrote: One of my apps started getting this yesterday and the problem continued all day, and is still there this a.m. This is happening any

[google-appengine] Problem Deploying Static Files

2010-05-06 Thread Andrew Johnson
I pushed a new version of my website, but now the CSS and static images are not deploying properly. Here is the messed up page: http://www.gaiagps.com Appengine shows the latest version as being correct though: http://1.latest.gaiagps.appspot.com/ Any help? I also posted this question on SO:

[google-appengine] Re: send_mail sender restrictions and Google Apps Premier

2010-05-06 Thread Brandon Bloom
Hi Nick, Any email address your app can receive email on (eg, appspotmail addresses) are also valid I did not realize that. Maybe the documentation should be updated? could you use them as your sender addresses? The message would appear as From: Specified Name f...@appid.appspotmail.com

[google-appengine] Re: send_mail sender restrictions and Google Apps Premier

2010-05-06 Thread Brandon Bloom
RE: The documentation Up to date: http://code.google.com/appengine/docs/python/mail/overview.html The From: address can be the email address of a registered administrator (developer) of the application, the current user if signed in with Google Accounts, or any valid email receiving address for

[google-appengine] New App - SkateNav

2010-05-06 Thread brandoneggar
Just wanted to share with everyone that my new app is up and running at http://skatenav.com . It's been a fun ride getting it to this point. Hope you all like. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send

Re: [google-appengine] Re: Request was aborted after waiting too long

2010-05-06 Thread Joshua Smith
+1 Here is my error: 05-06 11:00AM 46.656 / 500 10544ms 0cpu_ms 0kb Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_3; en-us) AppleWebKit/531.22.7 (KHTML, like Gecko) Version/4.0.5 Safari/531.22.7,gzip(gfe),gzip(gfe) 216.230.77.82 - - [06/May/2010:11:00:57 -0700] GET / HTTP/1.1 500 0 -

[google-appengine] htaccess

2010-05-06 Thread Manny S
A noob question - Used to have an .htaccess file I created from here - http://www.javascriptkit.com/howto/htaccess13.shtml that blocks out a bunch of site rippers and bad bots. Any equivalent of the .htaccess file in app engine. Would be great if you could point me in the right direction. I use

[google-appengine] Re: Request was aborted after waiting too long

2010-05-06 Thread bsb
And for me, it's magically working flawlessly again today. Google, did you do something? That would be good. If you didn't, it means the service is extremely unreliable: That'd be really bad... Ben On May 6, 8:02 pm, Joshua Smith joshuaesm...@charter.net wrote: +1  Here is my error: 05-06

Re: [google-appengine] htaccess

2010-05-06 Thread Barry Hunter
Other than the DOS API http://code.google.com/appengine/docs/java/config/dos.html you have to handle this sort of 'protection' at the application level. On 6 May 2010 19:06, Manny S manny.m...@gmail.com wrote: A noob question - Used to have an .htaccess file I created from here - 

[google-appengine] Two apps on different subdomains of the same domain

2010-05-06 Thread Honza Pokorny
Here is a setup that I would like to have, please tell me if it's possible. My domain is domain.com. I want to have one app on one.domain.com, and a different app on two.domain.com. Thanks -- You received this message because you are subscribed to the Google Groups Google App Engine group.

[google-appengine] Re: can't vacuum index

2010-05-06 Thread Pete
I was having the same issue and managed to fix it by doing the vacuum/ update from another computer. My original upload was done using the Mac SDK and I got the vacuum/update working using a PC. Not sure if that had anything to do with it or if it's just a matter of performing the actions from

[google-appengine] Re: Query with ancestor and JDO

2010-05-06 Thread timwhunt
Hi Jaroslav, I didn't take it as it can't be done, but I haven't tried to implement it, and this stuff is new to me. The suggestions included a parent property in the child object, which seems fairly straightforward. However, I was expecting/looking for methods that worked on the inherent

Re: [google-appengine] Re: Query with ancestor and JDO

2010-05-06 Thread Jaroslav Záruba
I mean it can't be done without another property. Currently I'm looking at the last code example in Uses For transactionshttp://code.google.com/appengine/docs/java/datastore/transactions.html#Uses_For_Transactions ... On Thu, May 6, 2010 at 9:40 PM, timwhunt timwh...@gmail.com wrote: Hi

[google-appengine] Re: Request was aborted after waiting too long

2010-05-06 Thread Millisecond
Odd, our app had gotten to a point where it was working pretty well until this. Since maintenance yesterday it's been all over the place, not even sure how many errors it's throwing, the counters keep resetting. Sometimes on their own, and once on deploying a new version with 1.3.3.1. But about

Re: [google-appengine] Cannot create additional applications

2010-05-06 Thread Wesley C (Google)
in general, if any of you have problems with SMS verifcation, just fill out this form, and we'll try to help you out: https://appengine.google.com/waitlist/sms_issues chris, check your account now as you should be good-to-go. cheers, -- wesley - - - - - - - - - - - - - - - - - - - - - - - - - -

Re: [google-appengine] Cannot create additional applications

2010-05-06 Thread Christopher Fraser
Problem solved. Thanks, Chris On Thu, May 6, 2010 at 2:58 PM, Wesley C (Google) wesc+...@google.comwesc%2b...@google.com wrote: in general, if any of you have problems with SMS verifcation, just fill out this form, and we'll try to help you out:

[google-appengine] Re: Where to start? Who to talk to?

2010-05-06 Thread John Gardner
I think this group is the best way to contact folks; many of us on here are building or porting applications of various sizes. I'm not sure you'll get one-on-one time with any Googlers, but they frequently weigh in here; ask away on the forums if it's general purpose information. I've built a

Re: [google-appengine] Re: Query with ancestor and JDO

2010-05-06 Thread Jaroslav Záruba
Ah, it is the parentKey property again. Seems like I don't have another choice. Anyways, given the key is supposed to contain whole ancestor chain, this seems weird. 2010/5/6 Jaroslav Záruba jaroslav.zar...@gmail.com I mean it can't be done without another property. Currently I'm looking at

[google-appengine] status code 204

2010-05-06 Thread Ulrich
Hi, I am seeing a lot of 204-responses in my logs. What does this mean? Wikipedia says: 204 is the HTTP status code indicating the request was received but there is no response to the request, but this information does not really help me to understand why this is happening. -Ulrich -- You

Re: [google-appengine] Problem Deploying Static Files

2010-05-06 Thread djidjadji
If you update the default version sometimes the new static files are not updated correctly. Workaround: use 2 versions and update the non-default version and make it default when update is complete. 2010/5/6 Andrew Johnson and...@gaiagps.com: I pushed a new version of my website, but now the CSS

[google-appengine] Re: Dashboard current load counters being reset

2010-05-06 Thread Chris Killpack
And it happened again yesterday :( Is anyone else seeing this problem? Chris On Mon, May 3, 2010 at 5:24 PM, Chris Killpack killp...@gmail.com wrote: On 3 separate occasions in the last 3 weeks, including today and 4/29, the current load counters for my app's handlers have been reset during

Re: [google-appengine] status code 204

2010-05-06 Thread Jawaad Mahmood
Perhaps this is a response made when there is a POST request to a page that only has GET handlers? Sent from my iPhone On 2010/05/07, at 5:40, Ulrich mierendo...@googlemail.com wrote: Hi, I am seeing a lot of 204-responses in my logs. What does this mean? Wikipedia says: 204 is the HTTP

[google-appengine] Re: status code 204

2010-05-06 Thread Stephen
On May 6, 9:40 pm, Ulrich mierendo...@googlemail.com wrote: Hi, I am seeing a lot of 204-responses in my logs. What does this mean? Could be this: http://www.kyle-jensen.com/proxy-caching-on-google-appengine -- You received this message because you are subscribed to the Google Groups

Re: [google-appengine] htaccess

2010-05-06 Thread Manny S
Thanks for the info. Will look into the DOS API. Manny On Fri, May 7, 2010 at 12:31 AM, Barry Hunter barrybhun...@googlemail.comwrote: Other than the DOS API http://code.google.com/appengine/docs/java/config/dos.html you have to handle this sort of 'protection' at the application level. On