> Hello Thomas,
> 
> could you provide us your web.xml file also?
> Can you have a look at this documentation page? => 
> http://www.restlet.org/documentation/1.1/firstSteps
> 
> best regards,
> Thierry Boileau

<?xml version="1.0" encoding="ISO-8859-1"?>

<!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>


    <display-name>Interaktive Stadt Web Application</display-name>
    <description>
      This is a Restful web map service, written in Java by
      Thomas Fuhrmann. For more information, please contact
      [EMAIL PROTECTED]
    </description>

    <context-param>
                <param-name>main.Application</param-name>
                <param-value>
                   com.interaktivestadt.Application
                </param-value>
    </context-param>
    
    <!-- Restlet adapter -->
    <servlet>
                <servlet-name>ServerServlet</servlet-name>
                <servlet-class>
                   com.noelios.restlet.ext.servlet.ServerServlet
                </servlet-class>
    </servlet>
    
    <!-- Catch all requests -->
    <servlet-mapping>
                <servlet-name>ServerServlet</servlet-name>
                <url-pattern>/*</url-pattern>
    </servlet-mapping>

Yes I've already looked at this page, that's where I started from.

</web-app>





Reply via email to