<?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: Accessing bulk import utility externally in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/accessing-bulk-import-utility-externally/m-p/307476#M260606</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;//I encounter the same issue. It is resolved after adding following credential in webclient.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;CredentialCache cc = new CredentialCache();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; cc.Add(new Uri("&lt;/SPAN&gt;&lt;A href="http://localhost:80/alfresco" rel="nofollow noopener noreferrer"&gt;http://localhost:80/alfresco&lt;/A&gt;&lt;SPAN&gt;"), "Basic", new NetworkCredential("username", "password"));&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; wb.Credentials = cc;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;//use the following URL&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; string url = "&lt;/SPAN&gt;&lt;A href="http://localhost:80/alfresco/service/bulkfsimport/initiate" rel="nofollow noopener noreferrer"&gt;http://localhost:80/alfresco/service/bulkfsimport/initiate&lt;/A&gt;&lt;SPAN&gt;";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; var response = wb.UploadValues(url, "POST", data);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;//Minor correction on checkbox parameters&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; data["replaceExisting"] = "replaceExisting";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; data["disableRules"] = "disableRules";&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Nov 2014 09:43:00 GMT</pubDate>
    <dc:creator>billydoe</dc:creator>
    <dc:date>2014-11-25T09:43:00Z</dc:date>
    <item>
      <title>Accessing bulk import utility externally</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/accessing-bulk-import-utility-externally/m-p/307475#M260605</link>
      <description>I'm trying to run the bulk file import utility using a C# web page.&amp;nbsp; This is a POST web script (alfresco/service/bulkfsimport/initiate), so I can't put the various parameters into the URL.&amp;nbsp; Anyway my code looks something like this:&amp;lt;blockcode&amp;gt;using (var wb = new WebClient())&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;</description>
      <pubDate>Fri, 10 May 2013 18:49:54 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/accessing-bulk-import-utility-externally/m-p/307475#M260605</guid>
      <dc:creator>srowsell</dc:creator>
      <dc:date>2013-05-10T18:49:54Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing bulk import utility externally</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/accessing-bulk-import-utility-externally/m-p/307476#M260606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;//I encounter the same issue. It is resolved after adding following credential in webclient.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;CredentialCache cc = new CredentialCache();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; cc.Add(new Uri("&lt;/SPAN&gt;&lt;A href="http://localhost:80/alfresco" rel="nofollow noopener noreferrer"&gt;http://localhost:80/alfresco&lt;/A&gt;&lt;SPAN&gt;"), "Basic", new NetworkCredential("username", "password"));&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; wb.Credentials = cc;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;//use the following URL&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; string url = "&lt;/SPAN&gt;&lt;A href="http://localhost:80/alfresco/service/bulkfsimport/initiate" rel="nofollow noopener noreferrer"&gt;http://localhost:80/alfresco/service/bulkfsimport/initiate&lt;/A&gt;&lt;SPAN&gt;";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; var response = wb.UploadValues(url, "POST", data);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;//Minor correction on checkbox parameters&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; data["replaceExisting"] = "replaceExisting";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; data["disableRules"] = "disableRules";&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2014 09:43:00 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/accessing-bulk-import-utility-externally/m-p/307476#M260606</guid>
      <dc:creator>billydoe</dc:creator>
      <dc:date>2014-11-25T09:43:00Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing bulk import utility externally</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/accessing-bulk-import-utility-externally/m-p/307477#M260607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Well, I'm not trying to do things like this anymore, but if I were I'd be glad to have this advice.&amp;nbsp; Thanks.&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2014 18:25:43 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/accessing-bulk-import-utility-externally/m-p/307477#M260607</guid>
      <dc:creator>srowsell</dc:creator>
      <dc:date>2014-11-25T18:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing bulk import utility externally</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/accessing-bulk-import-utility-externally/m-p/307478#M260608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Welcome. Hope it will benefit for others &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Nov 2014 03:59:08 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/accessing-bulk-import-utility-externally/m-p/307478#M260608</guid>
      <dc:creator>billydoe</dc:creator>
      <dc:date>2014-11-27T03:59:08Z</dc:date>
    </item>
  </channel>
</rss>

