If /b/abc is a URL point to servlet, you must modify your
/war/WEB-INF/web.xml with the servlet path.
EX:
<servlet>
<servlet-name>abcServlet</servlet-name>
<servlet-class>com.yourdomain.AbcServiceImpl</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>abcServlet</servlet-name>
<url-pattern>/b/abc</url-pattern>
</servlet-mapping>
On Fri, Jul 1, 2011 at 8:51 AM, Pion <[email protected]> wrote:
> My folder structure on Eclipse project is as the following:
>
> war
> /b/abc
> /css
> /js
> /image
> index.html
>
> It works fine on my development machine
>
> But after uploading to Google App Engine, I received the following error
> message: "The requested URL /b/abc was not found on this
> server" .
>
> I am using GAE Java SDK 1.5.1 and Google Plugin for Eclipse 3.6.
>
> Thanks in advance for your help.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine for Java" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/google-appengine-java/-/wdU8pMo19vsJ.
> 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.
>
--
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.