-
1. Re: ActiveMQ (FuseEsb, Camel) - Http to Https
milanmilas Feb 20, 2013 6:43 AM (in response to milanmilas)Is this configuration correct in my Camel route?
Edited by: milanmilas on Feb 20, 2013 11:43 AM
Edited by: milanmilas on Feb 20, 2013 11:43 AM
-
2. Re: ActiveMQ (FuseEsb, Camel) - Http to Https
davsclaus Feb 22, 2013 9:04 AM (in response to milanmilas)Have you tried running it? It seems at first glance okay.
-
3. Re: ActiveMQ (FuseEsb, Camel) - Http to Https
milanmilas Mar 25, 2013 6:02 AM (in response to davsclaus)ActiveMQSslConnectionFactory is for SSL, it will pass the work to parent class if transport is
https. It looks like there is no ConnectionFactory in ActiveMQ for Https.
In this way I am using the default one I would use for Http with difference that I have created
additionl class for serring certificates.
I did manage to make it work is by creating new class that is instanced in
Blueprint:
public class SetSystemProperties {
private static final transient Logger LOG = LoggerFactory.getLogge(SetSystemProperties.class);
public SetSystemProperties(){
LOG.info("processing SetSystemProperties");
System.setPropert("javax.net.ssl.trustStore","M:/Projects/conf/Server.ts");
System.setProperty("javax.net.ssl.trustStorePassword","password");
System.setProperty("javax.net.ssl.keyStore","M:/Projects/conf/cons.ks");
System.setProperty("javax.net.ssl.keyStorePassword","password");
System.setProperty("javax.net.debug","ssl");
}
}