I think it would be possible right?
I would create a class library — \”SampleLibrary\”, including:
Class ToRun(parameter1)
{
…
Process p = new Process();
p.StartInfo.FileName = \”C:\\bla\\program.exe\”;
p.StartInfo.Arguments = \”\”; //The command line argument
p.Start();
}
then reference to this library in biztalk project, and in orchestration just use it directly:
SampleLibrary.ToRun(parameter1)
Any advice would be appreciated, thanks.
Merry