You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by jb...@apache.org on 2021/03/22 15:13:07 UTC

[activemq] branch activemq-5.16.x updated: AMQ-6781 - The ActiveMQ Web Console doesn’t support a plus (+) sign in the ClientID

This is an automated email from the ASF dual-hosted git repository.

jbonofre pushed a commit to branch activemq-5.16.x
in repository https://gitbox.apache.org/repos/asf/activemq.git


The following commit(s) were added to refs/heads/activemq-5.16.x by this push:
     new 31628a2  AMQ-6781 - The ActiveMQ Web Console doesn’t support a plus (+) sign in the ClientID
31628a2 is described below

commit 31628a2a67fd4cd0844d80e75e7a4f1a30176c69
Author: Sami Nurminen <sn...@gmail.com>
AuthorDate: Thu Dec 21 21:50:11 2017 +0200

    AMQ-6781 - The ActiveMQ Web Console doesn’t support a plus (+) sign in the ClientID
    
    (cherry picked from commit 680b80aa22063e009b14ec59df54c60fdb17d975)
---
 activemq-web-console/src/main/webapp/connections.jsp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/activemq-web-console/src/main/webapp/connections.jsp b/activemq-web-console/src/main/webapp/connections.jsp
index 1d6fbab..5663b35 100644
--- a/activemq-web-console/src/main/webapp/connections.jsp
+++ b/activemq-web-console/src/main/webapp/connections.jsp
@@ -46,7 +46,8 @@
 <jms:forEachConnection broker="${requestContext.brokerQuery}" connectorName="${connectorName}"
 	connection="con" connectionName="conName">
 <tr>
-	<td><a href="<c:url value='connection.jsp?connectionID=${conName}' />"><c:out value="${conName}" /></a></td>
+
+	<td><a href="<c:url value='connection.jsp'><c:param name='connectionID' value='${conName}' /></c:url>"><c:out value="${conName}" /></a></td>
 	<td><c:out value="${con.remoteAddress}" /></td>
 	<td><c:out value="${con.active}" /></td>
 	<td><c:out value="${con.slow}" /></td>
@@ -56,7 +57,6 @@
 </table>
 
 </c:forEach>
-
 <div style="margin-top: 5em">
 <h2>Network Connectors</h2>