The BlobstoreService recently added support for serving partial byte
ranges from a blob. When this method is invoked the response is
generated with a HTTP 206 (Partial Content) status code. So it looks
like app engine assumes that it is always serving a Range request in
this case.

However, in my case I have bundled many files into one blob entry and
I know the byte range of each. From the client's perspective they only
access a URL representing an individual file. Behind the scenes, I
invoke the ByteRange based serve method on the blob store to serve the
file. HTTP 200 is the more appropriate response in my case however the
app engine always returns 206.

Is there a way to override this behavior? (i.e. return 200 instead of
206?)

Thanks,
Keyur

-- 
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 [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.

Reply via email to