Executing Orchestrator runbook using ASP.net C#
I am going to go over the code for executing Orchestrator runbook using ASP.net C#. This is helpful when you need to create a UI for your SCORCH runbooks. SCORCH's native UI the web console has limited functionality especially when you need data validation or custom controls like calendars. · Step 1: You need to start by adding a service reference to a Visual Studio project 1. In Solution Explorer , right-click the name of the project that you want to add the service to, and then click Add Service Reference . 2. In the Address box, enter the URL for the Orchestrator web service, for example http://server1.contoso.com:81/Orchestrator2012/Orchestrator.svc . If your current user account doesn’t have access to Orchestrator then you may be prompted for a username and password. 3. Click Go . 4. ...