<?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: PDF to XML in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/PDF-to-XML/m-p/88539#M39074</link>
    <description>&lt;P&gt;Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/943"&gt;@AimanNishat&lt;/a&gt; ,&lt;/P&gt;
&lt;P&gt;One way of achieving this is by leveraging code stage in blue prism.&lt;/P&gt;
&lt;P&gt;1.&amp;nbsp; Makes sure below namespaces are imported in your object&lt;/P&gt;
&lt;P&gt;Imports System&lt;BR /&gt;Imports System.Collections.Generic&lt;BR /&gt;Imports System.Text&lt;BR /&gt;Imports Bytescout.PDFExtractor&lt;BR /&gt;Imports System.Diagnostics&lt;/P&gt;
&lt;P&gt;2. Call below code in your code stage&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dim extractor As New XMLExtractor()&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; extractor.RegistrationName = "demo"&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; extractor.RegistrationKey = "demo"&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ' Load sample PDF document&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; extractor.LoadDocumentFromFile("test.pdf")&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; extractor.SaveXMLToFile("output.XML")&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Sonam Sharma&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Wed, 15 Feb 2023 07:31:00 GMT</pubDate>
    <dc:creator>sonsharm</dc:creator>
    <dc:date>2023-02-15T07:31:00Z</dc:date>
    <item>
      <title>PDF to XML</title>
      <link>https://community.blueprism.com/t5/Product-Forum/PDF-to-XML/m-p/88537#M39072</link>
      <description>Guys, Need help on how can I convert PDF file to XML.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Aiman Nishat&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 08 Feb 2023 06:35:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/PDF-to-XML/m-p/88537#M39072</guid>
      <dc:creator>AimanNishat</dc:creator>
      <dc:date>2023-02-08T06:35:00Z</dc:date>
    </item>
    <item>
      <title>RE: PDF to XML</title>
      <link>https://community.blueprism.com/t5/Product-Forum/PDF-to-XML/m-p/88538#M39073</link>
      <description>Hi Aiman,&lt;BR /&gt;&lt;BR /&gt;Would opening the PDF in Word, and then having Word save the document in .XML format do the trick?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Happy coding!&lt;BR /&gt;---------------&lt;BR /&gt;Paul&lt;BR /&gt;Sweden&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 08 Feb 2023 07:53:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/PDF-to-XML/m-p/88538#M39073</guid>
      <dc:creator>PvD_SE</dc:creator>
      <dc:date>2023-02-08T07:53:00Z</dc:date>
    </item>
    <item>
      <title>RE: PDF to XML</title>
      <link>https://community.blueprism.com/t5/Product-Forum/PDF-to-XML/m-p/88539#M39074</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/943"&gt;@AimanNishat&lt;/a&gt; ,&lt;/P&gt;
&lt;P&gt;One way of achieving this is by leveraging code stage in blue prism.&lt;/P&gt;
&lt;P&gt;1.&amp;nbsp; Makes sure below namespaces are imported in your object&lt;/P&gt;
&lt;P&gt;Imports System&lt;BR /&gt;Imports System.Collections.Generic&lt;BR /&gt;Imports System.Text&lt;BR /&gt;Imports Bytescout.PDFExtractor&lt;BR /&gt;Imports System.Diagnostics&lt;/P&gt;
&lt;P&gt;2. Call below code in your code stage&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dim extractor As New XMLExtractor()&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; extractor.RegistrationName = "demo"&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; extractor.RegistrationKey = "demo"&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ' Load sample PDF document&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; extractor.LoadDocumentFromFile("test.pdf")&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; extractor.SaveXMLToFile("output.XML")&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Sonam Sharma&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 15 Feb 2023 07:31:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/PDF-to-XML/m-p/88539#M39074</guid>
      <dc:creator>sonsharm</dc:creator>
      <dc:date>2023-02-15T07:31:00Z</dc:date>
    </item>
    <item>
      <title>RE: PDF to XML</title>
      <link>https://community.blueprism.com/t5/Product-Forum/PDF-to-XML/m-p/88540#M39075</link>
      <description>&lt;P&gt;Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="e41aee99-9af8-424c-834d-01865093bc79" data-tag-text="@Sonam Sharma" href="https://community.blueprism.com/network/profile?UserKey=e41aee99-9af8-424c-834d-01865093bc79" data-itemmentionkey="e921694a-ed0b-491e-8bd0-70b0c5787678"&gt;@Sonam Sharma&lt;/A&gt; ,&lt;/P&gt;
&lt;P&gt;Can you please share the dll file of PDFExtractor as well?&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Manpreet Kaur&lt;BR /&gt;Manager&lt;BR /&gt;Deloitte&lt;BR /&gt;*If you find this post helpful mark it as Best Answer&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 15 Feb 2023 20:51:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/PDF-to-XML/m-p/88540#M39075</guid>
      <dc:creator>ManpreetKaur1</dc:creator>
      <dc:date>2023-02-15T20:51:00Z</dc:date>
    </item>
    <item>
      <title>RE: PDF to XML</title>
      <link>https://community.blueprism.com/t5/Product-Forum/PDF-to-XML/m-p/88541#M39076</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/24659"&gt;@ManpreetKaur1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PFA !&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Sonam Sharma&lt;BR /&gt;Manager, Blue Prism&lt;BR /&gt;SS&amp;amp;C&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Feb 2023 05:33:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/PDF-to-XML/m-p/88541#M39076</guid>
      <dc:creator>sonsharm</dc:creator>
      <dc:date>2023-02-16T05:33:00Z</dc:date>
    </item>
    <item>
      <title>RE: PDF to XML</title>
      <link>https://community.blueprism.com/t5/Product-Forum/PDF-to-XML/m-p/88542#M39077</link>
      <description>&lt;P&gt;Attached here !&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Sonam Sharma&lt;BR /&gt;Manager, Blue Prism&lt;BR /&gt;SS&amp;amp;C&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Feb 2023 05:40:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/PDF-to-XML/m-p/88542#M39077</guid>
      <dc:creator>sonsharm</dc:creator>
      <dc:date>2023-02-16T05:40:00Z</dc:date>
    </item>
    <item>
      <title>RE: PDF to XML</title>
      <link>https://community.blueprism.com/t5/Product-Forum/PDF-to-XML/m-p/88543#M39078</link>
      <description>&lt;P&gt;Great !!&lt;/P&gt;
&lt;P&gt;Thanks &lt;A class="user-content-mention" data-sign="@" data-contactkey="c0c9dc86-6583-4eb2-9303-3814be20dfd6" data-tag-text="@Sonam Sharma" href="https://community.blueprism.com/network/profile?UserKey=c0c9dc86-6583-4eb2-9303-3814be20dfd6" data-itemmentionkey="f93e8778-246e-4342-88e0-70ff016fabc4"&gt;@Sonam Sharma&lt;/A&gt; !!&lt;/P&gt;
&lt;P&gt;Any specific guidelines to use the attached code?&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Manpreet Kaur&lt;BR /&gt;Manager&lt;BR /&gt;Deloitte&lt;BR /&gt;*If you find this post helpful mark it as Best Answer&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Feb 2023 07:51:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/PDF-to-XML/m-p/88543#M39078</guid>
      <dc:creator>ManpreetKaur1</dc:creator>
      <dc:date>2023-02-16T07:51:00Z</dc:date>
    </item>
    <item>
      <title>RE: PDF to XML</title>
      <link>https://community.blueprism.com/t5/Product-Forum/PDF-to-XML/m-p/88544#M39079</link>
      <description>&lt;P&gt;Hi Sonam,&lt;/P&gt;
&lt;P&gt;I have imported all the namespace and added attached dll and getting below error could you please help.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Internal : Could not execute code stage because exception thrown by code stage: Could not load file or assembly 'Bytescout.PDFExtractor, Version=13.3.0.4514, Culture=neutral, PublicKeyToken=f7dd1bd9d40a50eb' or one of its dependencies. The system cannot find the file specified.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Saumitra Kumar Sharma&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 17 Feb 2023 06:47:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/PDF-to-XML/m-p/88544#M39079</guid>
      <dc:creator>Saumitra_KumarS</dc:creator>
      <dc:date>2023-02-17T06:47:00Z</dc:date>
    </item>
    <item>
      <title>RE: PDF to XML</title>
      <link>https://community.blueprism.com/t5/Product-Forum/PDF-to-XML/m-p/88545#M39080</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/28786"&gt;@Saumitra_KumarS&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did you place the dll file at&amp;nbsp; location "&lt;SPAN&gt;C:\Program Files\Blue Prism Limited\Blue Prism Automate" ?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;------------------------------&lt;BR /&gt;Sonam Sharma&lt;BR /&gt;Manager, Blue Prism&lt;BR /&gt;SS&amp;amp;C&lt;BR /&gt;------------------------------&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Feb 2023 05:41:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/PDF-to-XML/m-p/88545#M39080</guid>
      <dc:creator>sonsharm</dc:creator>
      <dc:date>2023-02-20T05:41:00Z</dc:date>
    </item>
    <item>
      <title>RE: PDF to XML</title>
      <link>https://community.blueprism.com/t5/Product-Forum/PDF-to-XML/m-p/88546#M39081</link>
      <description>&lt;P&gt;Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="e41aee99-9af8-424c-834d-01865093bc79" data-tag-text="@Sonam Sharma" href="https://community.blueprism.com/network/profile?UserKey=e41aee99-9af8-424c-834d-01865093bc79" data-itemmentionkey="e65c2827-6db8-4e99-9fdd-ad6a04f15225"&gt;@Sonam Sharma&lt;/A&gt; It's already resolved Thanks&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Saumitra Kumar Sharma&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 20 Feb 2023 06:53:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/PDF-to-XML/m-p/88546#M39081</guid>
      <dc:creator>Saumitra_KumarS</dc:creator>
      <dc:date>2023-02-20T06:53:00Z</dc:date>
    </item>
    <item>
      <title>RE: PDF to XML</title>
      <link>https://community.blueprism.com/t5/Product-Forum/PDF-to-XML/m-p/88547#M39082</link>
      <description>&lt;P&gt;Hi @Sonam Sharma,&lt;/P&gt;
&lt;P&gt;is this safe to use? also i noticed that after trying this code, the XML has this "&lt;SPAN&gt;Produced with ByteScout PDF Extractor SDK v13.3.0.4514 [TRIAL]" . Does this mean it can only be used for a few tries and need to pay for a subscription?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;just wanted to know as it will be used to PDFs with personal details. Thanks in advance&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ed Kristoferson Geronimo&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 07 Aug 2023 11:48:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/PDF-to-XML/m-p/88547#M39082</guid>
      <dc:creator>edkris15</dc:creator>
      <dc:date>2023-08-07T11:48:00Z</dc:date>
    </item>
    <item>
      <title>RE: PDF to XML</title>
      <link>https://community.blueprism.com/t5/Product-Forum/PDF-to-XML/m-p/88548#M39083</link>
      <description>&lt;P&gt;Bytescout PDF Extractor seems to be a paid product and I can see a free trial.&lt;/P&gt;
&lt;P&gt;&lt;A id="MainCopy_ctl11_ucMessageList_rptMessageList_ProfileImageDisplay_10_NameLink_10" biobubblekey="0c027450-f3bc-4d73-b11c-227a3ae64ba6" href="https://community.blueprism.com/network/profile?UserKey=0c027450-f3bc-4d73-b11c-227a3ae64ba6" target="_blank" rel="noopener"&gt;Ed Kristoferson Geronimo&lt;/A&gt; you should check Adobe PDF Toolkit available on DX.&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;If I was of assistance, please vote for it to be the "Best Answer".&lt;BR /&gt;&lt;BR /&gt;Thanks &amp;amp; Regards,&lt;BR /&gt;Tejaskumar Darji - &lt;A href="https://www.linkedin.com/in/tejaskumardarji/" target="test_blank"&gt;https://www.linkedin.com/in/tejaskumardarji/&lt;/A&gt;&lt;BR /&gt;Technical Lead&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 07 Aug 2023 12:33:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/PDF-to-XML/m-p/88548#M39083</guid>
      <dc:creator>Tejaskumar_Darji</dc:creator>
      <dc:date>2023-08-07T12:33:00Z</dc:date>
    </item>
  </channel>
</rss>

