[appengine-java] Retrieve of Collection model not working

2009-09-21 Thread Dhamu
// MyModel String id ListString values ListLong scores; // get(id) PersistenceManager pm = ...getPersistenceManager(); try { return pm.getObjectById(MyModel.class, id); } finally { pm.close(); } // store(obj); PersistenceManager pm = ...getPersistenceManager(); try {

[appengine-java] Re: how to handle multipart data in struts 2 ?

2009-09-12 Thread Dhamu
check this out http://code.google.com/p/gmultipart/ but its for Spring On Sep 4, 8:45 am, sree sraj...@gmail.com wrote: I am unable to get the multipart data (fileetc.) from jsp/request (post). appengine sdk has been updated to 1.2.5. whereas the same can be achieved through servlets as

[appengine-java] Re: Get Multipart Data from the request

2009-09-12 Thread Dhamu
This might help http://code.google.com/p/gmultipart/ On Jul 22, 6:41 pm, Jason (Google) apija...@google.com wrote: As indicated in the Will it play in App Engine page, you will not be able to use the traditional Apache Commons FileUpload API since it relies on java.io.File which is not a