[appengine-java] Re: using login and admin console on the dev server with guice enabled

2010-02-07 Thread Sudhir
Okay, i fixed it myself am ignoring urls that start with _ah using serveRegex in the guice module. Sudhir On Feb 7, 2:21 am, Sudhir sudhi...@gmail.com wrote: I'm using GAE and Guice, but I'm running into problems on the dev server. This is my web.xml filter  

[appengine-java] Estimated expiration average of an entity in memcache

2010-02-07 Thread a.maza
Hello, I am keeping non-critical data (which is updated quite often) in memcache. I would like to use a cronjob to fetch the data in frequent intervalls from memcache in order to persist it to the datastore. Thus, I would be interested if anyone has any experiences with the average expiration

[appengine-java] getNextID

2010-02-07 Thread niraj
when is the getNextID feature on jdo going to be available. -- 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. To unsubscribe from this group, send email to

[appengine-java] Re: can't send attachment via Java Mail API supported by GAE

2010-02-07 Thread Nehul
Thanks I think my value of ByteArray is not right. I will add blazeDS to get data from flex to gae. I will post result. On Feb 5, 7:59 am, m seleron seler...@gmail.com wrote: Hi. I'm sorry for being not able to explain well. Please try the following sources. code MimeMessage msg = new

[appengine-java] Re: how to share local_db.bin to others

2010-02-07 Thread dreamy
thanks for your attention. We Persistence Object by JDO in our Project, All model are like @PersistenceCapable(identityType = IdentityType.APPLICATION) public class SysCode extends BaseModel { //code_id @PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)

[appengine-java] Re: how to share local_db.bin to others

2010-02-07 Thread dreamy
We have no success to implement gae junit test. We use spring 2.5.6 and follow the http://code.google.com/appengine/docs/java/howto/unittesting.html . public class BaseTestCase extends AbstractDependencyInjectionSpringContextTests { @Override public void onSetUp() throws

Re: [appengine-java] Re: getNextID

2010-02-07 Thread aswath satrasala
See if the following annotation help you. @Persistent(valueStrategy = IdGeneratorStrategy.INCREMENT) -Aswath On Mon, Feb 8, 2010 at 1:18 AM, datanucleus andy_jeffer...@yahoo.comwrote: What getNextID feature on JDO ? i.e please make reference to the JDO API and which particular API Method

[appengine-java] Generating Keys

2010-02-07 Thread Manny S
First off thanks for your time. I would like to generate a key that is a concatenation of a string with an datastore generated key. Is there anyway to do that? I want my keys to be appname + datastore generated key or say generate a key that is currentdate + datastore generated key Any