On Tue, Oct 29, 2013 at 2:17 AM, anuja bothra <anujabot...@gmail.com> wrote:

> My serve method :
>
> public class Serve extends HttpServlet {
>
>     public void doGet(HttpServletRequest req, HttpServletResponse res)
>
>         throws IOException {
>
>             BlobKey blobKey = new BlobKey(req.getParameter("blob-key"));
>
>             blobstoreService.serve(blobKey, res);   }}
>
> I get the following error : *(Error: Not Found **The requested URL **
> /upload-success?blob-key=A*
>
>
>


How are you mapping your handlers? It looks like your Serve class should be
mapped to the path */serve*, yet you're calling the */upload-success* path
to download the file. Are you sure you're invoking the Serve servlet? If
you call */serve* and pass in a blobkey, does it work?

Also, look in your logs. Do you see any errors listed there?


-----------------
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to