I have a nice error. I developed a simple JDO Class:

public class ImageDO extends CommonData {

        @PrimaryKey
        @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
        @Unique
        protected Key id;

        @Persistent
        protected String key;

        @Persistent
        protected String name;

        @Persistent
        protected Text description;

        @Persistent
        protected Date created;

        @Persistent
        protected Key type;

        @NotPersistent
        protected ImageTypeDO typeData;

}

The Key type is the Key to the ImageTypeDo. So i can get the type of
any kind of ImageDO. Local it works fine, I get the key and the
typeData. But if I deploy live I get the following error:

javax.el.PropertyNotFoundException: Could not find property typeDO in
class xxx.xxx.ImageDO
        at javax.el.BeanELResolver.toBeanProperty(BeanELResolver.java:442)
        at javax.el.BeanELResolver.getValue(BeanELResolver.java:300)
        at javax.el.CompositeELResolver.getValue(CompositeELResolver.java:
231)
        at org.apache.el.parser.AstValue.getValue(AstValue.java:123)
        at
org.apache.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:
186)
        at
org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate(PageContextImpl.java:
935)
        at
org.apache.jsp.content.user.register.register_jsp._jspService(register_jsp.java:
112)
        at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)

It's seem that the class I have local have the attribute and the live
class has it not. Could this be? I thought what I devevlop at local it
runs on the google live server.....

Regards, Markus

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to