I tried to host a sample default GWT application which uses RPC . I
did not do any changes in the program because GWT default program uses
RPC service for getting a reply from the server. This program runs
correctly in the local Apache server. When i put the same program in
the external server ,it does not work.
this is the deployment descriptor file : web.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"
http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
<!-- Servlets -->
<servlet>
<servlet-name>greetServlet</servlet-name>
<servlet-class>rp.server.GreetingServiceImpl</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>greetServlet</servlet-name>
<url-pattern>/rpctesting/greet</url-pattern>
</servlet-mapping>
<!-- Default page to serve -->
<welcome-file-list>
<welcome-file>Rpctesting.html</welcome-file>
</welcome-file-list>
</web-app>
The error i am getting now is
[Tue Jan 24 04:26:47 2012] [error] [client 14.140.69.18] File does not
exist: /home/spectrum/public_html/program/rpctesting/greet, referer:
http://myserver.in/program/Rpctesting.html
[Tue Jan 24 04:26:47 2012] [error] [client 14.140.69.18] File does not
exist: /home/spectrum/public_html/404.shtml, referer: http://
myserver .in/program/Rpctesting.html
[Tue Jan 24 04:31:23 2012] [error] [client 91.121.183.61] File does
not exist: /usr/local/apache/htdocs/aggregator
[Tue Jan 24 04:31:24 2012] [error] [client 91.121.183.61] File does
not exist: /usr/local/apache/htdocs/aggregator
can anyone help me on this issue