I'm having some trouble after uploading my app. In my web.xml I have:
<servlet>
<servlet-name>Poll</servlet-name>
<servlet-class>com.matthews.poll.Controller</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>Poll</servlet-name>
<url-pattern>/adminpoll/*</url-pattern>
</servlet-mapping>
Anecdotally this works on my machine. When I upload it however, I'm
greeted with a 404 and the following log message:
W 11-01 07:30AM 56.854
No handlers matched this URL.
com.matthews.poll is a package I added to my eclipse project post
creation (e.g. it's not the default one eclipse created for me). Do I
need to do something special to get this package to upload to app
engine? Can anyone point out something I'm doing wrong?
Thanks :)
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---