[appengine-java] Re: Using OAuth: why OauthService.getCurrentUsert().getUserId() is null?

2011-03-19 Thread branflake2267
I think he must of set the token to the object. I don't see that piece. Grab the token from post or querystring, and stick it back into the object. -- 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

[appengine-java] Re: The best practice of engineering with GAE (in Java) in a team

2011-03-19 Thread branflake2267
Are you using something like subversion? Do you need access to your live data for testing your app? -- 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-java@googlegroups.com. To u

[appengine-java] Re: New gae logo??

2011-03-19 Thread branflake2267
Just curious, What your point is here? Brandon -- 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-java@googlegroups.com. To unsubscribe from this group, send email to google-appe

[appengine-java] Re: Single session per user

2011-03-19 Thread Scott
Finally got it all figured out. You have to delete both the memcache session entry and the datastore record. The sessions are not managed this way othe dev server it seems, so it won't work in that context. Here is the code: if(foundUser.getSessionId() != null

[appengine-java] Re: ImagesServiceFactory.makeImageFromBlob(blobKey) > image.getImageData() > gets NULL error >

2011-03-19 Thread branflake2267
One more note: It would be nice to watermark my images with the api. -- 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-java@googlegroups.com. To unsubscribe from this group, send

[appengine-java] Re: Anybody try Apache Commons Sanselan 2D lib?

2011-03-19 Thread branflake2267
Looks like they have dependencies not on the white list. :( http://code.google.com/appengine/docs/java/jrewhitelist.html -- 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-java@go

[appengine-java] New gae logo??

2011-03-19 Thread Gal Dolber
https://www.google.com/images/logos/app_engine_logo_sm.gif WTF? -- Guit: Elegant, beautiful, modular and *production ready* gwt applications. http://code.google.com/p/guit/ -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post

[appengine-java] Re: Anybody try Apache Commons Sanselan 2D lib?

2011-03-19 Thread branflake2267
Or how bout Image4j? http://image4j.sourceforge.net/ - tried this? -- 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-java@googlegroups.com. To unsubscribe from this group, send e

[appengine-java] Anybody try Apache Commons Sanselan 2D lib?

2011-03-19 Thread branflake2267
Anybody try Apache Commons Sanselan 2D lib on app engine? http://commons.apache.org/sanselan/ - lib location Brandon Donnelson http://c.gawkat.com http://gwt-examples.googlecode.com -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group

[appengine-java] Re: ImagesServiceFactory.makeImageFromBlob(blobKey) > image.getImageData() > gets NULL error >

2011-03-19 Thread branflake2267
The image service has limitations. It won't allow to resize a width thats > 4000px. The image service is for light duty small images. The current cameras on the market are producing very large images and scaling them is trouble some. I have panoramic images, where the widths are gigantic and th

[appengine-java] Re: Deleting orphan blobs in blobstore

2011-03-19 Thread Starman
BlobInfoFactory.queryBlobInfos(). Iterate on the BlobInfo returned and try to find the blobkey references in your entity store. If you can't, it is safe to delete that blob. If the blobkey reference field in your entities is not indexed, you'll have to do a full scan of your datastore entities. I

[appengine-java] Re: Local development server classpath - com.google.appengine.tools.KickStart

2011-03-19 Thread Benjamin Muschko
Didier, Thanks for your reply. I am not using Eclipse. Instead I was trying to run KickStart.main() within an existing Java process for a build plugin. The Ant page you mentioned simply copies the JARs into WEB-INF/ lib. In the meantime I found a workaround for what I was trying to do. Still...I'd

Re: [appengine-java] Re: for the problem "Applications are limited to 150000000 bytes of resource files"

2011-03-19 Thread Chun Guo
Thanks for all the answers. I've been trying to solve this problem by reducing the scale of my data, and will get the result two days later. Thanks again, for the suggestions, and for the kink ones who gave me advice! Chun 2011/3/18 branflake2267 > I had this happen to. What I did is setup a ser