TechyGuy99
TechyGuy99
same thing i am wondering about. I have ENVIRONMENT Task, have to pass its setting to HttpGet task. How does that work?
> If you are using custom tasks you can programmatically pass data with Shared Memory or read files, here is link to docs how to read files in the next...
Ok, so i want to make a wf that based on a rest variable value, triggers a specific activity. is there a way to do that and example? Seems like...
> For the another question I'm not quite understand what is "rest input". If you want to make a request and execute some specific task based on response, you can...
> > > For the another question I'm not quite understand what is "rest input". If you want to make a request and execute some specific task based on response,...
I ended up writting a function that checks for rest, then local, then settings when a task runs. Clean as i can set variables at workflow level or get some...
@shaibarlev public static string GetWorkflowVariableValue(this Wexflow.Core.Task task, string variableName, string defaultValue = null) { if (task == null) throw new ArgumentException("Null task"); var workflow = task.Workflow; if (workflow == null)...
I tried adding host.UserWindowsService() to code, did not work for me.