<?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: Rest API Call - 407 Authentication required in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Rest-API-Call-407-Authentication-required/m-p/65693#M18298</link>
    <description>Hi Eric,&lt;BR /&gt;&lt;BR /&gt;Thank you very much on your response.&lt;BR /&gt;Will do it via code stage.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;SHAHRULRIZAL SAID&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Mon, 11 Nov 2019 01:59:00 GMT</pubDate>
    <dc:creator>SHAHRULRIZALSAI</dc:creator>
    <dc:date>2019-11-11T01:59:00Z</dc:date>
    <item>
      <title>Rest API Call - 407 Authentication required</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Rest-API-Call-407-Authentication-required/m-p/65691#M18296</link>
      <description>Hi Experts,&lt;BR /&gt;&lt;BR /&gt;I had invoked restful API hosting in azure from Object and received below error.&lt;BR /&gt;&lt;BR /&gt;Internal : Unexpected error Error during Web API HTTP Request&lt;BR /&gt;HTTP Status Code: 407&lt;BR /&gt;HTTP Response Content: &amp;lt;HTML&amp;gt;&amp;lt;HEAD&amp;gt;&lt;BR /&gt;&amp;lt;TITLE&amp;gt;Access Denied&amp;lt;/TITLE&amp;gt;&lt;BR /&gt;&lt;BR /&gt;This is because, form our network it has to go through proxy authentication to access external URI.&amp;nbsp;&lt;BR /&gt;If i am browse to any external website from resource PC, then i am able to proceed run the object and get the response content. otherwise it will return 407 error.&lt;BR /&gt;&lt;BR /&gt;This issue because of calling an external URI require a proxy authentication. How to call a rest API with enter the proxy authentication?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;SHAHRULRIZAL SAID&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 07 Nov 2019 07:20:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Rest-API-Call-407-Authentication-required/m-p/65691#M18296</guid>
      <dc:creator>SHAHRULRIZALSAI</dc:creator>
      <dc:date>2019-11-07T07:20:00Z</dc:date>
    </item>
    <item>
      <title>RE: Rest API Call - 407 Authentication required</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Rest-API-Call-407-Authentication-required/m-p/65692#M18297</link>
      <description>The WebAPI feature of Blue Prism does not support proxy authentication. If the is a requirement there is a REST web service VBO available on the Digital Exchange that I believe supports this. If not, the alternative would be to use a code stage and invoke the .Net HttpWebClient object directly. With that, you can definitely set up proxy authentication.&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>Fri, 08 Nov 2019 12:28:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Rest-API-Call-407-Authentication-required/m-p/65692#M18297</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2019-11-08T12:28:00Z</dc:date>
    </item>
    <item>
      <title>RE: Rest API Call - 407 Authentication required</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Rest-API-Call-407-Authentication-required/m-p/65693#M18298</link>
      <description>Hi Eric,&lt;BR /&gt;&lt;BR /&gt;Thank you very much on your response.&lt;BR /&gt;Will do it via code stage.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;SHAHRULRIZAL SAID&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 11 Nov 2019 01:59:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Rest-API-Call-407-Authentication-required/m-p/65693#M18298</guid>
      <dc:creator>SHAHRULRIZALSAI</dc:creator>
      <dc:date>2019-11-11T01:59:00Z</dc:date>
    </item>
    <item>
      <title>RE: Rest API Call - 407 Authentication required</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Rest-API-Call-407-Authentication-required/m-p/65694#M18299</link>
      <description>Hi Shah,&lt;BR /&gt;&lt;BR /&gt;Were you able to handle the proxy authentication via code stage?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Aravinda Misra&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 19 Aug 2020 01:31:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Rest-API-Call-407-Authentication-required/m-p/65694#M18299</guid>
      <dc:creator>AravindaMisra</dc:creator>
      <dc:date>2020-08-19T01:31:00Z</dc:date>
    </item>
    <item>
      <title>RE: Rest API Call - 407 Authentication required</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Rest-API-Call-407-Authentication-required/m-p/65695#M18300</link>
      <description>Hi Aravindra,&lt;BR /&gt;Yes i had use it in code stage.&lt;BR /&gt;I am using below in code stage&lt;BR /&gt;&lt;BR /&gt;HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://www.google.com");&lt;BR /&gt;&lt;BR /&gt;IWebProxy proxy = request.Proxy;&lt;BR /&gt;string URI = string.Empty;&lt;BR /&gt;if (proxy != null)&lt;BR /&gt;{&lt;BR /&gt;URI = proxy.GetProxy(request.RequestUri).AbsoluteUri;&lt;BR /&gt;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;WebProxy myProxy = new WebProxy();&lt;BR /&gt;Uri newUri = new Uri(URI);&lt;BR /&gt;myProxy.Address = newUri;&lt;BR /&gt;myProxy.Credentials = new NetworkCredential(UserName, Password,"MyDomain");&lt;BR /&gt;request.Proxy = myProxy;&lt;BR /&gt;var client = new HttpClient(); &lt;BR /&gt;var uri = "http://www.google.com";&lt;BR /&gt;var response = client.GetAsync(uri);&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;SHAHRULRIZAL SAID&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Sun, 23 Aug 2020 14:29:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Rest-API-Call-407-Authentication-required/m-p/65695#M18300</guid>
      <dc:creator>SHAHRULRIZALSAI</dc:creator>
      <dc:date>2020-08-23T14:29:00Z</dc:date>
    </item>
  </channel>
</rss>

