Hi Robbie,

I played with it a bit ... what I noticed is that it looks like it
completely ignores the truststore which I pass to the client using the
transport.trustStoreLocation option. Can it be that the
org.apache.qpid.jms.transports.TransportSupport has a bug in the
loadTrustManagers
method? I think it should do:
        String storeLocation = options.getTrustStoreLocation();
        String storePassword = options.getTrustStorePassword();
        String storeType = options.getStoreType();

        LOG.trace("Attempt to load TrustStore from location {} of type {}",
storeLocation, storeType);

instead of:
        String storeLocation = options.getKeyStoreLocation();
        String storePassword = options.getKeyStorePassword();
        String storeType = options.getStoreType();

        LOG.trace("Attempt to load KeyStore from location {} of type {}",
storeLocation, storeType);

Should I enter some JIRA or create a pull request on github?

Thanks & Regards
Jakub




On Mon, Mar 9, 2015 at 8:21 PM, Robbie Gemmell <robbie.gemm...@gmail.com>
wrote:

> Hi everyone,
>
> I have posted a beta build for the new JMS client, in order to test
> out the release process more and give people something fixed to test
> around with before we release.
>
> The source and binary archives for the beta can be grabbed from:
> https://dist.apache.org/repos/dist/dev/qpid/jms/0.1.0-beta/
>
> Those and the other maven artifacts are also staged for now at:
> https://repository.apache.org/content/repositories/orgapacheqpid-1026
>
> If you want to test it out from there (e.g using the examples src, or
> your own things), add this to your poms:
>   <repositories>
>     <repository>
>       <id>staging</id>
>       <url>
> https://repository.apache.org/content/repositories/orgapacheqpid-1026
> </url>
>     </repository>
>   </repositories>
>
> The dependency for the client itself would then be:
>   <dependency>
>     <groupId>org.apache.qpid</groupId>
>     <artifactId>qpid-jms-client</artifactId>
>     <version>0.1.0-beta</version>
>   </dependency>
>
> Regards,
> Robbie
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscr...@qpid.apache.org
> For additional commands, e-mail: users-h...@qpid.apache.org
>
>

Reply via email to