After you’ve added the web reference to your project, you can create a web service instance and download or update order information.
Remember that all web service methods require authentication: you have to specify your Sellercloud/CoreWebAdmin email and password in an AuthHeader. Any authentication-related exceptions are thrown by the service when you call a method.
It is also suggested to set a timeout value of 5 minutes to give room for any time-consuming operations.
Dim sellerCloud As New SC.SCService sellerCloud.Timeout = 5 * 60 * 1000 // 5 minutes in milliseconds sellerCloud.AuthHeaderValue = New SC.AuthHeader sellerCloud.AuthHeaderValue.UserName = "user@email.com" sellerCloud.AuthHeaderValue.Password = "password
Please see the attached document for more detailed information about how to use the Sellercloud webservices.