<?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: Google Vision API - Custom code in Digital Exchange</title>
    <link>https://community.blueprism.com/t5/Digital-Exchange/Google-Vision-API-Custom-code/m-p/50559#M273</link>
    <description>Yes, there is a REST API for Google's Vision service on GCP. There are two different implementations of this REST API already available on the Digital Exchange:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://digitalexchange.blueprism.com/dx/entry/3439/solution/google-vision" target="_blank" rel="noopener"&gt;https://digitalexchange.blueprism.com/dx/entry/3439/solution/google-vision&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://digitalexchange.blueprism.com/dx/entry/9648/solution/cloud-vision-api-v1-2" target="_blank" rel="noopener"&gt;https://digitalexchange.blueprism.com/dx/entry/9648/solution/cloud-vision-api-v1-2&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Partner Integrations for Digital Exchange&lt;BR /&gt;Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Wed, 25 Sep 2019 14:24:00 GMT</pubDate>
    <dc:creator>ewilson</dc:creator>
    <dc:date>2019-09-25T14:24:00Z</dc:date>
    <item>
      <title>Google Vision API - Custom code</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Google-Vision-API-Custom-code/m-p/50554#M268</link>
      <description>Hi, I am trying to extract the text from the image using google vision API. The same code with the required references is working in visual studio but not in blueprism.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;"Internal: Could not execute code stage because an exception is thrown by code stage: Could not load file or assembly 'Google.Apis.Auth, Version=1.35.1.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)". This is the error while I am getting.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;Below are the things I tried to figure out this error but of no use.&lt;BR /&gt;&lt;BR /&gt;1) Currently I am referring the Google.APIs.Auth version 1.40.2 but I tried replacing with the&amp;nbsp;&lt;SPAN&gt;&lt;SPAN&gt;Google.Apis.Auth, Version=1.35.1.0. Error still appeared.&lt;BR /&gt;2) I removed all the dll's relevant to Google vision API except Google.Cloud.Vision, Google.Api.Gax.Grpc and Google.Protobuf.dll from the initialize page as well as from the folder "C:\Program Files\Blue Prism Limited\Blue Prism Automate". With the above dll's I am not getting any errors in building the code stage. But then when running this code again I am getting the same error as mentioned above.&lt;BR /&gt;3) I checked my entire system to see whether I am having the Google.APis.Auth 1.35.1.0 version specific but there is none!&lt;BR /&gt;4) I guess it&amp;nbsp;might be a dependency version conflict. I tried to add assembly binding as we do in visual studio - app.config file or web.config file, something like below but I am not sure what is the relevant file I should refer in BP. My BP VERSION is 6.5&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;CODE&gt;&lt;SPAN class="str"&gt;&amp;lt;runtime&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="pun"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;assemblyBinding xmlns&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;=&lt;/SPAN&gt;&lt;SPAN class="str"&gt;"urn:schemas-microsoft-com:asm.v1"&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="str"&gt;&amp;lt;dependentAssembly&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="pun"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;assemblyIdentity name&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;=&lt;/SPAN&gt;&lt;SPAN class="str"&gt;"Google.Apis.Auth"&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; publicKeyToken&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;=&lt;/SPAN&gt;&lt;SPAN class="str"&gt;"4b01fa6e34db77ab"&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; culture&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;=&lt;/SPAN&gt;&lt;SPAN class="str"&gt;"neutral"&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;/&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="pun"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;bindingRedirect oldVersion&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;=&lt;/SPAN&gt;&lt;SPAN class="str"&gt;"0.0.0.0-1.40.2.0"&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; newVersion&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;=&lt;/SPAN&gt;&lt;SPAN class="str"&gt;"1.40.2.0"&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;/&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="pun"&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;dependentAssembly&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="pun"&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;assemblyBinding&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;
&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="pun"&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;runtime&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/CODE&gt;
&lt;PRE class="lang-cs prettyprint prettyprinted"&gt;Please help me to resolve this issue!!&lt;/PRE&gt;</description>
      <pubDate>Thu, 01 Aug 2019 19:02:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Google-Vision-API-Custom-code/m-p/50554#M268</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-01T19:02:00Z</dc:date>
    </item>
    <item>
      <title>RE: Google Vision API - Custom code</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Google-Vision-API-Custom-code/m-p/50555#M269</link>
      <description>Are you programming the Google Vision API directly yourself, or are you using an implementation from the Digital Exchange? I don't think what's available on the DX has any Google DLL's linked in it.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Eric&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Partner Integrations for Digital Exchange&lt;BR /&gt;Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Sep 2019 15:13:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Google-Vision-API-Custom-code/m-p/50555#M269</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2019-09-24T15:13:00Z</dc:date>
    </item>
    <item>
      <title>RE: Google Vision API - Custom code</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Google-Vision-API-Custom-code/m-p/50556#M270</link>
      <description>I am programming myself. That's why I need to integrate dll.</description>
      <pubDate>Tue, 24 Sep 2019 15:23:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Google-Vision-API-Custom-code/m-p/50556#M270</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-24T15:23:00Z</dc:date>
    </item>
    <item>
      <title>RE: Google Vision API - Custom code</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Google-Vision-API-Custom-code/m-p/50557#M271</link>
      <description>Ok. Have you considered using the REST API instead of the .NET client SDK? The only reason I bring that is that most of the integrations I've seen people build between Blue Prism and Google tend to use the REST interfaces.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Partner Integrations for Digital Exchange&lt;BR /&gt;Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 25 Sep 2019 12:56:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Google-Vision-API-Custom-code/m-p/50557#M271</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2019-09-25T12:56:00Z</dc:date>
    </item>
    <item>
      <title>RE: Google Vision API - Custom code</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Google-Vision-API-Custom-code/m-p/50558#M272</link>
      <description>I will check it out. But as per my knowledge I don't think google vision API have the rest API service interface. I just found the code snippets to extract the data. Can you share me the procedure/link on how to proceed further?</description>
      <pubDate>Wed, 25 Sep 2019 13:47:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Google-Vision-API-Custom-code/m-p/50558#M272</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-25T13:47:00Z</dc:date>
    </item>
    <item>
      <title>RE: Google Vision API - Custom code</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Google-Vision-API-Custom-code/m-p/50559#M273</link>
      <description>Yes, there is a REST API for Google's Vision service on GCP. There are two different implementations of this REST API already available on the Digital Exchange:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://digitalexchange.blueprism.com/dx/entry/3439/solution/google-vision" target="_blank" rel="noopener"&gt;https://digitalexchange.blueprism.com/dx/entry/3439/solution/google-vision&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://digitalexchange.blueprism.com/dx/entry/9648/solution/cloud-vision-api-v1-2" target="_blank" rel="noopener"&gt;https://digitalexchange.blueprism.com/dx/entry/9648/solution/cloud-vision-api-v1-2&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Partner Integrations for Digital Exchange&lt;BR /&gt;Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 25 Sep 2019 14:24:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Google-Vision-API-Custom-code/m-p/50559#M273</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2019-09-25T14:24:00Z</dc:date>
    </item>
  </channel>
</rss>

