Hi Charles, Sorry it has taken a while to try this and get back to you, been flat out with other things. Anyway today I got around to trying log level TRACE, should have done that earlier, and that lead to getting this extra detail: "javax.net.ssl.SSLKeyException: RSA premaster secret error"
Which after searching around the internet a little lead to the following post: http://markmail.org/message/r4uwwisni7poghu6 Which got me to change (in bin/karaf): exec $JAVA $JAVA_OPTS -Djava.endorsed.dirs="${JAVA_HOME}/lib/endorsed:${KARAF_HOME}/lib/endorsed" -Djava.ext.dirs="${JAVA_HOME}/lib/ext:${KARAF_HOME}/lib/ext" -Dstorage.location="${KARAF_HOME}/instances" -Dkaraf.home="$KARAF_HOME" -Dkaraf.base="$KARAF_BASE" -Djava.util.logging.config.file=$KARAF_BASE/etc/java.util.logging.properties $OPTS -classpath "$CLASSPATH" $MAIN "$@" to: exec $JAVA $JAVA_OPTS -Djava.endorsed.dirs="${JAVA_HOME}/lib/endorsed:${KARAF_HOME}/lib/endorsed" -Djava.ext.dirs="${JAVA_HOME}/jre/lib/ext:${KARAF_HOME}/lib/ext" -Dstorage.location="${KARAF_HOME}/instances" -Dkaraf.home="$KARAF_HOME" -Dkaraf.base="$KARAF_BASE" -Djava.util.logging.config.file=$KARAF_BASE/etc/java.util.logging.properties $OPTS -classpath "$CLASSPATH" $MAIN "$@" Note: only change is ${JAVA_HOME}/lib/ext -> ${JAVA_HOME}/jre/lib/ext And this works. I will raise a ticket about this. Cheers Bryce -- View this message in context: http://karaf.922171.n3.nabble.com/Feature-file-downloading-issue-tp957778p970987.html Sent from the Karaf - User mailing list archive at Nabble.com.
