i have a call to a webservice that i need to attempt to load test without using vb.net 2005 express. the existing code is:
Dim cws As New CategoryWebServices.CategoryWebServices
Dim cred As New System.Net.NetworkCredential
cws.Credentials = New Net.NetworkCredential("admin", "admin")
Dim dto() As CategoryWebServices.CategoryDTO
dto = cws.getCategories()
console.writeline(dto.length)
what i would like to do is to start a number of simultaneous calls to getcategories. how would i do this using threads?
thanks
Dim cws As New CategoryWebServices.CategoryWebServices
Dim cred As New System.Net.NetworkCredential
cws.Credentials = New Net.NetworkCredential("admin", "admin")
Dim dto() As CategoryWebServices.CategoryDTO
dto = cws.getCategories()
console.writeline(dto.length)
what i would like to do is to start a number of simultaneous calls to getcategories. how would i do this using threads?
thanks