Hi!
I am trying to use Veristand .NET APIs to connect and deploy to a target systems (namely, a PharLap machine). I started from the tutorial C# Walkthrough: Opening and Running a Project. This is what I have:
var path = "I:\\vicrt\\demo_veristand\\vicrt_demo_abs.nivssdf";
Factory factory = new Factory();
IWorkspace2 workspace = factory.GetIWorkspace2("localhost");
workspace.ConnectToSystem(systemDefinitionPath, true, 60000);
However, the call to ConnectToSystem causes a WebDAV Login dialog to appear asking to insert username and password. I would like to automate also the authentication process because the application I am developing needs to be run in an unattended fashion.
Question: How can I programmatically pass username and password to the Veristand API?
Thanks!
Ivan