Case sensitivity: Your URL pattern is FoCuS/SpeicherService but your software is looking for /focus/SpeicherService
On Sep 19, 1:33 pm, ph09 <[email protected]> wrote: > Hi, > > I want to make a RPC Call but instead i get the following Error: > > com.google.gwt.user.client.rpc.StatusCodeException: 404 <html> > <head> > <meta http-equiv="Content-Type" content="text/html; > charset=ISO-8859-1"/> > <title>Error 404 NOT_FOUND</title> > </head> > <body><h2>HTTP ERROR 404</h2> > <p>Problem accessing /focus/SpeicherService. Reason: > <pre> NOT_FOUND</pre></p><hr /><i><small>Powered by > Jetty://</small></i><br/> > <br/> > <br/> > <br/> > <br/> > > And so on... > > That`s my web.xml: > > <servlet> > <servlet-name>SpeicherService</servlet-name> > > <servlet-class>de.fhdo.focus.server.SpeicherServiceImpl</servlet- > class> > </servlet> > <servlet-mapping> > <servlet-name>SpeicherService</servlet-name> > <url-pattern>FoCuS/SpeicherService</url-pattern> > </servlet-mapping> > > <!-- Default page to serve --> > <welcome-file-list> > <welcome-file>FoCuS.html</welcome-file> > </welcome-file-list> > > And the gwt.xml: > > <?xml version="1.0" encoding="UTF-8"?> > <module rename-to='focus'> > <!-- Inherit the core Web Toolkit stuff. --> > <inherits name='com.google.gwt.user.User'/> > > <!-- Inherit the default GWT style sheet. You can change --> > <!-- the theme of your GWT application by uncommenting --> > <!-- any one of the following lines. --> > <inherits name='com.google.gwt.user.theme.clean.Clean'/> > <!-- <inherits name='com.google.gwt.user.theme.standard.Standard'/> > --> > <!-- <inherits name='com.google.gwt.user.theme.chrome.Chrome'/> --> > <!-- <inherits name='com.google.gwt.user.theme.dark.Dark'/> --> > > <!-- Other module inherits --> > > <!-- Specify the app entry point class. --> > <entry-point class='de.fhdo.focus.client.gui.Focus'/> > > <!-- Specify the paths for translatable code --> > <source path='client'/> > <source path='shared'/> > > </module> > > What`s wrong here? I rather don't know how the servlet works.. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" 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-web-toolkit?hl=en.
