[appengine-java] createEntityManager() taking too long

2011-09-28 Thread Sekhar
I'm using JPA and see that calls to createEntityManager() are taking several seconds (e.g., 6 seconds). This is with HRD and reserved instances. And it's not the first time either, subsequent calls are also slow. Is anyone else seeing this, and is there a way to speed these up? -- You received

[appengine-java] Channel API not working on development server

2011-08-15 Thread Sekhar
Channel API isn't working at all for me on development server - is there any setting that isn't default? Everything works fine when I upload. I'm using 1.5.2 Java. -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To view this disc

[appengine-java] Transaction failed to commit

2011-06-28 Thread Sekhar Ravinutala
I have a list (one to many) property in a JPA entity that was working fine till recently...suddenly started seeing the below error when I try to change the list and commit. Any ideas? Everything works fine locally in dev server. Please help, this is a show-stopper! 1. 2011-06-28 23:03:51.3

Re: [appengine-java] How do you prevent _ah requests from hitting the servlet filter?

2011-02-10 Thread Sekhar Ravinutala
Thanks Hari. If I understand you correctly, nothing stops unauthorized users from directly accessing internal pages (i.e., those other than login or index)...that's not acceptable for my app. -- You received this message because you are subscribed to the Google Groups "Google App Engine for Ja

[appengine-java] How do you prevent _ah requests from hitting the servlet filter?

2011-02-09 Thread Sekhar Ravinutala
I'm building a healthcare app that will filter all requests (url pattern *, ideally). In the filter, I'm checking to see if the user is logged in and throwing the login page if he isn't (using Google user service). On the dev server this is a problem because the login page is simply a /_ah/login

[appengine-java] Re: What is entity "detached yet this operation requires it to be attached?"

2010-09-03 Thread Sekhar
(createTest())", test is > > merged. > > And when i comment out the lines to merge, "TestDao.save" is success. > > I wanna merge and save for same Model. > > why can't i do it?plz tell me about it. > > > On 7月21日, 午前12:56, Sekhar wrote:

[appengine-java] Re: App Engine SDK 1.3.7 bugfix release

2010-08-31 Thread Sekhar
Eclipse is still showing 1.3.6...any ETA on that? On Aug 30, 4:12 pm, "Ikai L (Google)" wrote: > Hey everyone, > > I just wanted to let you all know that we're releasing a bugfix release, > 1.3.7. You can see our blog post here: > > http://googleappengine.blogspot.com/2010/08/app-engine-137-sdk-b

[appengine-java] Re: What is entity "detached yet this operation requires it to be attached?"

2010-07-20 Thread Sekhar
Anyone? Would appreciate just about any help you can give! On Jul 15, 8:45 am, Sekhar wrote: > I pretty frequently get an error for my JPA entities saying an entity > is "is detached yet this operation requires it to be attached" and the > trans

[appengine-java] What is entity "detached yet this operation requires it to be attached?"

2010-07-15 Thread Sekhar
I pretty frequently get an error for my JPA entities saying an entity is "is detached yet this operation requires it to be attached" and the transaction is rolled back: "com.google.apphosting.utils.servlet.TransactionCleanupFilter handleAbandonedTxns: Request completed without committing or rolling

[appengine-java] Startup error (UnsupportedOperationException)

2010-05-30 Thread Sekhar
I keep getting an UnsupportedOperationException error on startup something like 80% of the time. If I'm lucky, I don't get it and the server runs fine from then on. Looks like some startup issue. If I remember, there was some thread saying this was the result of a race condition with DataNucleus, b

[appengine-java] Re: Still can't update app

2010-05-25 Thread Sekhar
Never mind, working OK now. On May 25, 2:52 pm, Sekhar wrote: > I'm still getting errors updating my app - 500 errors like below. I > thought this had to do with the GAE problems, but looks like those are > resolved now, more or less. Anyone else seeing these? > > Unable

[appengine-java] Still can't update app

2010-05-25 Thread Sekhar
I'm still getting errors updating my app - 500 errors like below. I thought this had to do with the GAE problems, but looks like those are resolved now, more or less. Anyone else seeing these? Unable to update app: Error posting to URL: https://appengine.google.com/api/appversion/create?app_id=he

[appengine-java] Re: Extremely annoying error 203 - please help!!!

2010-05-12 Thread Sekhar
back. In general, what's the approved way to handle db operations that can exceed the 30 sec time limit? What I'm doing now is to queue a task from inside the servlet and let the task execute in however many iterations are necessary. On May 11, 10:04 pm, App Engine Team wrote: > Hey Sek

[appengine-java] Extremely annoying error 203 - please help!!!

2010-05-10 Thread Sekhar
I've been struggling to get past this wretched error when using task queues: A serious problem was encountered with the process that handled this request, causing it to exit. This is likely to cause a new process to be used for the next request to your application. If you see this message frequent

[appengine-java] Re: Geocoding API quickly throwing OVER_QUERY_LIMIT error

2010-04-26 Thread Sekhar
Anyone? I'm still getting this error, and it's kind of critical for me. Hope one of you can help. On Apr 23, 6:04 pm, Sekhar wrote: > The geocoding API is throwing OVER_QUERY_LIMIT error after just one or > two queries for me. The problem is intermittent (was failing > co

[appengine-java] Geocoding API quickly throwing OVER_QUERY_LIMIT error

2010-04-23 Thread Sekhar
The geocoding API is throwing OVER_QUERY_LIMIT error after just one or two queries for me. The problem is intermittent (was failing consistently and then worked OK for some time just now). This is happening only in production, there doesn't seem to be any such problem in my dev server. I guess this

[appengine-java] Re: JPA enhancement problem (DataNucleus)

2010-03-13 Thread Sekhar
to nail down that I was either annotating something > incorrectly or DataNucleus/GAE didn't support a particular feature, or > in one case an actual bug. > > Not exactly a clear-cut answer, but that's the path I took. > > How complex are your entities? > > david &

[appengine-java] Re: JPA enhancement problem (DataNucleus)

2010-03-12 Thread Sekhar
related to this problem listed there? > > Thanks, > Rajeev > > > > On Thu, Mar 11, 2010 at 2:21 PM, Sekhar wrote: > > I'm using the Eclipse Google plugin, and every once in a while after a > > build I get the dreaded "this class is not enhanced!" e

[appengine-java] JPA enhancement problem (DataNucleus)

2010-03-11 Thread Sekhar
I'm using the Eclipse Google plugin, and every once in a while after a build I get the dreaded "this class is not enhanced!" errors for all my entities (even when I don't edit any of them). Any idea why this is? If I touch the files, they get built/enhanced again fine, but this is getting to be a r

[appengine-java] Re: org.datanucleus.store.appengine.MetaDataValidator checkForIllegalChildField

2010-01-19 Thread Sekhar
Bump. Could someone from Google/DataNucleus help please? On Jan 9, 7:31 pm, Sekhar wrote: > I'm getting a warning for an embedded child: > > org.datanucleus.store.appengine.MetaDataValidator > checkForIllegalChildField: Unable to validate relation > com.allurefx.herdspot.s

[appengine-java] org.datanucleus.store.appengine.MetaDataValidator checkForIllegalChildField

2010-01-09 Thread Sekhar
I'm getting a warning for an embedded child: org.datanucleus.store.appengine.MetaDataValidator checkForIllegalChildField: Unable to validate relation com.allurefx.herdspot.server.data.Person.im I understand we get the checkForIllegalChildField error for many-to- one children that have a Long (rat

[appengine-java] Re: Upgrade issue with Google SDK 1.2.5

2009-09-06 Thread Sekhar
Had the same problem, just remapping the SDK fixed it. This is under WIndow->Preferences->Google->App Engine. On Sep 6, 8:35 am, James H wrote: > I used the Eclipse Soft Updates menu on Sep 4th to apply SDK 1.2.5 > after noticing Red errors in the local runtime log telling me to do > so.  Actual