I am using Reframework and in main, the variable Config, I want to assign to the argument in_OrchestratorQueueName, but this on is empty.
In main.xaml, if I log message Config(“OrchestratorQueueName”) it gives me the correct message. But if I use an assign activity : Config(“OrchestratorQueueName”) = in_OrchestratorQueueName it is not working. This one is empty.
Another point of note is that ReFrameqork’s input arguments are assigned at startup of your status machine. So, before reading your Config in Init state, so blank! If you want to store the queue name, create a variable and assign it after initialization of Config in your init state.
It seems we both misread the question. If you want to assign Config(“OrchestratorQueueName”) a value, simply use it in an assign statement.
If you want to print the value of it, you will need to use .ToString.
Could you elaborate on your issue, if you haven’t edited the default code in the template it should work as expected when you apply a value for the input argument in_OrchestratorQueueName, otherwise the code will not be ran and whatever value is read from the Config excel sheet in InitAllSettings.xaml will be present.
Hey, was just going through this thread and got even more confused with regards to the in_OrchestratorQueueName argument. Why exactly is this used in the RE-Framework as I have always ignored this argument because the queue name is always derived from config file.
If you or someone could please help me on this.