25-11-20 11:16 AM
25-11-20 01:28 PM
" /createqueue """ & [Key Field] & """ " & [Running?] & " " & [Max Attempts] & " /queuename """ & [Queue Name] & """"&" /sso" &" /dbconname ""YourEnvironmentName"""
Alternatively you can use a C# code stage to run the command
try
{
Success = true;
System.Diagnostics.Process tmpProc = new System.Diagnostics.Process();
tmpProc.StartInfo.UseShellExecute = false;
tmpProc.StartInfo.CreateNoWindow = true;
tmpProc.StartInfo.FileName = File_Path;
tmpProc.StartInfo.Arguments = Parameters;
tmpProc.StartInfo.WorkingDirectory = Working_Directory;
tmpProc.StartInfo.RedirectStandardError = true;
tmpProc.StartInfo.RedirectStandardOutput = true;
tmpProc.Start();
using (System.IO.StreamReader SR1 = tmpProc.StandardOutput)
{
OutText = SR1.ReadToEnd();
}
using (System.IO.StreamReader SR2 = tmpProc.StandardError)
{
Error_Text = SR2.ReadToEnd();
}
tmpProc.WaitForExit();
Exit_Code = tmpProc.ExitCode;
}
catch (Exception ex)
{
Error_Text = ex.Message;
OutText = "";
Success = false;
Exit_Code = -1;
}
------------------------------
Harshit Rawat
------------------------------
25-11-20 02:06 PM
25-11-20 02:32 PM
25-11-20 02:54 PM