web services - HTTPS requests in Restlet Java framework -
i'm new restlet framework , pretty webservices in general. i'm managing fine send requests 'http' resources try , hit 'https' resources code following error:
no available client connector supports required protocols: 'https' . please add jar of matching connector classpath.
so solved adding .jar project don't know one. or.. bit more complicated that. appreciated!
ps - using restlet 2.1.2
try this:
in addition standard restlet jar files, need reference jar files https. 'simple' https connector uses these jar files:
lib/com.noelios.restlet.ext.simple_3.1.jar
lib/org.simpleframework_3.1/org.simpleframework.jar
lib/com.noelios.restlet.ext.ssl.jar
lib/org.jsslutils_0.5/org.jsslutils.jar
found here:http://restlet.org/learn/guide/2.2/core/security/https
Comments
Post a Comment