L
LS
Hi Guys,
I'm building a spider application for our intranet and have problems making
webrequests.
I spin of 10 threads, they all do the same code, a webrequest and processing
of the page.
This is the code of the webrequest:
--------------------------------------------------------
req = HttpWebRequest.Create(myRSS.RSSLink)
req.UserAgent = "Mozilla/6.0 (MSIE 6.1; Windows NT 5.1
"
req.MaximumAutomaticRedirections = 20
req.Timeout = 10000
req.KeepAlive = False
res = req.GetResponse
I'm building a spider application for our intranet and have problems making
webrequests.
I spin of 10 threads, they all do the same code, a webrequest and processing
of the page.
This is the code of the webrequest:
--------------------------------------------------------
req = HttpWebRequest.Create(myRSS.RSSLink)
req.UserAgent = "Mozilla/6.0 (MSIE 6.1; Windows NT 5.1
"req.MaximumAutomaticRedirections = 20
req.Timeout = 10000
req.KeepAlive = False
res = req.GetResponse