Back to Index

 

Server Component Class: CRFramework.VISControls.VISServerControl

RunJob(JobName As System.String, AppDomainName As System.String)

The RunJob method sends a request to the BlueSky Integration Studio Server to run the specified job.

[VB]

Imports CRFramework.VISControls

Dim VIS As VISServerControl

 

VIS = New VISServerControl()

 

VIS.UserName = "administrator"

VIS.Password = "manager"

VIS.ServerName = "localhost"

 

VIS.Connect()

 

VIS.RunJob("myJob", "SharedDomain")

[C#]

using CRFramework.VISControls;

VISServerControl VIS;

 

VIS = new VISServerControl();

 

VIS.UserName = "administrator";

VIS.Password = "manager";

VIS.ServerName = "localhost";

 

VIS.Connect();

 

VIS.RunJob("myJob", "SharedDomain");

 


© 2003 - 2007 Relational Solutions, Inc. - All rights reserved