<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic RE: VenturIQ-Azure Storage Utility - The input is not a valid Base-64 in Digital Exchange</title>
    <link>https://community.blueprism.com/t5/Digital-Exchange/VenturIQ-Azure-Storage-Utility-The-input-is-not-a-valid-Base-64/m-p/61260#M2156</link>
    <description>Hi Eric,&lt;BR /&gt;&lt;BR /&gt;Thank you for response.&lt;BR /&gt;I have made propose changes.&lt;BR /&gt;It seems that characters "&amp;amp;", "=", and "%" are also invalid.&lt;BR /&gt;Do you know how to replace them ?&lt;BR /&gt;&lt;BR /&gt;Kind regards&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mateusz Wojcik&lt;BR /&gt;RPA Programist&lt;BR /&gt;Rockwell Automation&lt;BR /&gt;Europe/Warsaw&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Mon, 11 Apr 2022 14:52:00 GMT</pubDate>
    <dc:creator>MateuszWojcik</dc:creator>
    <dc:date>2022-04-11T14:52:00Z</dc:date>
    <item>
      <title>VenturIQ-Azure Storage Utility - The input is not a valid Base-64</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/VenturIQ-Azure-Storage-Utility-The-input-is-not-a-valid-Base-64/m-p/61258#M2154</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I tried to use object "VenturIQ-Azure Storage Utility" action&amp;nbsp; "ListBlobItems" to get a list of items from my Blob containter. When I run action I get the below error message.&lt;BR /&gt;&lt;BR /&gt;Full error message: Internal : Could not execute code stage because exception thrown by code stage: The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Has anyone know how to handle this error?&lt;BR /&gt;&lt;BR /&gt;Kind regards&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mateusz Wojcik&lt;BR /&gt;RPA Programist&lt;BR /&gt;Rockwell Automation&lt;BR /&gt;Europe/Warsaw&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 25 Mar 2022 09:37:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/VenturIQ-Azure-Storage-Utility-The-input-is-not-a-valid-Base-64/m-p/61258#M2154</guid>
      <dc:creator>MateuszWojcik</dc:creator>
      <dc:date>2022-03-25T09:37:00Z</dc:date>
    </item>
    <item>
      <title>RE: VenturIQ-Azure Storage Utility - The input is not a valid Base-64</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/VenturIQ-Azure-Storage-Utility-The-input-is-not-a-valid-Base-64/m-p/61259#M2155</link>
      <description>Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="23f2a0d8-1666-45b1-9b6f-20f82f6a4cab" data-tag-text="@Mateusz Wojcik" href="https://community.blueprism.com/network/profile?UserKey=23f2a0d8-1666-45b1-9b6f-20f82f6a4cab" data-itemmentionkey="60a95059-ffd4-41aa-840c-0241c2d8e2ad"&gt;@Mateusz Wojcik&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;I dealt with a similar issue just the other day with some Base64-encoded data I was getting from GMail. What I found, in that case, is that the data contained '-' and '_' characters. According to &lt;A href="https://datatracker.ietf.org/doc/html/rfc4648" target="_blank" rel="noopener"&gt;RFC 4648&lt;/A&gt;, those are not valid characters for the main Base64 character set. However, when Base64 data is sent across the web the supported characters '+' and '/' cause issues because they are special characters in URLs. So, there's this concept of &lt;EM&gt;Base64 web safe characters&lt;/EM&gt; which amounts to encoding data in Base64 and then replacing any '+' and '/' characters with '-' and '_', respectively.&lt;BR /&gt;&lt;BR /&gt;All that is to say you might want to check your Base64 data to see if it contains any '-' or '_' characters. If it does, replace them with '+' and '/' and then try to decode the data.&lt;BR /&gt;&lt;BR /&gt;Here's some example code:&lt;BR /&gt;
&lt;PRE class="language-csharp"&gt;&lt;CODE&gt;System.Text.StringBuilder _encodedData = new System.Text.StringBuilder(base64Data);
_encodedData.Replace("-", "+");
_encodedData.Replace("_", "/");&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BR /&gt;If that doesn't work, I'd suggest reaching out to VenturIQ to see if they can offer some guidance. The support link they posted for that asset is &lt;A href="https://venturiq.com/contact-us/" target="_blank" rel="noopener"&gt;https://venturiq.com/contact-us/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 25 Mar 2022 11:52:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/VenturIQ-Azure-Storage-Utility-The-input-is-not-a-valid-Base-64/m-p/61259#M2155</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-03-25T11:52:00Z</dc:date>
    </item>
    <item>
      <title>RE: VenturIQ-Azure Storage Utility - The input is not a valid Base-64</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/VenturIQ-Azure-Storage-Utility-The-input-is-not-a-valid-Base-64/m-p/61260#M2156</link>
      <description>Hi Eric,&lt;BR /&gt;&lt;BR /&gt;Thank you for response.&lt;BR /&gt;I have made propose changes.&lt;BR /&gt;It seems that characters "&amp;amp;", "=", and "%" are also invalid.&lt;BR /&gt;Do you know how to replace them ?&lt;BR /&gt;&lt;BR /&gt;Kind regards&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mateusz Wojcik&lt;BR /&gt;RPA Programist&lt;BR /&gt;Rockwell Automation&lt;BR /&gt;Europe/Warsaw&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 11 Apr 2022 14:52:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/VenturIQ-Azure-Storage-Utility-The-input-is-not-a-valid-Base-64/m-p/61260#M2156</guid>
      <dc:creator>MateuszWojcik</dc:creator>
      <dc:date>2022-04-11T14:52:00Z</dc:date>
    </item>
    <item>
      <title>RE: VenturIQ-Azure Storage Utility - The input is not a valid Base-64</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/VenturIQ-Azure-Storage-Utility-The-input-is-not-a-valid-Base-64/m-p/61261#M2157</link>
      <description>&lt;A class="user-content-mention" data-sign="@" data-contactkey="23f2a0d8-1666-45b1-9b6f-20f82f6a4cab" data-tag-text="@Mateusz Wojcik" href="https://community.blueprism.com/network/profile?UserKey=23f2a0d8-1666-45b1-9b6f-20f82f6a4cab" data-itemmentionkey="a56d2281-9163-49e9-88c6-8d64b7e647de"&gt;@Mateusz Wojcik&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;Those are typical URL characters. Is your data part of a query string on a URL?&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 12 Apr 2022 11:11:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/VenturIQ-Azure-Storage-Utility-The-input-is-not-a-valid-Base-64/m-p/61261#M2157</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-04-12T11:11:00Z</dc:date>
    </item>
    <item>
      <title>RE: VenturIQ-Azure Storage Utility - The input is not a valid Base-64</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/VenturIQ-Azure-Storage-Utility-The-input-is-not-a-valid-Base-64/m-p/61262#M2158</link>
      <description>Hey,&lt;BR /&gt;&lt;BR /&gt;May data are part as SAS Credentials.&lt;BR /&gt;&lt;BR /&gt;Kind regards&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mateusz Wojcik&lt;BR /&gt;RPA Programist&lt;BR /&gt;Rockwell Automation&lt;BR /&gt;Europe/Warsaw&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 26 Apr 2022 11:43:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/VenturIQ-Azure-Storage-Utility-The-input-is-not-a-valid-Base-64/m-p/61262#M2158</guid>
      <dc:creator>MateuszWojcik</dc:creator>
      <dc:date>2022-04-26T11:43:00Z</dc:date>
    </item>
    <item>
      <title>RE: VenturIQ-Azure Storage Utility - The input is not a valid Base-64</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/VenturIQ-Azure-Storage-Utility-The-input-is-not-a-valid-Base-64/m-p/61263#M2159</link>
      <description>Ok, so those characters do encode, under Base64, to different characters. Are you encoding/decoding the credential yourself, or is it provided to you already encoded?&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 26 Apr 2022 12:52:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/VenturIQ-Azure-Storage-Utility-The-input-is-not-a-valid-Base-64/m-p/61263#M2159</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-04-26T12:52:00Z</dc:date>
    </item>
    <item>
      <title>RE: VenturIQ-Azure Storage Utility - The input is not a valid Base-64</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/VenturIQ-Azure-Storage-Utility-The-input-is-not-a-valid-Base-64/m-p/61264#M2160</link>
      <description>Hi Eric, Thank you for your response. I do already have information of what I need. It is written in error message. I do not need to check it in config file. What I do not know is how to solve the problem. I connot find this version System.Memory.dll.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mateusz Wojcik&lt;BR /&gt;RPA Programist&lt;BR /&gt;Rockwell Automation&lt;BR /&gt;Europe/Warsaw&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 08 Jun 2022 12:51:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/VenturIQ-Azure-Storage-Utility-The-input-is-not-a-valid-Base-64/m-p/61264#M2160</guid>
      <dc:creator>MateuszWojcik</dc:creator>
      <dc:date>2022-06-08T12:51:00Z</dc:date>
    </item>
    <item>
      <title>RE: VenturIQ-Azure Storage Utility - The input is not a valid Base-64</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/VenturIQ-Azure-Storage-Utility-The-input-is-not-a-valid-Base-64/m-p/61265#M2161</link>
      <description>Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="23f2a0d8-1666-45b1-9b6f-20f82f6a4cab" data-tag-text="@Mateusz Wojcik" href="https://community.blueprism.com/network/profile?UserKey=23f2a0d8-1666-45b1-9b6f-20f82f6a4cab" data-itemmentionkey="a5a1c2cc-f550-4a63-b20c-a9be4947ec4b"&gt;@Mateusz Wojcik&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;So you're getting an error about a missing DLL? Does the error tell you what version is expected?&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 08 Jun 2022 12:54:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/VenturIQ-Azure-Storage-Utility-The-input-is-not-a-valid-Base-64/m-p/61265#M2161</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-06-08T12:54:00Z</dc:date>
    </item>
    <item>
      <title>RE: VenturIQ-Azure Storage Utility - The input is not a valid Base-64</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/VenturIQ-Azure-Storage-Utility-The-input-is-not-a-valid-Base-64/m-p/61266#M2162</link>
      <description>Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/833"&gt;@ewilson&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt;Yes I am getting error about expected version​,&lt;BR /&gt;&lt;BR /&gt;Kind regards&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mateusz Wojcik&lt;BR /&gt;RPA Programist&lt;BR /&gt;Rockwell Automation&lt;BR /&gt;Europe/Warsaw&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 10 Jun 2022 06:16:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/VenturIQ-Azure-Storage-Utility-The-input-is-not-a-valid-Base-64/m-p/61266#M2162</guid>
      <dc:creator>MateuszWojcik</dc:creator>
      <dc:date>2022-06-10T06:16:00Z</dc:date>
    </item>
  </channel>
</rss>

