<?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 Hi Tacon in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Calling-a-REST-service/m-p/92481#M42261</link>
    <description>Hi Tacon
Any success on above implementation if so would you share steps</description>
    <pubDate>Mon, 16 May 2016 09:44:00 GMT</pubDate>
    <dc:creator>venkata_parvata</dc:creator>
    <dc:date>2016-05-16T09:44:00Z</dc:date>
    <item>
      <title>Calling a REST service</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Calling-a-REST-service/m-p/92480#M42260</link>
      <description>Has anyone had any success in getting Blue Prism to make calls to a RESTful service ?</description>
      <pubDate>Tue, 02 Jun 2015 12:53:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Calling-a-REST-service/m-p/92480#M42260</guid>
      <dc:creator>Graeme__Tacon</dc:creator>
      <dc:date>2015-06-02T12:53:00Z</dc:date>
    </item>
    <item>
      <title>Hi Tacon</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Calling-a-REST-service/m-p/92481#M42261</link>
      <description>Hi Tacon
Any success on above implementation if so would you share steps</description>
      <pubDate>Mon, 16 May 2016 09:44:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Calling-a-REST-service/m-p/92481#M42261</guid>
      <dc:creator>venkata_parvata</dc:creator>
      <dc:date>2016-05-16T09:44:00Z</dc:date>
    </item>
    <item>
      <title>Does Restful webservices</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Calling-a-REST-service/m-p/92482#M42262</link>
      <description>Does Restful webservices support for BluePrism 4.2 Version , Any articles ?</description>
      <pubDate>Wed, 01 Jun 2016 10:54:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Calling-a-REST-service/m-p/92482#M42262</guid>
      <dc:creator>venkata_parvata</dc:creator>
      <dc:date>2016-06-01T10:54:00Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Calling-a-REST-service/m-p/92483#M42263</link>
      <description>Hi,
Yes, we have managed to call a RESTful service with a code stage, xml below.
Graeme

  
    
      2ba17e26-49eb-43ed-84dd-c40e67e990b0
      Application
      Application
      unknown
      False
    
  
  
    0
    0
    1
  
  
  
  
    
    
    -195
    -105
    150
    90
    
  
  
    
    
    
    15
    15
    60
    30
    
    
      
      
    
  
  
    
    
    
    15
    -45
    60
    30
    
    
      
      
      
      
      
      
      
    
    
      
      
    
    482b3ff7-096a-4713-a8c9-0c57f38f2cf9
    
If useProxy Then
	Dim proxyURI As New Uri(proxyURL)
	Dim proxy As New WebProxy(proxyURI, True)
	Dim proxyCred As New NetworkCredential(Username, Password)
	Dim credCache As New CredentialCache()
	credCache.Add(proxyURI, AuthorizationType, proxyCred)
	proxy.UseDefaultCredentials = False
	proxy.Credentials = credCache
	request.Proxy = proxy
Else
	If Username"""" Then
		Dim Authorization As String = AuthorizationType &amp;amp; "" username="" &amp;amp; Username &amp;amp; "",password="" &amp;amp; Password
		request.Headers(""Authorization"") = Authorization.ToString
	End If
End If
request.Method = ""POST""
request.ContentType = ""application/json""
Dim requestStream As IO.Stream = request.GetRequestStream()
Using sw As New IO.StreamWriter(requestStream, New Text.UTF8Encoding(False))
  sw.Write(json)
End Using
Using response As WebResponse = request.GetResponse()
	Dim httpResponse As HttpWebResponse = CType(response, HttpWebResponse)
    ResponseCode = httpResponse.StatusCode
	Dim responseStream As IO.Stream = response.GetResponseStream()
	Dim sr As New IO.StreamReader(responseStream)
	resultData = sr.ReadToEnd()
End Using
]]&amp;gt;
  
  
    
    
    -195
    240
    120
    30
    
    text
    
    
    
  
  
    
    
    -195
    15
    120
    30
    
    text
    
    
    
  
  
    
    
    
    -30
    -75
    180
    60
    
  
  
    
    
    
    105
    -45
    60
    30
    
    5edf7488-2c1a-4d9b-acc3-5ad2c079f0fe
  
  
    
    
    210
    -45
    60
    30
    
    
  
  
    
    
    
    15
    -105
    60
    30
    
    
      
      
      
      
      
      
      
    
    a7992b7c-0659-49b6-ae90-99e7c890979a
  
  
    
    
    -195
    -15
    120
    30
    
    text
    
    
    
  
  
    
    
    -195
    135
    120
    30
    
    password
    
    
    
    
  
  
    
    
    -195
    105
    120
    30
    
    text
    
    
    
  
  
    
    
    -195
    75
    120
    30
    
    text
    
    
    
  
  
    
    
    -195
    45
    120
    30
    
    flag
    False
    
    
  
  
    
    
    -195
    270
    120
    30
    
    number
    
    
    
  
  
    
    
    -195
    165
    120
    30
    
    text
    Basic
    
    
  
  
    
    
    
    -270
    -45
    150
    240
    
  
  
    
    
    
    -270
    210
    150
    90</description>
      <pubDate>Tue, 21 Jun 2016 14:51:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Calling-a-REST-service/m-p/92483#M42263</guid>
      <dc:creator>Graeme__Tacon</dc:creator>
      <dc:date>2016-06-21T14:51:00Z</dc:date>
    </item>
    <item>
      <title>Does this require any extra</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Calling-a-REST-service/m-p/92484#M42264</link>
      <description>Does this require any extra DLLs or Namespaces?</description>
      <pubDate>Wed, 25 Jan 2017 17:02:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Calling-a-REST-service/m-p/92484#M42264</guid>
      <dc:creator>YogitaKulkarni</dc:creator>
      <dc:date>2017-01-25T17:02:00Z</dc:date>
    </item>
  </channel>
</rss>

