Hey Swetha,
The basic order you would run the web services is:
- Ping (optional, checks for server ping)
- Logon
- Get_BatchJobList, passing the SessionID obtained from the Logon call above.
- Run_Batch_Job, passing the SessionID from Logon and the Batch Job information from Get_BatchJobList
- Logout, passing the SessionID from Logon
Run_Batch_Job will only allow you to run those batch jobs which have been published as a WebService in the Management Console. Get_BatchJobList will show you which Batch Jobs are available for calls via Web Services.
I also suggest testing of Data Services web services using SoapUI by SmartBear as it may give more meaningful results than C# calls during the development phase of your application ![]()
Alexei