Exemple #1
0
        static void testProductStudio()
        {
            PSDataAccess  s        = new PSDataAccess("redmond.corp.microsoft.com", "Windows Server Solutions");
            List <string> products = s.LoadingProducts();

            //s.CreateNewBug("s");
            TrackingService.TrackingService ts = new TrackingService.TrackingService();
            ParameterList parameterList        = ts.GetParameters("ProcessStart");

            Console.WriteLine();
        }
Exemple #2
0
        static void testStartProcess()
        {
            TrackingService.TrackingService ts = new TrackingService.TrackingService();
            CommandInfo ci = new CommandInfo();

            ci.WFName = "SESample2TrackingWorkFlow";
            //WorkFlowInstance wfi=ts.startWorkFlow(ci);

            //ci.InstanceId = "f3875fd4-8bf2-4774-a754-928fcef66e5c";
            ci.CommandName   = "ProcessStart";
            ci.ParameterList = ts.GetParameters(ci.CommandName);
            ts.startWorkFlow(ci);



            WorkFlowInstance wfi = ts.GetWorkFlowInstance(ci.InstanceId);

            Console.WriteLine("shi");
        }
Exemple #3
0
        static void testStartProcess()
        {
            TrackingService.TrackingService ts = new TrackingService.TrackingService();
            CommandInfo ci = new CommandInfo();
            ci.WFName = "SESample2TrackingWorkFlow";
            //WorkFlowInstance wfi=ts.startWorkFlow(ci);

            //ci.InstanceId = "f3875fd4-8bf2-4774-a754-928fcef66e5c";
            ci.CommandName = "ProcessStart";
            ci.ParameterList = ts.GetParameters(ci.CommandName);
            ts.startWorkFlow(ci);

            WorkFlowInstance wfi = ts.GetWorkFlowInstance(ci.InstanceId);
            Console.WriteLine("shi");
        }
Exemple #4
0
 static void testProductStudio()
 {
     PSDataAccess s = new PSDataAccess("redmond.corp.microsoft.com", "Windows Server Solutions");
     List<string> products=s.LoadingProducts();
     //s.CreateNewBug("s");
     TrackingService.TrackingService ts = new TrackingService.TrackingService();
     ParameterList parameterList=ts.GetParameters("ProcessStart");
     Console.WriteLine();
 }