Re: [appengine-java] Re: persistent and scalable global atomic counter: not possible with GAE?

2010-12-30 Thread Tatyana
MG, Have you considered using Key.getId() method to implement global atomic counter in your application? GAE build in functionality for automatically unique IDs Key.getId() method will return unique long value. Also Keys are indexed, so if your application has to search within counters - indexed

Re: [appengine-java] AppEngine-java-sdk-1.4.0 for mac corrupted

2010-12-09 Thread Tatyana
Actually it is ok on Mac 10.6.5 Should you check 'Downloads' directory? Screenshot indicates few downloads of the same file. On Thu, Dec 9, 2010 at 7:23 PM, Sumi wrote: > > I downloaded it from here > http://code.google.com/appengine/downloads.html > > and getting the error "it cannot be unarch

Re: [appengine-java] Re: Output encoding / JPEG does not seem to work

2010-11-22 Thread Tatyana
No problem. Would you like to post your code so we can help? The code I sent wasn't for blobs tore also, it works however. Sent from my iPad On Nov 22, 2010, at 6:27 PM, John wrote: > Sorry Kellin, did not mean to reply to your post. The code I am talking about > is not related to blobstore.

Re: [appengine-java] Re: Output encoding / JPEG does not seem to work

2010-11-22 Thread Tatyana
Code works fine on development and production servers for couple of month, you are probably having bug in your code. When you browsing your code please verify the type of Blob field used for image source file (in byte array). On Sun, Nov 21, 2010 at 10:25 PM, John wrote: > It is on production se

Re: [appengine-java] Re: ImageService from dev server

2010-11-20 Thread Tatyana
so, you are not using com.google.appengine. api.datastore.Blob ? On Sat, Nov 20, 2010 at 12:23 PM, andrew wrote: > Just to re-iterate: > > the question is related to images stored in the BLOBSTORE (not the > datastore) and served via the ImageService using the > > url = imagesService.getServingU

Re: [appengine-java] Re: ImageService from dev server

2010-11-20 Thread Tatyana
While saving image in the datastore and using valueStrategy = IdGeneratorStrategy.IDENTITY for the primaryKey you then retrieve the image by the id. This works on development and production servers. On Sat, Nov 20, 2010 at 4:49 AM, andrew wrote: > Didier: > > Forgot to clarify this in the pre

Re: [appengine-java] Re: How to generate excel sheets in google appengine Java?

2010-11-19 Thread Tatyana
Also, in your servlet you may generate excel file by configuring response obj response.setContentType("application/CSV"); set "Content-Disposition", "attachment; "yourfile.csv"); have response.getWriter().println( "write your output with delimiters here"); Your file will be formatted fine

Re: [appengine-java] Re: Output encoding / JPEG does not seem to work

2010-11-16 Thread Tatyana
The link to Google App Engine images API overview http://code.google.com/appengine/docs/java/images/overview.html This code works for transformation ImagesService imageService = ImagesServiceFactory.getImagesService(); Image origImage = ImagesServiceFactory.makeImage(byteArray); Blob origBl

Re: [appengine-java] Re: GAE or EC2

2010-11-13 Thread Tatyana
* regarding SSL the same page says: Custom Domain SSL* Map your company’s domain over HTTPS to your App Engine applications Status: In Development Estimate: Limited Release by EOY 2010 On Sat, Nov 13, 2010 at 11:10 AM, Fred wrote: > Ikai raises good points and I can confirm that GAE is a diffe