<?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 .NET Framework does not seem… in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/VBO-for-FTP-and-SFTP/m-p/67019#M19624</link>
    <description>.NET Framework does not seem to support SFTP natively. You will&amp;nbsp;need to use a third party component to implement it.&amp;nbsp;
Try&amp;nbsp;https://github.com/sshnet/SSH.NET or find others. You'll have to deploy dll on all resource PCs.
I'll leave&amp;nbsp;googling&amp;nbsp;""download file sftp .net""&amp;nbsp;part for the homework.&amp;nbsp;</description>
    <pubDate>Mon, 01 Oct 2018 21:10:00 GMT</pubDate>
    <dc:creator>AndreyKudinov</dc:creator>
    <dc:date>2018-10-01T21:10:00Z</dc:date>
    <item>
      <title>VBO for FTP and SFTP?/?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/VBO-for-FTP-and-SFTP/m-p/67011#M19616</link>
      <description>Surprised to discover that there is no provided VBO for FTP or SFTP</description>
      <pubDate>Wed, 31 Jan 2018 17:18:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/VBO-for-FTP-and-SFTP/m-p/67011#M19616</guid>
      <dc:creator>NevilleWatson</dc:creator>
      <dc:date>2018-01-31T17:18:00Z</dc:date>
    </item>
    <item>
      <title>I am also looking for one…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/VBO-for-FTP-and-SFTP/m-p/67012#M19617</link>
      <description>I am also looking for one.. Any thing you got ?</description>
      <pubDate>Thu, 01 Feb 2018 15:32:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/VBO-for-FTP-and-SFTP/m-p/67012#M19617</guid>
      <dc:creator>Sri_Krishna_Cha</dc:creator>
      <dc:date>2018-02-01T15:32:00Z</dc:date>
    </item>
    <item>
      <title>There is not one.  There is…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/VBO-for-FTP-and-SFTP/m-p/67013#M19618</link>
      <description>There is not one.&amp;nbsp; There is nothing stopping you creating your own codes stage VBO that does this.</description>
      <pubDate>Mon, 05 Feb 2018 20:02:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/VBO-for-FTP-and-SFTP/m-p/67013#M19618</guid>
      <dc:creator>Denis__Dennehy</dc:creator>
      <dc:date>2018-02-05T20:02:00Z</dc:date>
    </item>
    <item>
      <title>Nothing except I wouldn't…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/VBO-for-FTP-and-SFTP/m-p/67014#M19619</link>
      <description>Nothing except I wouldn't know how to develop this.&amp;nbsp; I have simply created an object to operate an FTP client.</description>
      <pubDate>Wed, 07 Feb 2018 16:02:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/VBO-for-FTP-and-SFTP/m-p/67014#M19619</guid>
      <dc:creator>NevilleWatson</dc:creator>
      <dc:date>2018-02-07T16:02:00Z</dc:date>
    </item>
    <item>
      <title>Good solution Neville.  </title>
      <link>https://community.blueprism.com/t5/Product-Forum/VBO-for-FTP-and-SFTP/m-p/67015#M19620</link>
      <description>Good solution Neville.&amp;nbsp;&amp;nbsp;</description>
      <pubDate>Wed, 07 Feb 2018 19:45:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/VBO-for-FTP-and-SFTP/m-p/67015#M19620</guid>
      <dc:creator>Denis__Dennehy</dc:creator>
      <dc:date>2018-02-07T19:45:00Z</dc:date>
    </item>
    <item>
      <title>If anyone has used code…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/VBO-for-FTP-and-SFTP/m-p/67016#M19621</link>
      <description>If anyone has&amp;nbsp;used code stage for FTP can you please share the BO?
Really appreciate it!</description>
      <pubDate>Sun, 13 May 2018 01:06:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/VBO-for-FTP-and-SFTP/m-p/67016#M19621</guid>
      <dc:creator>SagarMehta</dc:creator>
      <dc:date>2018-05-13T01:06:00Z</dc:date>
    </item>
    <item>
      <title>Try using the below code inâ€¦</title>
      <link>https://community.blueprism.com/t5/Product-Forum/VBO-for-FTP-and-SFTP/m-p/67017#M19622</link>
      <description>Try using the below code in a code stage
Â&amp;nbsp;
void DownLoadFTP()
{
SessionOptions sessionOptions = new SessionOptions
{
Protocol = Protocol.Ftp,
HostName = "xxxx",
PortNumber = 21,
UserName = @"xxx",
Password = "xxx",
};
using (Session session = new Session())
{
// Connect
session.Open(sessionOptions);
string remotePath = "/Test/",localPath = "D:\\2\\;
TransferOptions ops = new TransferOptions();
ops.TransferMode = TransferMode.Automatic;
TransferOperationResult rst = session.GetFiles(remotePath, localPath, false,ops);
session.Close();
// Your code
 }
 }</description>
      <pubDate>Tue, 22 May 2018 15:20:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/VBO-for-FTP-and-SFTP/m-p/67017#M19622</guid>
      <dc:creator>Prasen_ManoharB</dc:creator>
      <dc:date>2018-05-22T15:20:00Z</dc:date>
    </item>
    <item>
      <title>prasen.bharati do you know…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/VBO-for-FTP-and-SFTP/m-p/67018#M19623</link>
      <description>prasen.bharati do you know something similar for SFTP?</description>
      <pubDate>Fri, 28 Sep 2018 03:49:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/VBO-for-FTP-and-SFTP/m-p/67018#M19623</guid>
      <dc:creator>MarcelaMesa</dc:creator>
      <dc:date>2018-09-28T03:49:00Z</dc:date>
    </item>
    <item>
      <title>.NET Framework does not seem…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/VBO-for-FTP-and-SFTP/m-p/67019#M19624</link>
      <description>.NET Framework does not seem to support SFTP natively. You will&amp;nbsp;need to use a third party component to implement it.&amp;nbsp;
Try&amp;nbsp;https://github.com/sshnet/SSH.NET or find others. You'll have to deploy dll on all resource PCs.
I'll leave&amp;nbsp;googling&amp;nbsp;""download file sftp .net""&amp;nbsp;part for the homework.&amp;nbsp;</description>
      <pubDate>Mon, 01 Oct 2018 21:10:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/VBO-for-FTP-and-SFTP/m-p/67019#M19624</guid>
      <dc:creator>AndreyKudinov</dc:creator>
      <dc:date>2018-10-01T21:10:00Z</dc:date>
    </item>
    <item>
      <title>RE: There is not one.  There is…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/VBO-for-FTP-and-SFTP/m-p/67020#M19625</link>
      <description>I think this is a good solution&lt;BR /&gt;&lt;A href="https://digitalexchange.blueprism.com/dx/entry/8465/solution/nbotixftp-2" target="test_blank"&gt;https://digitalexchange.blueprism.com/dx/entry/8465/solution/nbotixftp-2&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Rodrigo Villalba&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 02 Feb 2021 13:25:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/VBO-for-FTP-and-SFTP/m-p/67020#M19625</guid>
      <dc:creator>RodrigoVillalba</dc:creator>
      <dc:date>2021-02-02T13:25:00Z</dc:date>
    </item>
    <item>
      <title>RE: There is not one.  There is…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/VBO-for-FTP-and-SFTP/m-p/67021#M19626</link>
      <description>Also another one that was recently published &lt;A href="https://digitalexchange.blueprism.com/dx/entry/9648/solution/sshnet" target="test_blank"&gt;https://digitalexchange.blueprism.com/dx/entry/9648/solution/sshnet&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Shashank Kumar&lt;BR /&gt;DX Integrations Partner Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;Singapore&lt;BR /&gt;+6581326707&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 02 Feb 2021 14:07:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/VBO-for-FTP-and-SFTP/m-p/67021#M19626</guid>
      <dc:creator>shashank.kumar280</dc:creator>
      <dc:date>2021-02-02T14:07:00Z</dc:date>
    </item>
    <item>
      <title>RE: There is not one.  There is…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/VBO-for-FTP-and-SFTP/m-p/67022#M19627</link>
      <description>&lt;P&gt;There's also another one that I had gotten a start on and posted while I was still at my last position. Not an official VBO by any means, but might be another place to get started from.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.blueprism.com/communities/community-home/digestviewer/viewthread?MessageKey=9baefa44-b8bd-4d0f-9607-9e9634420e3d&amp;amp;CommunityKey=1e516cfe-4d1f-4de9-a9eb-58d15bf38c81&amp;amp;tab=digestviewer#bm9baefa44-b8bd-4d0f-9607-9e9634420e3d" target="test_blank"&gt;https://community.blueprism.com/communities/community-home/digestviewer/viewthread?MessageKey=9baefa44-b8bd-4d0f-9607-9e9634420e3d&amp;amp;CommunityKey=1e516cfe-4d1f-4de9-a9eb-58d15bf38c81&amp;amp;tab=digestviewer#bm9baefa44-b8bd-4d0f-9607-9e9634420e3d&lt;/A&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ami Barrett&lt;BR /&gt;Automation Developer, Team Lead&lt;BR /&gt;Blue Prism&lt;BR /&gt;Plano, TX&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 02 Feb 2021 17:33:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/VBO-for-FTP-and-SFTP/m-p/67022#M19627</guid>
      <dc:creator>AmiBarrett</dc:creator>
      <dc:date>2021-02-02T17:33:00Z</dc:date>
    </item>
  </channel>
</rss>

