﻿<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>LogViewPlus Support » LogViewPlus Support » Configuration &amp; Customization  » Encoding Base64</title><generator>InstantForum 2017-1 Final</generator><description>LogViewPlus Support</description><link>https://www.logviewplus.com/forum/</link><webMaster>LogViewPlus Support</webMaster><lastBuildDate>Fri, 24 Apr 2026 01:52:21 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: Encoding Base64</title><link>https://www.logviewplus.com/forum/post/161</link><description>Glad to hear you got it working and thanks for posting your solution!&amp;nbsp; I will try and think of a way these snippets can be more easily shared.&lt;br/&gt;&lt;br/&gt;Toby</description><pubDate>Fri, 03 May 2019 14:25:17 GMT</pubDate><dc:creator>LogViewPlus Support</dc:creator></item><item><title>Encoding Base64</title><link>https://www.logviewplus.com/forum/post/155</link><description>Hello, I use your product for the analysis of RabbitMQ trace logs, I configured the parser and logs are displayed, but the message (Payload) is encoded by Base64, I would like to ask if any built-in tools that would immediately decode the message (Payload) in plain text?</description><pubDate>Fri, 03 May 2019 14:23:48 GMT</pubDate><dc:creator>SD</dc:creator></item><item><title>RE: Encoding Base64</title><link>https://www.logviewplus.com/forum/post/160</link><description>Thanks, it's working.&lt;br/&gt;If anyone needs it, here's the code:&lt;br/&gt;[code language="c#"]        public void Modify(LogEntry newEntry)&lt;br/&gt;        {&lt;br/&gt;            var message = newEntry.Message;&lt;br/&gt;            var base64EncodedBytes = System.Convert.FromBase64String(message);&lt;br/&gt;            newEntry.Message = System.Text.Encoding.UTF8.GetString(base64EncodedBytes);&lt;br/&gt;        }[/code]</description><pubDate>Fri, 03 May 2019 14:17:57 GMT</pubDate><dc:creator>SD</dc:creator></item><item><title>RE: Encoding Base64</title><link>https://www.logviewplus.com/forum/post/157</link><description>Hi,&lt;br/&gt;&lt;br/&gt;There is no solution at the moment, but this functionality would be relatively easy to implement as a Custom Post Processor where you just decode and then modify the Message:&lt;br/&gt;&lt;a href="https://www.logviewplus.com/docs/post_processors.html"&gt;https://www.logviewplus.com/docs/post_processors.html&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;You can find sample code for custom extensions here:&lt;br/&gt;&lt;a href="http://www.logviewplus.com/dist/LogViewPlus_Samples.zip"&gt;http://www.logviewplus.com/dist/LogViewPlus_Samples.zip&lt;/a&gt;&lt;br/&gt;&lt;a href="https://www.logviewplus.com/docs/running_the_samples.html"&gt;https://www.logviewplus.com/docs/running_the_samples.html&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;I think this functionality is a both helpful and a bit niche.&amp;nbsp; It would be good to put it into the application, but I wouldn't want to confuse users who are not interested.&amp;nbsp; I will need to think a bit about how that could be done.&lt;br/&gt;&lt;br/&gt;Thanks,&lt;br/&gt;&lt;br/&gt;Toby&lt;br/&gt;</description><pubDate>Fri, 03 May 2019 13:28:47 GMT</pubDate><dc:creator>LogViewPlus Support</dc:creator></item></channel></rss>