[appengine-java] Struts2.1.8 tags does not work with appengine 1.2.6 and later

2009-12-31 Thread aswath satrasala
Hello all, Struts2 tags don't seem to work for appengine sdk 1.2.6 and later. My small application does not have any problem with appengine sdk1.2.5. Any ideas? Regards -Aswath -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To p

Re: [appengine-java] Struts2.1.8 tags does not work with appengine 1.2.6 and later

2009-12-31 Thread yjun hu
i'm using struts2.1.8 with sdk 1.3.0, and it works fine. about tags, all run ok except static method when u use static method, you should do some change: *struts.ognl.allowStaticMethodAccess = true * On Thu, Dec 31, 2009 at 4:10 PM, aswath satrasala < aswath.satras...@gmail.com> wrote: > Hello al

Re: [appengine-java] Struts2.1.8 tags does not work with appengine 1.2.6 and later

2009-12-31 Thread Sreekanth Raju
hi aswath, this should solve your problem http://groups.google.com/group/google-appengine-java/browse_thread/thread/dd84e44f604498c4 -- 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-appe

[appengine-java] Re: Syncing multiple ContactFeed objects

2009-12-31 Thread ylmz
finding new contacts and deleted contacts should be same. Just switch userA and B new contacts on userB will be actually deleted contacts in userA. You can even use same code for finding new contacts and deleted contacts. On Dec 30, 12:23 am, Tb wrote: > I'm writing an app to keep contacts on my

[appengine-java] Re: Can't send mail with attachment using JavaMail API

2009-12-31 Thread minor-undroid
Hi there, I reproduced same problem. I cannot send attachment file and inline image with HTML mail. (Of course, I could send plain text mail without attachment and HTML mail without inline image) I don't have any idea. It would be very helpful to tell me anything. I build the mime message in Ht

[appengine-java] Re: Can't send mail with attachment using JavaMail API

2009-12-31 Thread mably
Don't forget to star issue : http://code.google.com/p/googleappengine/issues/detail?id=965 On Dec 31, 3:23 pm, minor-undroid wrote: > Hi there, > > I reproduced same problem. > I cannot send attachment file and inline image with HTML mail. > (Of course, I could send plain text mail without attac

[appengine-java] Re: Can't send mail with attachment using JavaMail API

2009-12-31 Thread minor-undroid
Sorry, I made a wrting mistake. I cannot send the HTML mail with inline image, and cannot send the HTML mail with attachement file, too. (I could send the plain text mail with an attachment image and HTML mail without attachment file) I think It's only GAE's problem. Do you have any idea? On D

Re: [appengine-java] Re: Can't send mail with attachment using JavaMail API

2009-12-31 Thread mnr ngsk
Thanks your quick response. I didn't find that issue. 2009/12/31 minor-undroid > Sorry, I made a wrting mistake. > > I cannot send the HTML mail with inline image, > and cannot send the HTML mail with attachement file, too. > (I could send the plain text mail with an attachment image > and HTM

[appengine-java] New Data Field NullPointer

2009-12-31 Thread Jeffrey Goetsch
Why do I get a NullPointerException when I add a new primitive field to an object? Why doesn't JDO just recognize that it is a primitive and leave the default value? Thanks, --Jeff -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group.

Re: [appengine-java] How to query objects with criterias defined in child entities

2009-12-31 Thread Rusty Wright
Stand it on its head; instead of User having a Collection of Skill, Skill has a Collection of User Keys (ignoring the levels part). For the Level, add a layer of nesting; Skill has a Collection of Level, and each Level has a Collection of User Keys. reini77 wrote: > Hi, > > I'm trying to imp

Re: [appengine-java] Re: JPA Uses Annotations Only

2009-12-31 Thread Rusty Wright
http://www.datanucleus.org/products/accessplatform_1_0/jdo/index.html vvernon wrote: > Great, how do you set up the XML files when it's used on App Engine? > > On Dec 30, 11:31 am, datanucleus wrote: >> DataNucleus supports all types of input ... JPA annotations, JPA XML, >> JDO annotations, JD

Re: [appengine-java] New Data Field NullPointer

2009-12-31 Thread Rusty Wright
It's the GAE datastore. When you add a new field, say an int, it uses null for the missing field in the datastore, then when it tries to unbox it; i.e., ((Integer) null).intValue() you get the NPE. Jeffrey Goetsch wrote: > Why do I get a NullPointerException when I add a new primitive field to

[appengine-java] Unexpected error during precommit, with owned relation, if childList is null

2009-12-31 Thread Kemal Dogan
hi, I have two entity with owned relation. Order is master entity and OrderItem is child entity. When I have to persist Order without OrderItem, but it gives an exception (javax.jdo.JDOException: Unexpected error during precommit) at commit line. But if I add an OrderItem instance to orderItemChil

Re: [appengine-java] New Data Field NullPointer

2009-12-31 Thread Rusty Wright
I forgot to add that missing fields are always (I think) returned as null by the datastore. Rusty Wright wrote: > It's the GAE datastore. When you add a new field, say an int, it uses > null for the missing field in the datastore, then when it tries to unbox > it; i.e., ((Integer) null).intVa

[appengine-java] Re: any plans for deferred.defer in Java?

2009-12-31 Thread John Howe
I can't seem to find any additional postings on this topic and I'm not sure what the conclusion for being able to use the Deferred capability with the latest Java SDK release. I'm just wondering if Vince's solution works on both server and development environments. On Dec 16, 10:42 am, David Chand

Re: [appengine-java] Re: any plans for deferred.defer in Java?

2009-12-31 Thread John Howe
I greatly appreciate the work that has been done here. But let me ask my question another way. Is it known that this does not work? On Thu, Dec 31, 2009 at 5:19 PM, John Howe wrote: > I can't seem to find any additional postings on this topic and I'm not > sure what the conclusion for being able