[appengine-java] Re: Upload blob never calls success path

2011-05-24 Thread Daniel Florey
As I expected in the first place I'm just dumb.
After running into a lot of issues (OutOfMemory and alike) I found out that 
I just forgot to attach the form to the site properly ;-)

-- 
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-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: Upload blob never calls success path

2011-05-23 Thread Daniel Florey
Hi,
thanks a lot for the info.
I did not even upload to App Engine, just using the development server. So I 
guess there is just the default version?

My servlet is never called, so I cannot even send a redirect yet.
I just end up with an entry in the  __BlobUploadSession__ table and I assume 
that I may need to turn on some flags to call my success path after upload?

Is there a way to turn on debug logging for the core services?

Thanks!

Daniel

-- 
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-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: Upload blob never calls success path

2011-05-23 Thread Juan Hernandez
Hi,

I just posted a similar question to yours:
http://groups.google.com/group/google-appengine-java/browse_thread/thread/b6b540e20b3730ca

My successUrl is being called but it only works if I'm using the
default version of the app. Put a System.out or a logger statement in
your success page and check the logs on the AppEngine console to see
if it goes thru your default version.

Do you get back any error in your browser? error 500 or some other
error?

You can only do a redirect in the success page (3xx return codes), you
cannot return any content, did you know that??

Hope that helps
Juan

On May 23, 12:49 pm, Daniel Florey  wrote:
> I guess I'm just dumb, but please help me anyway ;-)
> I've just tried to upload a blob into the blobstore. When I upload the blobs
> I can see an entry for each upload in the __BlobUploadSession__ table.
> I also can see in there that the success path is properly set, but my mapped
> servlet is never called. (I can call it from the browser though, so it seems
> to be mapped correctly).
>
> Do I have to enable some option on the devserver so that the success path
> servlet will be called once the upload is complete?
>
> Thanks for any hints,
>
> Daniel

-- 
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-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.