[appengine-java] Re: Uploading Files to Blobstore from external app

2012-03-09 Thread Killian
haha ! My god I can't believe it was so easy ! I think I was probably over thinking it. Yes so the only reason why the app engine side was returning this 404 code is because I was created the upload url on random names instead of giving it the servlet name "upload". Thank you so much :-) O

[appengine-java] Re: Uploading Files to Blobstore from external app

2012-03-09 Thread Stuart Langley
It looks like the URL that you specified for the callback in createUploadURL does not exist - there's a 404 when we try and call it. On Friday, 9 March 2012 22:39:58 UTC+11, Killian wrote: > > > The appid is linguabox10 > > In the mean time I deleted the blobs which I had uploaded and since > ye

[appengine-java] Re: Uploading Files to Blobstore from external app

2012-03-09 Thread Killian
The appid is linguabox10 In the mean time I deleted the blobs which I had uploaded and since yesterday when I click on the blob viewer in the app engine dashboard I get a message "Oops! We couldn't retrieve your list of Kinds." I'm not sure if these issues are related? Thanks for your help K

[appengine-java] Re: Uploading Files to Blobstore from external app

2012-03-09 Thread Stuart Langley
You said the blob ends up in the blobstore but your webhook is not called? What's the appid? On Friday, 9 March 2012 21:32:58 UTC+11, Killian wrote: > > Hi Stuart, > > Yes apologies if I wasn't clear. > > On the app engine side of things I'm calling createUploadURL and placing > the resulting ur

[appengine-java] Re: Uploading Files to Blobstore from external app

2012-03-09 Thread Killian
Hi Stuart, Yes apologies if I wasn't clear. On the app engine side of things I'm calling createUploadURL and placing the resulting url in the task payload as follows: BlobstoreService blobstoreService = BlobstoreServiceFactory.getBlobstoreService(); String uploadURL = blobstoreService.crea

[appengine-java] Re: Uploading Files to Blobstore from external app

2012-03-08 Thread Stuart Langley
Is that the actual code? You need to call createUploadURL for each blob you want to upload. On Friday, 9 March 2012 00:03:43 UTC+11, Killian wrote: > > Hi Lads, > > This issue has been bugging me for a while now and just wasted the last 2 > days with no solution found. I'm getting desperate at t