This came up today on the GAE list, you may want to chime in when the adapation is done so people get the latest information:
http://groups.google.com/group/google-appengine-java/browse_thread/thread/f601350cd8f4d385/c8dc407d77e5562d?lnk=gst&q=rest#c8dc407d77e5562d ... You can also run Restlets on GAE with a little workaround: Replace initialization of ServletLogger instance with java.util.Logger in these 2 source files: - com.noelios.restlet.ext.servlet.ServletContextAdapter - com.noelios.restlet.ext.servlet.ServletConverter Now add the Restlet servlet to your deployment descriptor and you should be good to go. <!-- Restlet adapter --> <servlet> <servlet-name>RestletServlet</servlet-name> <servlet-class>com.noelios.restlet.ext.servlet.ServerServlet</ servlet-class> </servlet> <servlet-mapping> <servlet-name>RestletServlet</servlet-name> <url-pattern>/store/feeds/*</url-pattern> </servlet-mapping>: -Anirudh Jerome Louvel wrote: > Hi all, > > When using third-party libraries with GAE SDK, you have to be careful > because those libraries are not verified against the available Java classes > (white list). Therefore, it will work locally but break at deployment time! > > Hint: an adaptation of Restlet for GAE is underway. Stay tuned ;) > > Best regards, > Jerome Louvel > -- > Restlet ~ Founder and Lead developer ~ http://www.restlet.org > Noelios Technologies ~ Co-founder ~ http://www.noelios.com > > > -----Message d'origine----- > De : Lars Heuer [mailto:[email protected]] > Envoyé : vendredi 10 avril 2009 12:32 > À : [email protected] > Objet : Re: Google AppEngine and Restlet > > [...] > >> Just out of curiosity: Has someone tried Google AppEngine [1] together >> with Restlet (Servlet connector)? >> > > I ran a few toy applications against the Google AppEngine SDK and discovered > no problems so far. > > Best regards, > Lars > -- > http://www.semagia.com > > ------------------------------------------------------ > http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=16283 > 83 > > ------------------------------------------------------ > http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=1630425 > > ------------------------------------------------------ http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=1635337

