You are viewing a plain text version of this content. The canonical link for it is here.
Posted to gitbox@activemq.apache.org by GitBox <gi...@apache.org> on 2022/03/15 09:21:18 UTC

[GitHub] [activemq] SGmuwa commented on pull request #800: Use UTF-8 instead ISO-8859-1 in activemq-web-console/src/main/webapp/xml/*

SGmuwa commented on pull request #800:
URL: https://github.com/apache/activemq/pull/800#issuecomment-1067744203


   @lucastetreault @jbonofre My instance ActiveMQ has non-ISO-8859-1 queue names.
   
   ISO-8859-1:
   ```xml
   <queues>
       <queue name="?? ? ??">
           <stats size="0" consumerCount="0" enqueueCount="0" dequeueCount="0" />
           <feed>
               <atom>queueBrowse/?? ? ???view=rss&amp;feedType=atom_1.0</atom>
               <rss>queueBrowse/?? ? ???view=rss&amp;feedType=rss_2.0</rss>
           </feed>
       </queue>
       <queue name="??????, ???!">
           <stats size="0" consumerCount="0" enqueueCount="0" dequeueCount="0" />
           <feed>
               <atom>queueBrowse/??????, ???!?view=rss&amp;feedType=atom_1.0</atom>
               <rss>queueBrowse/??????, ???!?view=rss&amp;feedType=rss_2.0</rss>
           </feed>
       </queue>
   </queues>
   ```
   
   UTF-8:
   ```xml
   <queues>
       <queue name="🐶 → 🐈">
           <stats size="0" consumerCount="0" enqueueCount="0" dequeueCount="0" />
           <feed>
               <atom>queueBrowse/🐶 → 🐈?view=rss&amp;feedType=atom_1.0</atom>
               <rss>queueBrowse/🐶 → 🐈?view=rss&amp;feedType=rss_2.0</rss>
           </feed>
       </queue>
       <queue name="Привет, Мир!">
           <stats size="0" consumerCount="0" enqueueCount="0" dequeueCount="0" />
           <feed>
               <atom>queueBrowse/Привет, Мир!?view=rss&amp;feedType=atom_1.0</atom>
               <rss>queueBrowse/Привет, Мир!?view=rss&amp;feedType=rss_2.0</rss>
           </feed>
       </queue>
   </queues>
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: gitbox-unsubscribe@activemq.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org