Hi,
I have a webservice that do some processing. There are around 15,000 records to process and it takes a few minutes to finish processing due to the large number of records. Is there anyway to speed up the invoking of the webservice?
//The following loop record by record and pass each record into the webservice for processing.
for(int i=0; i<15000; i++){
//Invoke webservice here
}
Best Regards
qing02051981
The melody of logic will always play out the truth. ~ Narumi Ayumu, Spiral
hmm...Kind of a good idea. I will try it out.
Thanks
just a wild guess, you mentioned about 15000 records, are you going to hit db for that number of times
if yes, that would be a not so good idea!!! if i was to do something i would use SQL-CLR integeration feature, pass datatable to sql using webservice or even directly in case just for testing.
thanks,
satish.