You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@activemq.apache.org by "Christopher L. Shannon (JIRA)" <ji...@apache.org> on 2017/12/07 17:53:01 UTC

[jira] [Commented] (ARTEMIS-1538) trustAll is ignored when specified in the connectionFactory URI

    [ https://issues.apache.org/jira/browse/ARTEMIS-1538?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16282237#comment-16282237 ] 

Christopher L. Shannon commented on ARTEMIS-1538:
-------------------------------------------------

The original intention I had was to allow this as a client side configuration (not on the broker side) as that is the more common place to use it for testing.  However I suppose there is no reason not to allow this setting for the server as well.

> trustAll is ignored when specified in the connectionFactory URI
> ---------------------------------------------------------------
>
>                 Key: ARTEMIS-1538
>                 URL: https://issues.apache.org/jira/browse/ARTEMIS-1538
>             Project: ActiveMQ Artemis
>          Issue Type: Bug
>          Components: Broker
>    Affects Versions: 2.4.0
>            Reporter: Jiri Daněk
>            Priority: Minor
>
> When attempting to use the ARTEMIS-1469 feature {{trustAll}} option, I noticed that the broker is ignoring this option. The reason seems to be that the option has not been added to the allowed list {{allowableConnectorKeys}}.
> If I do the following change and rebuild active-jms-client jar, then I am able to use {{trustAll}}
> {code}
> index 5d86aaafa..d89cfb5ff 100644
> --- a/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/remoting/impl/netty/TransportConstants.java
> +++ b/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/remoting/impl/netty/TransportConstants.java
> @@ -355,6 +355,7 @@ public class TransportConstants {
>        allowableConnectorKeys.add(TransportConstants.NETTY_CONNECT_TIMEOUT);
>        allowableConnectorKeys.add(TransportConstants.USE_DEFAULT_SSL_CONTEXT_PROP_NAME);
>        allowableConnectorKeys.add(TransportConstants.HANDSHAKE_TIMEOUT);
> +      allowableConnectorKeys.add(TransportConstants.TRUST_ALL_PROP_NAME);
>  
>        ALLOWABLE_CONNECTOR_KEYS = Collections.unmodifiableSet(allowableConnectorKeys);
> {code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)