Hi,
I'm trying to make an application gwt for my thesis but but I have
this error. HTTP ERROR 404 problem accessing /arnaldo/FIndirizzo.


this is my web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
              http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd";
         version="2.5"
         xmlns="http://java.sun.com/xml/ns/javaee";>

  <!-- Servlets -->
  <servlet>
    <servlet-name>greetServlet</servlet-name>
    <servlet-class>com.pullet.server.GreetingServiceImpl</servlet-
class>
  </servlet>

  <servlet-mapping>
    <servlet-name>greetServlet</servlet-name>
    <url-pattern>/arnaldo/greet</url-pattern>
  </servlet-mapping>

  <servlet>
    <servlet-name>FIndirizzoServlet</servlet-name>
    <servlet-class>com.pullet.server.FIndirizzoImpl</servlet-class>
  </servlet>

  <servlet-mapping>
    <servlet-name>FIndirizzoServlet</servlet-name>
    <url-pattern>/arnaldo/FIndirizzo</url-pattern>
  </servlet-mapping>

  <!-- Default page to serve -->
  <welcome-file-list>
    <welcome-file>Arnaldo.html</welcome-file>
  </welcome-file-list>

</web-app>


this is my Arnaldo.gwt.xml
<?xml version="1.0" encoding="UTF-8"?>
<module rename-to='arnaldo'>
  <!-- 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='com.pullet.client.Arnaldo'/>

  <!-- Specify the paths for translatable code                    -->
  <source path='client'/>
  <source path='shared'/>
  <source path='server/Entity'/>
</module>

this is FIndirizzo.java

package com.pullet.client;

import org.orm.PersistentException;

import com.google.gwt.user.client.rpc.RemoteService;
import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;
import com.pullet.server.Entity.EIndirizzo;

@RemoteServiceRelativePath("FIndirizzo")
public interface FIndirizzo extends RemoteService{

        public EIndirizzo carica() throws Exception;

}

I hope you can help me out, thanks

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to