Hi Sebastian, The "org.restlet.clients" parameter is only available to define client connectors, not server ones. In GAE case, the HTTP/HTTPS server connector isn't configured at Restlet level but at GAE level. You should explore your GAE application console for HTTPS configuration options.
Best regards, Jerome -- http://www.restlet.org http://twitter.com/#!/jlouvel -----Message d'origine----- De : Sebastian Wenninger [mailto:[email protected]] Envoyé : mercredi 2 novembre 2011 11:22 À : [email protected] Objet : SSL on Google App Engine Hi! I want to secure my Rest-Application on the Google App-Engine by only allowing calls via HTTPS/SSL. Because i didn't really know how to do this, i first removed the HTTP-Connector from the list of available connectors in my web.xml. <servlet> <servlet-name>RestletServlet</servlet-name> <servlet-class>org.restlet.ext.servlet.ServerServlet</servlet-class> <init-param> <param-name>org.restlet.application</param-name> <param-value>de.server.rest.ServiceApp</param-value> </init-param> <init-param> <param-name>org.restlet.clients</param-name> <param-value>HTTPS FILE</param-value> </init-param> </servlet> It's still possible to access my webservice via plain HTTP though. What do i have to do to only allow HTTPS? Do i have to provide my own SSL-Certificate, or does somebody know a way to use the certificate provided by the appspot.com Domain? Best Regards, Sebastian -- View this message in context: http://restlet-discuss.1400322.n2.nabble.com/SSL-on-Google-App-Engine-tp6954 679p6954679.html Sent from the Restlet Discuss mailing list archive at Nabble.com. ------------------------------------------------------ http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=28712 37 ------------------------------------------------------ http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2875907

