Hello Ben,
On Wed, Jun 26, 2013 at 2:34 PM, ben younes raed <raed...@gmail.com> wrote:

> I really want to thank you so much for this amazing response :) it helped
> me a lot,but i still have a problem !



 and jsp to this :
>   <form class="post_form" action="<%=
> blobstoreService.createUploadUrl("/TUBlrServlet") %>"
>
>
>
> its doesnt work ! it show me a 404 page not found
> Can you help me please to find my mistakes ?
>
>
Did you create your application through the App Engine plugin for Eclipse?
What did you call your project?

The plugin changes the name of the servlet when auto-mapping; so for
example, if your Eclipse project is called "TUBlr", then Eclipse will
autocreate a servlet named "TUBlrServlet.java" and map it to "/tublr".

So it's a good bet that you need to change the argument for createUploadUrl
from "/TUBlrServlet" to "/tublr" (the lowercase is intentional, do not
change that). If that still doesn't work, look in your /war/WEB-INF/web.xml
file and look for the XML marked < url-pattern > text here < /urlpattern >,
find the mapping that's recorded there, and paste it into createUploadURL.


-----------------
-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