Re: [appengine-java] Re: Resource is currently experiencing a short-term quota limit

2012-02-01 Thread M.W. Aruna Withanage
Hi, I don't have any complex properties. 12 String type and two Date type. I reupload the app with another name. This time I only did the data uploading task. Now I can upload 2000 records before my quota limit expires. I am using JDO and locally I can store all 6 data without any trouble.

[appengine-java] How to display user name beside email address!

2012-02-01 Thread RAJ
Hi All, I am trying to figure out some way to display user name beside showing email address on my home page! I am using below code as suggested on app engine docs: "Hello, " + user.getNickname() But, above code always prints email address beside printing actual nick name of user. (I want to pr

[appengine-java] map-reduce

2012-02-01 Thread Sergio
Hi All! I catch the following exception when trying to launch map-reduce job in maven project: AccessControlException: access denied (javax.security.auth.AuthPermission getSubject) at java.security.AccessControlContext.checkPermission(AccessControlContext.java: 355) at jav

[appengine-java] Can't see new objects in the same transaction

2012-02-01 Thread Fernando Jorge Santos
Hi all, I'm new in JPA / JDO and I'm totally sure I'm doing something wrong. I don't know why I can't see children objects in the same transactions using the same PM // Here I got the DatastoreEntityManager (id=92) DAO dao =

[appengine-java] how upload files to google cloud storage

2012-02-01 Thread Mario Andrés Topa
Hi. I can't upload files to google cloud storage with java. I can upload the aplication to google App but I can't create a AppEngineFile. I used the example in the google storage api for java but it not work. I appreciate your help thanks -- You received this message because you are subscri

Re: [appengine-java] Re: makePersistent failing every second time since server restart

2012-02-01 Thread John Goche
Hi, I've raised the issue with a test case in google's issue tracker: http://code.google.com/p/datanucleus-appengine/issues/detail?id=259 I am hoping someone can kindly have a look at it and get back to me as I cannot see how I can make use of JDO on app engine without this fixed. In the meant

[appengine-java] Re: Datastore Admin and federated login

2012-02-01 Thread Francois Masurel
In fact, it seems that my browser blocked the openid url for some security reasons related to being in an iframe. I just had to open this url in a new tab to solve the problem. Francois -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" g

Re: [appengine-java] Re: OpenId Provider using java

2012-02-01 Thread TG
what is storeClassName ? I have to create something for it? -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine-java/-/_fUnQxV6eoAJ. To post to

[appengine-java] Re: Very high latency lately.

2012-02-01 Thread A1programmer
Latest:  200 18372ms 8kb On Feb 1, 6:18 am, A1programmer wrote: > Over the past 4 days, the application I'm working on started > experiencing terrible latency issues. > > Yesterday, the problem seemed to have resolved itself for a short > period of time. Today, however, the issue is back.  Page

Re: [appengine-java] Re: OpenId Provider using java

2012-02-01 Thread TG
Still receive same error. -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine-java/-/ddA96iOLkHEJ. To post to this group, send email to google-a

Re: [appengine-java] Re: OpenId Provider using java

2012-02-01 Thread Francois MASUREL
You are supposed to have something like this in your application web.xml : providerServlet /authenticate http://code.google.com/p/joid/source/browse/trunk/examples/openid-provider/src/main/webapp/WEB-INF/web.xml On Wed, Feb 1, 2012 at 14:12, TG wrote: > I tried to c

[appengine-java] Re: OpenId Provider using java

2012-02-01 Thread TG
I tried to create a project with the example of openid-provider in http://code.google.com/p/joid/source/browse/#svn%2Ftrunk%2Fexamples%2Fopenid-provider but I got the error *The requested resource (/authenticate) is not available.* in *http://localhost:8080/authenticate* * * What I have to do? D

[appengine-java] Re: BaseFeed versus DocumentListFeed

2012-02-01 Thread Nichole
Looks like you are using paging... On Jan 31, 11:41 am, Paul Ford wrote: > ok guys could not find a google docs api group so posting this here. > > I'm trying to list out all documents within a domain companyabc.com. > > If I use DocumentListFeed I get a 100 docs. If I use the same exact > code a

Re: [appengine-java] Re: Resource is currently experiencing a short-term quota limit

2012-02-01 Thread Simon Knott
Hi, The calculation for datastore writes for new entities is: 2 Writes + 2 Writes per indexed property value + 1 Write per composite index value (see http://code.google.com/appengine/docs/billing.html#Billable_Resource_Unit_Cost for more information). If you have 14 simple properties, then s

[appengine-java] Very high latency lately.

2012-02-01 Thread A1programmer
Over the past 4 days, the application I'm working on started experiencing terrible latency issues. Yesterday, the problem seemed to have resolved itself for a short period of time. Today, however, the issue is back. Page loads that used to take 200 ms are now taking 3 to 4 seconds. Looking over

Re: [appengine-java] Re: Resource is currently experiencing a short-term quota limit

2012-02-01 Thread M.W. Aruna Withanage
Dear Simon, In my app each entitiy have about 14 properties. I haven't configured any indexes and composite indexes. Also I am not using indexes in this app. Do I have any option except turn the billing on? I am not using indexes. So will configuring per-property indexes and composite indexes hel

[appengine-java] Re: Resource is currently experiencing a short-term quota limit

2012-02-01 Thread Simon Knott
If you can't upload it in stages, then you have the following options: - Turn billing on - Properly configure your per-property indexes and composite indexes (assuming that you haven't). If you are exceeding your datastore writes by only uploading 200 entities, then you must either

[appengine-java] Resource is currently experiencing a short-term quota limit

2012-02-01 Thread deltaaruna
Hi all, My app needs to upload bulk data. I did it using an XML file. I created a back end and wrote the code to upload data into the datastore. My app is locally running well. But when I try to upload data to the datastore in the appengine hosted app I can't upload whole data. My XML has 6 en

Re: [appengine-java] Re: Problem in the datastore

2012-02-01 Thread M.W. Aruna Withanage
Dear Ian, Thank you for your reply. Using backends I was able to overcome the proble. On 1 February 2012 01:43, Ian Marshall wrote: > Correction. The 30s deadline which I mentioned has been increased. Why > not look at > > http://code.google.com/appengine/docs/java/runtime.html#The_Request_Tim

[appengine-java] Re: Problem in the datastore

2012-02-01 Thread Ian Marshall
Correction. The 30s deadline which I mentioned has been increased. Why not look at http://code.google.com/appengine/docs/java/runtime.html#The_Request_Timer for the new limit? Cheers, Ian On Feb 1, 9:35 am, Ian Marshall wrote: > Hello Aruna, > > You might find that the date-time-stamp of y

[appengine-java] Re: Problem in the datastore

2012-02-01 Thread Ian Marshall
Hello Aruna, You might find that the date-time-stamp of your log entry is 30 seconds after the start date-time mentioned in the entry. GAE normally requires that web requests return within 30s. If you have exceeded this time limit, then you will need to change your code (perhaps by breaking the w

[appengine-java] Re: makePersistent failing every second time since server restart

2012-02-01 Thread datanucleus
So it can't find a related Entity. You could obviously use the DB viewer (or a low level API call) to check whether it is present (with that Key), and look in the log for whether it was PUT. Can't speak for Google but I'm sure nobody has interest in private code, though I'm sure that it ought to b

[appengine-java] Re: Redirect to original href when using federated login

2012-02-01 Thread Ice13ill
Also, when I used the Google accounts API option in my app settings, I remembered that after login, the redirect link back to my app, contained the characters after the history token ( "#" ). Is there a workaround for this? or is something I'm doing wrong? On Jan 31, 6:42 pm, Ice13ill wrote: > I'