vote up 0 vote down star

I have a timer that is checking to see if a web page exists every 3 seconds. If the page exists it calls a method, if it doesn't, another method.

webReq = WebRequest.Create("websiteaddress")
Dim webResponse As HttpWebResponse
webMessage = ""
'Get the response. 
Try
   WebResponse = CType(webReq.GetResponse(), HttpWebResponse)
Catch ex As Exception
  webMessage = ex.Message
End Try

If I comment out this code the ticker runs just fine, but when it is active the ticker stops after 2 ticks. Any ideas? Thanks.

flag

60% accept rate
Can you provide a little more code to help identify the issue? – Kane Sep 16 at 14:58

1 Answer

vote up 0 vote down check

The answer is I never close the webResponse. Thanks!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.