[
https://issues.apache.org/jira/browse/ARTEMIS-1043?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15960111#comment-15960111
]
ASF subversion and git services commented on ARTEMIS-1043:
----------------------------------------------------------
Commit a97303118bd963b67b1c6b9e20c74c991397d7cb in activemq-artemis's branch
refs/heads/1.x from [~jmesnil]
[ https://git-wip-us.apache.org/repos/asf?p=activemq-artemis.git;h=a973031 ]
[ARTEMIS-1043] Support IPv6 in NettyConnector
Call IPV6Util.encloseHost when creating the uri used to send the HTTP
ugrade request to ensure that IPv6 address are properly enclosed.
JIRA: https://issues.apache.org/jira/browse/ARTEMIS-1043
> NettyConnector not working with IPv6 address
> --------------------------------------------
>
> Key: ARTEMIS-1043
> URL: https://issues.apache.org/jira/browse/ARTEMIS-1043
> Project: ActiveMQ Artemis
> Issue Type: Bug
> Components: Broker
> Affects Versions: 1.5.3
> Reporter: Jeff Mesnil
>
> Artemis client doesn't correctly enclose IPv6 address when sending HTTP
> upgrade packet.
> According to [RFC2732 | https://www.ietf.org/rfc/rfc2732.txt], section {{2.
> Literal IPv6 Address Format in URL's Syntax}} and [HTTP header field
> definition
> specification|https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html],
> correct request URL should be enclosed like following one:
> {{http://[fe80::56ee:75ff:fe47:c83e]}}
> Following code snippet creates request for URL
> {{http://fe80::56ee:75ff:fe47:c83e}}
> {code}
> HashMap<String, Object> map = new HashMap<String, Object>();
> map.put("host", "fe80::56ee:75ff:fe47:c83e");
> map.put("port", "8080");
> map.put(TransportConstants.HTTP_UPGRADE_ENABLED_PROP_NAME, true);
> TransportConfiguration transportConfiguration = new
> TransportConfiguration(NettyConnectorFactory.class.getName(), map);
> ConnectionFactory cf =
> ActiveMQJMSClient.createConnectionFactoryWithoutHA(JMSFactoryType.CF,
> transportConfiguration);
> connection = cf.createConnection();
> {code}
> This works fine when client connects directly to the server. However it may
> cause problems when Artemis connects to proxy which expects IPv6 address
> correctly enclosed.
> Artemis client should detect IPv6 address and enclose it, so it conforms to
> specification.
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)