[appengine-java] dashboard history

2010-06-03 Thread Philip Tucker
is it possible to see history beyond 18 hours in the dashboard? or at least to export data periodically so I can analyze longer trends? -- 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

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-03 Thread Thomas
There are three common approaches. 1. Use App Engine for Business. 2. Wait for 'paid to reserve JVM feature'. 3. Use lightweight framework. -- 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

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-03 Thread Thomas
Sorry! I made a mistake. The GAE for Business page ( http://code.google.com/intl/en/appengine/business/ ) doesn't mention anything about loading request. The No#1 approach is void. On 6月3日, 下午5時08分, Thomas mylee...@gmail.com wrote: There are three common approaches. 1. Use App Engine for

[appengine-java] Using a Custom Domain

2010-06-03 Thread Sudhir Ramanandi
I don't see any way to map my app engine application to the base custom domain but just the sub domains. Lets say, I want to map my application to example.com not any subdomain of example.com Is it possible? -- Sudhir Ramanandi http://www.ramanandi.org -- You received this message because you

Re: [appengine-java] TransientFailureException

2010-06-03 Thread Viðar Svansson
I am adding tasks to the defautl queue and frequently get this exception frequently. What is happening? Can I do anything about it? Viðar com.google.appengine.api.labs.taskqueue.TransientFailureException: Unknown at

[appengine-java] Re: Using a Custom Domain

2010-06-03 Thread Sudhir Ramanandi
Just found - Naked domain are not supported Sad On Thu, Jun 3, 2010 at 2:42 PM, Sudhir Ramanandi sramana...@gmail.comwrote: I don't see any way to map my app engine application to the base custom domain but just the sub domains. Lets say, I want to map my application to example.com not any

[appengine-java] Provisioning API and JPA

2010-06-03 Thread sathish
Hi my idea is to retrieve users from domain using java and to store results in table using JPA. I had retrieve the users using Provisioning API and when i store the valuse only 130 values are stored in table within 30 sec... what shall i do for this issue please Help me.. This is the code i tried

[appengine-java] Re: Provisioning API and JPA

2010-06-03 Thread fvisticot
I have the same kind of performance pb but no answer/solution found actually... It seems that this kind of provisioning feature is not available with JPA... On 3 juin, 13:12, sathish sathish.sha...@gmail.com wrote: Hi my idea is to retrieve users from  domain using java and to store results in

[appengine-java] Re: the support to JPA

2010-06-03 Thread fvisticot
+1 On 2 juin, 18:49, Tao rocka...@gmail.com wrote: Hi everyone in the tuto, why there is so few articles with JPA? -- 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

[appengine-java] Re: Security restrictions may not be entirely emulated errors in Dev mode with Spring 3.0 on 1.3.4

2010-06-03 Thread Andrew
Hi Bill, I can see what you mean now. I have actually jumped over to a Struts 2 app at the moment, and whenever I change Java code I need to stop the development server and restart it. Very painful. Is this just the way it is, or are we missing something? Regards, Andrew. On Jun 3, 10:32 am,

[appengine-java] Re: Transaction exception when not using a transaction ?

2010-06-03 Thread JD
I added a call to flush() after every change on the PM-managed object, but that did not help. Also doing a pm.flush() does not throw this exception, but doing a pm.close() does - which seems to be contrary to your reasoning (I would expect flush to throw the same exception if multiple entity

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-03 Thread Tin
Dear Thomas: Thanks for your quickly reply very much !!! 2. Wait for 'paid to reserve JVM feature'. Do you have more information about this ? 3. Use lightweight framework. What lightweight framework did you mean for ? In this testing we just using Servlet and JSP that's recommend by GAE.

Re: [appengine-java] Re: Security restrictions may not be entirely emulated errors in Dev mode with Spring 3.0 on 1.3.4

2010-06-03 Thread Bill Milligan
Actually, that sounds different. The trouble I have is when Spring tries to locate the view thusly: 1. HelloController returns hello/hello. 2. InternalResourceViewResolver attempts to map this to /WEB-INF/views/hello/hello.jsp 3. Jetty's web container attempts to find this resource in the URL

[appengine-java] Restoring backup

2010-06-03 Thread Christian Goudreau
Is it possible ? I want to have this monday data inside my datastore : apapulintranet Christian Goudreau -- 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] java.sql.Time is not a supported property type

2010-06-03 Thread Sudhir Ramanandi
I got this error when querying for an entity that has @Temporal(TemporalType.TIME) *Field* @Basic @Temporal(TemporalType.TIME) private Date time; *Query * Query q = em.createQuery(select from + entity.class.getName() + entity where entity.time=?1); q.setParameter(1, date,

[appengine-java] Re: the support to JPA

2010-06-03 Thread datanucleus
Perhaps because JPA is an API and query language designed solely around and for RDBMS. And this is not RDBMS. JDO and JDOQL, on the other hand, were designed to be datastore agnostic, and object-centric -- You received this message because you are subscribed to the Google Groups Google App

Re: [appengine-java] Failure to write objects to HttpSession - NotSerializableException : LazyResult

2010-06-03 Thread Ifnu bima
You need to implements serializable interface to User class, something like : public class User implements Serializable { } -- regards -- 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

Re: [appengine-java] Re: Security restrictions may not be entirely emulated errors in Dev mode with Spring 3.0 on 1.3.4

2010-06-03 Thread Bill Milligan
Let me clarify: I get a 404 error reported on /WEB-INF/views/hello/hello.jsp when I try this. I've tried moving the views directory elsewhere, outside of WEB-INF but still cannot find it. On Thu, Jun 3, 2010 at 9:43 AM, Bill Milligan bill.milli...@gmail.comwrote: Actually, that sounds

[appengine-java] Re: Transaction exception when not using a transaction ?

2010-06-03 Thread Millisecond
Hmmm. How is your object model structured? Do entities have other entities as direct references? If you have class A { B b } and setting b to an instance of B that already existed might throw the error you're seeing. I changed my structure to be class A { String bKey } for a variety of other

[appengine-java] Hi anybody pls help me

2010-06-03 Thread Goodwin
im new for GAE. I read gae doc and develop a blog useing jsp. but when i run it in my pc it shows only the page index.jsp. others like wirtearticle.jsp, edit.jspand so on not are showed... why? anyone can help me? tks -- You received this message because you are subscribed to the Google

Re: [appengine-java] Hi anybody pls help me

2010-06-03 Thread Bill Milligan
That's rather very vague. Can you be a lot more specific? On Thu, Jun 3, 2010 at 9:22 AM, Goodwin weizhao1...@gmail.com wrote: im new for GAE. I read gae doc and develop a blog useing jsp. but when i run it in my pc it shows only the page index.jsp. others like wirtearticle.jsp,

Re: [appengine-java] Re: Question about security of my data on AppEngine and Guarentee.

2010-06-03 Thread Christian Goudreau
I need some answers, it's really important for my business. Regards, Christian On Tue, Jun 1, 2010 at 10:20 PM, Christian Goudreau goudreau.christ...@gmail.com wrote: Oh I forgot one question that my administrators asked me. If I delete an objet from my datastore, how long this data is

Re: [appengine-java] Re: Question about security of my data on AppEngine and Guarentee.

2010-06-03 Thread Ikai L (Google)
No, we do not allow selection of where data is physically stored. This feature is not scheduled in our roadmap http://code.google.com/appengine/docs/roadmap.html On Thu, Jun 3, 2010 at 10:17 AM, Christian Goudreau goudreau.christ...@gmail.com wrote: I need some answers, it's really important

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-03 Thread Jake
Hello, If you don't like this general behavior, please star this issue: http://code.google.com/p/googleappengine/issues/detail?id=2931 I see comments like this pop up all the time, but we must be a rarity. Anyways, regarding the pay to reserve JVM see this issue:

Re: [appengine-java] Re: Question about security of my data on AppEngine and Guarentee.

2010-06-03 Thread Bill Milligan
Hi Christian, For that kind of control on physical security, you really need dedicated servers that you can physically touch in a data center. This is really very not cheap. Some kinds of applications require this security, such as banking, investment, or credit tracking software, where you are

Re: [appengine-java] Beginner help

2010-06-03 Thread Bill Milligan
Is this what you're looking for? http://code.google.com/appengine/docs/java/javadoc/index.html http://code.google.com/appengine/docs/java/javadoc/index.htmlYou may want to google for answers to simple questions like this. I'd also suggest you look for google app engine hello world to see many

Re: [appengine-java] Restoring backup

2010-06-03 Thread Bill Milligan
One of the ideas of google app engine is that you don't have to manage this sort of thing. Google does it for you. If you need a more fine-grained level of control, if you *want* to be answering pagers in the middle of the night when everything breaks (and believe me, they do) then perhaps

Re: [appengine-java] Re: Question about security of my data on AppEngine and Guarentee.

2010-06-03 Thread Christian Goudreau
I also think they are exagerated. But what I'm thinking is not important lol :D Christian On Thu, Jun 3, 2010 at 4:27 PM, Bill Milligan bill.milli...@gmail.comwrote: Hi Christian, For that kind of control on physical security, you really need dedicated servers that you can physically

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-03 Thread Tin
Hi Jack: Thanks for your reply very much !!! If you don't like this general behavior, please star this issue: http://code.google.com/p/googleappengine/issues/detail?id=2931 YES I have stared this issue, I think every body who uses GAE should star this issue ^^|| I personally don't like

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

2010-06-03 Thread Tin
Hi all: I think every body who uses GAE should star this issue : http://goo.gl/juDy -- PLEASE HELP !! Thank you very much ~ -- 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

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-03 Thread Thomas
IMHO, 'Pay to reserve a JVM' is much more reasonable. Although everybody likes free lunch, but the resources will be wrongly allocated eventually. For example, the rival company of Google can legally eat up all its RAM by submitting tremendous amount of huge size application if there is no

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-03 Thread Thomas
    I use struts 1.2.x + Spring 2.0 initially. But quickly I realized I had to get rid of Spring in order to decrease the startup time. So I wrote a TidyDelegationProxy (tidy means TIny DependencY injector) to replace Spring's struts proxy. I successfully reduced the startup CPU time from 12+

[appengine-java] Cloud2db for Amazon SimpleDB

2010-06-03 Thread Sandeep Sathaye
Hi Everyone, Cloud2db http://www.cloud2db.com/ is pleased to announce the support for Amazon SimpleDB platform in addition to Google Bigtable platform which it already supports. With this new release you will be able to transparently choose between Amazon SimpleDB and Google Bigtable as your

[appengine-java] Re: I need facebook to connect with my dev server, how i configure jetty?

2010-06-03 Thread Thomas
See my post in the http://groups.google.com/group/google-appengine-java/browse_thread/thread/dce94c4deedd88e1/d506eebfd526b893 thread. -- 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

[appengine-java] Roo + GWT + Security on AppEngine

2010-06-03 Thread badcluster
Hi! Without Roo i had to implement a lot of workaround code on my project to work with Spring Security 3 and GWT on AppEngine. I had to deal with some RPC issues. Do you know if Roo implements Spring Security + GWT on AppEngine ? Thanks in advance -- You received this message because you are

Re: [appengine-java] Roo + GWT + Security on AppEngine

2010-06-03 Thread Shahzada Hatim
Nothing that I know of, and even ROO's current security setup (for non GWT/HTML-only apps) is very basic (just gives you static admin and user with passwords in XML). You have to customize the system if you want to use spring security extensively. There is a need for plugins for Spring ROO which

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-03 Thread Jake
I understand that there can be problems with everyone having a full- time reserved JVM. My problem is simply that the instance restarts too frequently. I mean, honestly, one SINGLE page request results in TWO application restarts? Even if you get it down to 4 seconds, that's 8-10 seconds just

Re: [appengine-java] Roo + GWT + Security on AppEngine

2010-06-03 Thread Cleber Dantas Silva
Shahzada, thanks for your information. The issues that i had with rpc: 1) when i made an rpc call and the auth session ended, the rpc went to failure function with a 404 not found message. So, i had to implement a method to get the error message and if 404, show login screen. Very very dirty

Re: [appengine-java] Roo + GWT + Security on AppEngine

2010-06-03 Thread Shahzada Hatim
Well I think you can streamline spring security to forward you to a proper location once you are not logged in, ofcourse you will have to tell your GWT app to redirect (or show a differrent state) for your login. Spring secrity has a very extnesive declarative security mechaniism, it can protect

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-03 Thread Tin
Dear Thomas:    Correct some mistakes.    I use struts 1.2.x + Spring 2.0 + JDO initially. But quickly I realized I had to get rid of Spring and JDO in order to decrease the startup time. So I used slim3 and wrote a TidyDelegationProxy to replace Spring's struts proxy. I successfully

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-03 Thread Tin
Dear Jack: I understand that there can be problems with everyone having a full- time reserved JVM.  My problem is simply that the instance restarts too frequently.  I mean, honestly, one SINGLE page request results in TWO application restarts?  Even if you get it down to 4 seconds, that's

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-03 Thread Thomas
Hi Tin: I'm VERY VERY agree with this, the instance restarting is TOO frequently, even we just use Servlet + JSP the performance still can't be accepted. I don't think this'e a reasonable behavior of a production web container. In your case, the problem is due to JAP. If you want to have

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-03 Thread Thomas
On 6月4日, 下午12時02分, Jake jbrooko...@cast.org wrote: I understand that there can be problems with everyone having a full- time reserved JVM.  My problem is simply that the instance restarts too frequently.  I mean, honestly, one SINGLE page request results in TWO application restarts?  Even if

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-03 Thread Tin
Dear Thomas: In your case, the problem is due to JAP. If you want to have quick startup time, you MUST get rid of JPA/JDO and use some other lightweight persistence api (Slim3, Objectify, Twig, ...) or use low level datastore api directly to access the datastore. Thanks for this important

[appengine-java] Re: Failure to write objects to HttpSession - NotSerializableException : LazyResult

2010-06-03 Thread Shawn Draper
Attached is the User object... package com.gcf.core; import java.util.*; import javax.jdo.annotations.IdGeneratorStrategy; import javax.jdo.annotations.NotPersistent; import javax.jdo.annotations.PersistenceCapable; import javax.jdo.annotations.Persistent; import