I am working to create a web app using GWT+Java backend. The host page is "App.html" The app also has a RPC, and the host page when initially loaded, makes an RPC call.
However this is the message I am getting from Javascript console in Google Chrome browser-
POST http://app.sparkcrawler.com/com.arvindikchari.auth.App/AuthenticationService 404(Not Found)
Given below are the contents of my web.xml--
<?xml version................................>
<servlet>
<servlet-name>AuthenticationService</servlet-name>
<servlet-class>com.arvindikchari.auth.server.AuthenticationServiceImpl</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>AuthenticationService</servlet-name>
<url-pattern>/com.arvindikchari.auth.App/AuthenticationService</url-pattern>
</servlet-mapping>
What am I doing wrong here? How do I resolve this error?