cancel
Showing results for 
Search instead for 
Did you mean: 

Collection in Environment Variables?

Sri_Krishna_Cha
Level 5
Hi All-   I have a requirement of running the same process for different environments (URL's) and at the moment I am passing a single URL through Environment variables and passing this value at run time. But now I want to have different URL's scheduled so that they will perform the healthchecks. Any suggestions?
3 REPLIES 3

MelissaSuarez_G
Level 6
You can use work queues. The basic idea would be to populate the work queue, assigning one URL to each item in the work queue. Later in your process, you could retrieve those items (URL) depending by tag or deferring time. This is the work queues guide: https://portal.blueprism.com/system/files/2017-09/Work%20Queues%20Guide.pdf  

John__Carter
Staff
Staff
Join your URLs together as a CSV text like this www.site1.com,www.site2.com,www.site3.com and then use the Split function of the string utility to convert that to a collection.

Sri_Krishna_Cha
Level 5
Yes that's the way I have implemented.  Thank you both anyways.