Re: [appengine-java] Resize Image to the 1MB Maximum

2010-08-22 Thread Timothy Goshinski
Do you have a dummy sample? I could try some Gimp tricks I know and see if I can shave the size down a little. On Sun, Aug 22, 2010 at 10:04 PM, Gal Dolber wrote: > mm, I will like to know that answer too > > 2010/8/22 Max Gravitt <6738...@gmail.com> > > Hi, >> >> I'm using the ImageService to

Re: [appengine-java] Resize Image to the 1MB Maximum

2010-08-22 Thread Gal Dolber
mm, I will like to know that answer too 2010/8/22 Max Gravitt <6738...@gmail.com> > Hi, > > I'm using the ImageService to resize large tiff files to jpegs so that I > can send them to an external web service. I have a TIFF that is 1.4 MB. > Does anyone know how I can keep the aspect ratio the sa

[appengine-java] Resize Image to the 1MB Maximum

2010-08-22 Thread Max Gravitt
Hi, I'm using the ImageService to resize large tiff files to jpegs so that I can send them to an external web service. I have a TIFF that is 1.4 MB. Does anyone know how I can keep the aspect ratio the same and resize it to the 1 MB maximum (or a readable jpeg size)? The files are documents

[appengine-java] Re: Reusing GWT Localization on Server Side

2010-08-22 Thread Uwe Maurer
Maybe this project can help http://code.google.com/p/gwt-i18n-server/ It provides a GWTI18N.create which replaces the GWT.create FooMessages msg = GWTI18N.create(FooMessages.class); msg.fooBar(...); Uwe On Aug 16, 9:18 pm, Casey wrote: > I figured that I was going to have to write my own pars

[appengine-java] Re: Problem in sending out UTF-8 POST data (only in production, works fine in development)

2010-08-22 Thread Uwe Maurer
Try OutputStreamWriter w = new OutputStreamWriter(c.getOutputStream(), "UTF-8"); On Aug 19, 12:33 pm, आलोक (Alok) wrote: > I am having trouble with sending out a POST request that contains > UTF-8 data. > > Here's what I'm doing: > > ... > 01                       String s = containing non-asci

[appengine-java] facebook graph solution

2010-08-22 Thread Benjamin
I spent some time this morning and consolidated how I write app engine apps in java, do oauth with facebook a host my apps in a facebook iframe - interacting with the users profile, wall, newsfeed etc with the facebook graph. Hope this helps - enjoy! http://javagwt.blogspot.com/2010/08/facebook-ap

[appengine-java] Re: Facebook API Integration

2010-08-22 Thread Benjamin
Hey Guys - ok made a blog posting today that goes through how i interact with the Facebook graph API without any third party components. It's easy with just http requests and a couple small tokens. it's all the gotcha's and undocumented facebook stuff that makes it hard: I've beed successfully wri

[appengine-java] Re: SSL & Version-specific URLs

2010-08-22 Thread James
Looks like this is a standard limitation of wildcard SSL certs. >From DigiCert - http://www.digicert.com/faq-general.htm#wildcard - The * character in the common name is the wildcard character. It can take on any first-level subdomain name. The value assumed by the * character must not have a peri

[appengine-java] cant send messages to XMPP client gtalk from webapp

2010-08-22 Thread Shoubhik
Hello, Im tryin 2 send a message using the following code(given in GAE tutorial) to a gmail a/c... will i be able 2 view the message in the gtalk app usin the code but im not recievin as the if (xmpp.getPresence(jid).isAvailable()) is returnin a false.. please help me figure out what

[appengine-java] cant send messages to XMPP client gtalk from webapp

2010-08-22 Thread Shoubhik
Hello, Im tryin 2 send a message using the following code(given in GAE tutorial) to a gmail a/c... will i be able 2 view the message in the gtalk app usin the code but im not recievin as the if (xmpp.getPresence(jid).isAvailable()) is returnin a false.. please help me figure out what