Re: [google-appengine] Decoding a file created with the filesystem API

2012-03-05 Thread Kayode Odeyemi
2012/3/5 Ronoaldo José de Lana Pereira rpere...@beneficiofacil.com.br Jeff is right, I was actually assuming this behavior by reading this info from javadoc: If you wish to stop serving the URL, delete the underlying blob key. This takes up to 24 hours to take effect. . But this don't

Re: [google-appengine] Decoding a file created with the filesystem API

2012-03-05 Thread Kayode Odeyemi
On Mon, Mar 5, 2012 at 5:28 PM, Jeff Schnitzer j...@infohazard.org wrote: On Mon, Mar 5, 2012 at 12:20 PM, Kayode Odeyemi drey...@gmail.com wrote: In my use case, I just needed the files to be stored temporarily using the filesystem api (just for UI purposes). To permanently save

Re: [google-appengine] Decoding a file created with the filesystem API

2012-03-02 Thread Kayode Odeyemi
On Thu, Mar 1, 2012 at 11:25 PM, Jeff Schnitzer j...@infohazard.org wrote: On Thu, Mar 1, 2012 at 3:34 PM, Kayode Odeyemi drey...@gmail.com wrote: To store upload images as blob using the filesystem api. Then be able to access the raw image files via a file/url resource path when wrapped

[google-appengine] Decoding a file created with the filesystem API

2012-03-01 Thread Kayode Odeyemi
Hi everyone, I have images uploaded to the blobstore using filesystem API. The files have been uploaded successfully and I can see the blobs in the respective directory. But then, how do I decode these files such that when sent back to the client or retrieved using the blobstore API, I'm able to

Re: [google-appengine] Decoding a file created with the filesystem API

2012-03-01 Thread Kayode Odeyemi
] at com.google.appengine.api.images.ImagesServiceImpl.getServingUrl(ImagesServiceImpl.java:222) Also, I'm think this action is not possible on the dev server. On Thu, Mar 1, 2012 at 7:42 AM, Kayode Odeyemi drey...@gmail.com wrote: Hi everyone, I have images uploaded to the blobstore using filesystem

Re: [google-appengine] Decoding a file created with the filesystem API

2012-03-01 Thread Kayode Odeyemi
, Mar 1, 2012 at 2:29 PM, Kayode Odeyemi drey...@gmail.com wrote: 2012/3/1 Ronoaldo José de Lana Pereira rpere...@beneficiofacil.com.br Hello Odeyemi, If I got your problem right, yes, you can use the Files API to create an image blob, then use the ImageService to create a dedicated URL

Re: [google-appengine] Re: Prerelease SDK 1.5.5 available for download!

2011-10-10 Thread Kayode Odeyemi
Just echoing Raphael Nunes: Will Python 2.7 support multi-thread? On Mon, Oct 10, 2011 at 7:19 PM, Deepak Singh deepaksingh...@gmail.comwrote: Hi, So will it be by default 60 sec for all urlfetch or do we need to explicitly set this deadline parameter ? If yes, then how to set the 60 sec

Re: [google-appengine] What do you want to see answered in Greg's pricing FAQ?

2011-05-13 Thread Kayode Odeyemi
how does the instance work? If I have multiple modules in one app, how many instance is that? Or does it just mean that for as long as my app is a singleton, no matter the amount of modules I have, it is still a single instance. At what point is Google distributing my app unto more than one

Re: [google-appengine] Re: The aftermath of Garage48 Lagos. GWT and GAE rules

2011-05-11 Thread Kayode Odeyemi
Thanks Sasha, that is really encouraging. Because the thought about the app is towards less seriousness on the part of the user, that is, it is not really a financial management software per se. So, the issue of 419 does not apply to this app. The app doesn't ask for credit card information or

[google-appengine] The aftermath of Garage48 Lagos. GWT and GAE rules

2011-05-09 Thread Kayode Odeyemi
Hello all, Garage48 code sprint just ended in Lagos, Nigeria. I was part of a team on the idea MyCash. The implementation is GWT, hosted on GAE. Here is the link: http://mycashg48.appspot.com/. The application is currently using Activity and Place MVP, Federated API, ClientBundle and an

Re: [google-appengine] Re: The aftermath of Garage48 Lagos. GWT and GAE rules

2011-05-09 Thread Kayode Odeyemi
Simply, you have a budget and you want to track what you used that money for. It's got other features such as the ability to share what you bought from a particular store with some of your friends who will like to buy the same stuff. So in general it gives you an opportunity to know which store

[google-appengine] java.lang.NoClassDefFoundError: javax/jdo/spi/Detachable and java.io.IOException CreateProcess error=87, The parameter is incorrect

2011-05-04 Thread Kayode Odeyemi
Firstly, about 2 weeks ago I started receiving the exception, CreateProcess error=87, The parameter is incorrect. This occurs when I try to run my app on devmode on Google App Engine. I have searched all over the internet and I was able to solve this by adding useexternalfile=yes to ant build.xml

[google-appengine] How to resolve Object Manager has been closed error

2011-04-18 Thread Kayode Odeyemi
Hello, I'll appreciate if someone can point me to a tutorial or best practice on how to close JDO connection. I constantly get javax.jdo.JDOUserException: Object Manager has been closed error whenever I include the finally block. My code is below: public static ListAgentEntity

[google-appengine] Re: Unit Testing of DAOs locally on App Engine

2011-04-10 Thread Kayode Odeyemi
Can somebody help me please? On Fri, Apr 8, 2011 at 5:33 PM, Kayode Odeyemi drey...@gmail.com wrote: I am hoping David Chandler can help here as regards his post at http://turbomanage.wordpress.com/2009/10/19/unit-testing-the-appengine-datastore-with-jdo/. I have added aeftools.jar to my

[google-appengine] Unit Testing of DAOs locally on App Engine

2011-04-08 Thread Kayode Odeyemi
I am hoping David Chandler can help here as regards his post at http://turbomanage.wordpress.com/2009/10/19/unit-testing-the-appengine-datastore-with-jdo/. I have added aeftools.jar to my project classpath, but the test keeps failing with the error: warning: FAILED: No tests found

Re: [google-appengine] How to read byte by byte from a Datastore Entity Object

2011-04-07 Thread Kayode Odeyemi
, 2011 at 08:23, Kayode Odeyemi drey...@gmail.com wrote: Hello, In a nutshell, since GAE cannot write to a filesystem, I have decided to persist my data into the datastore (using JDO). Now, I will like to retrieve the data byte by byte and pass it to the client as an input stream. There's

[google-appengine] How to read byte by byte from a Datastore Entity Object

2011-04-06 Thread Kayode Odeyemi
Hello, In a nutshell, since GAE cannot write to a filesystem, I have decided to persist my data into the datastore (using JDO). Now, I will like to retrieve the data byte by byte and pass it to the client as an input stream. There's code from the gwtupload library (see below) which breaks on GAE

[google-appengine] Springmvc on appengine error Failed to compile jsp files

2011-03-30 Thread Kayode Odeyemi
Hello, I have read these threads and also follow the instructions on how to resolve this. But it is not working for me. Though my case is peculiar to spring-mvc and I'm hoping I will get some help here. Below is the full error stack after running the appcfg script: Reading application

Re: [google-appengine] Re: What is the difference between Blobstore and Google Storage for Developers

2011-02-25 Thread Kayode Odeyemi
You might want to see this: http://www.ibm.com/developerworks/java/library/j-gaestorage/index.html On Fri, Feb 25, 2011 at 6:32 AM, 风笑雪 kea...@gmail.com wrote: I just write down something I remembered, there may be more different between them. Google Storage is a little expensive than

Re: [google-appengine] Re: Where is it advisable to put JPA mapped Entity classes?

2011-02-21 Thread Kayode Odeyemi
20, 7:17 pm, Kayode Odeyemi drey...@gmail.com wrote: I have resulted into using DTO to provide the client information about my Entity. My DTO has the same getter and setter signatures just like it's respective Entity. But still getting No source code is available for type com.foo.UsersDTO

Re: [google-appengine] Re: Where is it advisable to put JPA mapped Entity classes?

2011-02-21 Thread Kayode Odeyemi
import the Objectify lib as: inherits name=com.googlecode.objectify.Objectify/ You would need to do similarly for any other libs you are using. Jeff On Mon, Feb 21, 2011 at 7:22 AM, Kayode Odeyemi drey...@gmail.com wrote: Thanks Lorenzo Could this be a reason why my Persistence-aware

[google-appengine] Where is it advisable to put JPA mapped Entity classes?

2011-02-20 Thread Kayode Odeyemi
Hello, I will appreciate some guide as to where exactly to put JPA mapped Entity classes. At the moment I have it under com.foo.server.domain. But whenever I compile the app, GWT returns: No source code is available for type com.foo.server.domain.Users; did you forget to inherit a required

[google-appengine] Re: Where is it advisable to put JPA mapped Entity classes?

2011-02-20 Thread Kayode Odeyemi
then access persisted Entity objects from the client-side? On Sun, Feb 20, 2011 at 4:46 PM, Kayode Odeyemi drey...@gmail.com wrote: To provide more details, I am sending data to the server via GWT-RPC. On the server I'm returning an Entity class object mapped by JPA. So on the client, I requested

[google-appengine] Exception thrown while constructing Processor object

2011-02-10 Thread Kayode Odeyemi
Hi,, I encountered this error: Exception thrown while constructing Processor object: org/datanucleus/exceptions/NucleusException after I ran mvn gwt:run. The error occurred as a compilation error. Can't find anyone replicating this error online. -- Odeyemi 'Kayode O. B.Sc(Hons) Econs,

[google-appengine] Re: Exception thrown while constructing Processor object

2011-02-10 Thread Kayode Odeyemi
/dependency /dependencies /plugin plugin On Thu, Feb 10, 2011 at 1:39 PM, Kayode Odeyemi drey...@gmail.com wrote: Hi,, I encountered this error: Exception thrown while constructing Processor object: org/datanucleus/exceptions/NucleusException after I ran mvn

[google-appengine] To think relational or not

2011-02-06 Thread Kayode Odeyemi
What is the best practice to jump start a GAE app using SpringRoo for architecture? Is it advisable to start with SpringRoo with the one liner JPA setup? I know that doing this already means one is thinking relational. One of my my major here is that JPA is not fully supported in GAE, but I'm

Re: [google-appengine] Prerelease SDK 1.4.2 is available for download

2011-02-04 Thread Kayode Odeyemi
Hello Ikan, The doc on the App Engine wiki at http://code.google.com/p/googleappengine/wiki/WillItPlayInJava needs an update as regards to the non-supported APIs and technologies. JAX-WS is now supported. On Thu, Feb 3, 2011 at 8:38 PM, sandeep Koduri sandeep.kod...@cricfeeds.com wrote: Hello

Re: [google-appengine] Re: Powered by Google Technologies

2011-02-01 Thread Kayode Odeyemi
Hello, Michael, is your team available to take on a GWT project that makes use of virtually all Google tools? Kindly let me know. Thanks On Tue, Feb 1, 2011 at 2:32 AM, Doug dafin...@gmail.com wrote: Nice Site! Smooth and well done. On Jan 30, 3:09 pm, Michael Weinberg weinbe...@gmail.com

Re: [google-appengine] Powered by Google Technologies

2011-02-01 Thread Kayode Odeyemi
Great site. I think i'll work on an imitation :) On Mon, Jan 31, 2011 at 6:03 PM, Ethan mobil...@gmail.com wrote: How long does it take to create the website? Just curious. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this