Tutorial works fine for me in dev mode, but fails when I upload to appspot.  I 
only have a single servlet in my web.xml
<web-app>
  <context-param>
    <param-name>org.restlet.clients</param-name>
    <param-value>CLAP FILE</param-value>
  </context-param>

  <servlet>
    <servlet-name>adapter</servlet-name>
    <!--  
<servlet-class>org.restlet.ext.gwt.GwtShellServletWrapper</servlet-class> -->
    <servlet-class>org.restlet.ext.servlet.ServerServlet</servlet-class>
    <init-param>
      <param-name>org.restlet.application</param-name>
      
<param-value>org.restlet.example.gae.serialization.server.TestServerApplication</param-value>
    </init-param>
  </servlet>

  <servlet-mapping>
    <servlet-name>adapter</servlet-name>
    <url-pattern>/*</url-pattern>
  </servlet-mapping>
</web-app>

I don't see any errors in the appspot log, just the message: "Oops! This link 
appears to be broken." in the browser.

I am using the gwt version of the org.restlet.jar (2.1 M1) on the client and 
the gae (2.1 M1) version of org.restlet.jar (and the other 6 jars required by 
the tutorial).

Any ideas as to how I can track down the problem?  The only change I made to 
the tutorial was to change to newer jars and the modification you can see above 
in the web.xml.

You can try it for yourself at: http://rbresttest2.appspot.com/

Thanks so much - I am trying to see if I can learn enough about restlet to 
recommend it for an upcoming product.

RB

------------------------------------------------------
http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2691931

Reply via email to