Hello Charles, Adding a connector to your application consists in adding the archives of the chosen connector and its dependencies to the classpath. Assuming that we want to setup an application that support the HTTPS protocol, you can have a look at this page in order to see what server connector supports HTTPS: http://wiki.restlet.org/docs_2.0/13-restlet/37-restlet.html The "Jetty" (org.restlet.ext.jetty) and "Simple" (org.restlet.ext.simple) connectors are suitable. Once you've choosen one, let's complete the classpath by adding "the archives of the chosen connector and its dependencies to the classpath". That is to say, in the case of Jetty: - org.restlet.ext.jetty.jar (archive of the extension) - org.eclipse.jetty.jar, javax.servlet.jar (dependencies, available in the "lib" directory of the Restlet distribution) This data is available at this page ( http://wiki.restlet.org/docs_2.0/13-restlet/78-restlet.html) that you can reach from the previous one quoted above.
In the case of Simple: - org.restlet.ext.simple.jar (archive of the extension) - org.simpleframework.jar (dependency, available in the "lib" directory of the Restlet distribution) This data is available at this page ( http://wiki.restlet.org/docs_2.0/13-restlet/82-restlet.html) that you can reach from the previous one quoted above. And that's all. Your code won't be tied to a specific connector, you should be able to replace one connector by anorther one and make your code run as usual. I hope this will help you. Best regards, Thierry Boileau Thierry: > > Could you (or anyone on this thread) be more explicit about which jar to > add to support HTTPS? Even a specific class name would let me look it up in > jarvana.com, for example. > > "HTTPS Connector" is way too overloaded a word for most people to be able > to find the relevant class or jar. There's simply no way I'm going to find > it w/o the deeper knowledge of what is needed, that you already have. > > (And Murphy is clearly listening... I went to the jetty site to scan thru > their javadoc in the hope of recognizing a connector class... only to find > that their javadoc is all 404! Argh.) > > Thanks! > ------------------------------------------------------ http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2713396

