<?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: Printing a PDF from Adobe on network with latency issues in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Printing-a-PDF-from-Adobe-on-network-with-latency-issues/m-p/49126#M4583</link>
    <description>Hi&amp;nbsp;Cynthia,&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="background-color: #ffff99;"&gt;&amp;gt; In Studio and in de-bug mode, our process loops through all the files, runs cleanly and prints all files. On a resource, some files print while others are skipped. No errors are thrown. We think its a latency issue around having to select the printer and the slow response of our network when running at full speed on the resource.&lt;/SPAN&gt;&lt;BR /&gt;As you mentioned, the slow response from the printer cause this issues. So, when you run the process in NOT debugging mode (e.g., control room, scheduler), you need to add some pause to complete a print job before the next print request is sent.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="background-color: #ffff99;"&gt;&amp;gt; Our first attempt was using application modeler and command line AcroRd32.exe /P PdfFile. The bot failed to find the query item in the navigate stage despite being attached.&lt;/SPAN&gt;&lt;BR /&gt;To execute a command line, Code stage would be a good option since you don't need to attach any application (e.g., CMD). Please check the following code. Please change the fine name and printer name based on your system environment.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Dim startInfo As System.Diagnostics.ProcessStartInfo = New System.Diagnostics.ProcessStartInfo("AcroRd32.exe")&lt;BR /&gt;startInfo.Arguments = " /p /s /o /t ""C:\TEMP\Sample PDFs\Sample 1.pdf"" ""Brother MFC-L2740DW series Printer (redirected 2)"" "&lt;BR /&gt;System.Diagnostics.Process.Start(startInfo)&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Nobu&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Nobuhiro Tokushige&lt;BR /&gt;Product Specialist&lt;BR /&gt;Blue Prism&lt;BR /&gt;Australia/Sydney&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Mon, 15 Jul 2019 03:29:00 GMT</pubDate>
    <dc:creator>nobu</dc:creator>
    <dc:date>2019-07-15T03:29:00Z</dc:date>
    <item>
      <title>Printing a PDF from Adobe on network with latency issues</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Printing-a-PDF-from-Adobe-on-network-with-latency-issues/m-p/49125#M4582</link>
      <description>We're having trouble printing pdf documents on a network printer using Adobe.&amp;nbsp; We're cannot define the printer as a default, and are using a data item to pass the printer name into a command line to open and print the file in one action.&amp;nbsp; Our expression is&amp;nbsp;" /N /T " &amp;amp; Chr(34) &amp;amp; [Output Results.Path]&amp;amp; Chr(34) &amp;amp; [PrinterName]&lt;BR /&gt;&lt;BR /&gt;In Studio and in de-bug mode, our process loops through all the files, runs cleanly and prints all files.&amp;nbsp;&amp;nbsp;On a resource, some files print while others are skipped.&amp;nbsp; No errors are thrown.&amp;nbsp; We think its a latency issue around having to select the printer and the slow response of our network&amp;nbsp;when running at full speed on the resource.&lt;BR /&gt;&lt;BR /&gt;Our first attempt was using application modeler and command line AcroRd32.exe /P PdfFile.&amp;nbsp; The bot failed to find the query item in the navigate stage despite being attached.&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Does anyone have suggestions?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Cynthia Vranesa&lt;BR /&gt;Senior Financial Reporting Manager&lt;BR /&gt;Sally Beauty Holdings, Inc&lt;BR /&gt;America/Chicago&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 12 Jul 2019 20:59:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Printing-a-PDF-from-Adobe-on-network-with-latency-issues/m-p/49125#M4582</guid>
      <dc:creator>CynthiaVranesa</dc:creator>
      <dc:date>2019-07-12T20:59:00Z</dc:date>
    </item>
    <item>
      <title>RE: Printing a PDF from Adobe on network with latency issues</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Printing-a-PDF-from-Adobe-on-network-with-latency-issues/m-p/49126#M4583</link>
      <description>Hi&amp;nbsp;Cynthia,&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="background-color: #ffff99;"&gt;&amp;gt; In Studio and in de-bug mode, our process loops through all the files, runs cleanly and prints all files. On a resource, some files print while others are skipped. No errors are thrown. We think its a latency issue around having to select the printer and the slow response of our network when running at full speed on the resource.&lt;/SPAN&gt;&lt;BR /&gt;As you mentioned, the slow response from the printer cause this issues. So, when you run the process in NOT debugging mode (e.g., control room, scheduler), you need to add some pause to complete a print job before the next print request is sent.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="background-color: #ffff99;"&gt;&amp;gt; Our first attempt was using application modeler and command line AcroRd32.exe /P PdfFile. The bot failed to find the query item in the navigate stage despite being attached.&lt;/SPAN&gt;&lt;BR /&gt;To execute a command line, Code stage would be a good option since you don't need to attach any application (e.g., CMD). Please check the following code. Please change the fine name and printer name based on your system environment.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Dim startInfo As System.Diagnostics.ProcessStartInfo = New System.Diagnostics.ProcessStartInfo("AcroRd32.exe")&lt;BR /&gt;startInfo.Arguments = " /p /s /o /t ""C:\TEMP\Sample PDFs\Sample 1.pdf"" ""Brother MFC-L2740DW series Printer (redirected 2)"" "&lt;BR /&gt;System.Diagnostics.Process.Start(startInfo)&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Nobu&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Nobuhiro Tokushige&lt;BR /&gt;Product Specialist&lt;BR /&gt;Blue Prism&lt;BR /&gt;Australia/Sydney&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 15 Jul 2019 03:29:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Printing-a-PDF-from-Adobe-on-network-with-latency-issues/m-p/49126#M4583</guid>
      <dc:creator>nobu</dc:creator>
      <dc:date>2019-07-15T03:29:00Z</dc:date>
    </item>
  </channel>
</rss>

