B
Bob
I've got to use the http protocol to communicate with another machine as
part of a Web Service using HttpWebRequest and HttpWebResponse. As such,
timing is important.
When I create the HttpWebRequest as shown in the help example:
Dim myReq As HttpWebRequest = _
WebRequest.Create("http://www.contoso.com/")
does this actually go out and try and establish some sort of connection
with the remote site? If so, I'll need to spin this off in a thread so I
can create a timeout.
Thanks,
Bob
part of a Web Service using HttpWebRequest and HttpWebResponse. As such,
timing is important.
When I create the HttpWebRequest as shown in the help example:
Dim myReq As HttpWebRequest = _
WebRequest.Create("http://www.contoso.com/")
does this actually go out and try and establish some sort of connection
with the remote site? If so, I'll need to spin this off in a thread so I
can create a timeout.
Thanks,
Bob