Crypt32 errors?

R

Rob R. Ainscough

I have an ASP.NET web application running on a Win2K3 server. I get the
following error in the Event Viewer (Application) whenever I attempt
communicate using:

Event Type: Error
Event Source: crypt32
Event Category: None
Event ID: 8
Date: 9/19/2005
Time: 5:25:07 PM
User: N/A
Computer: SQLTESTSERVER
Description:
Failed auto update retrieval of third-party root list sequence number from:
<http://www.download.windowsupdate.com/msdownload/update/v3/static/trustedr/en/authrootseq.txt>
with error: This operation returned because the timeout period expired.


For more information, see Help and Support Center at
http://go.microsoft.com/fwlink/events.asp.

My code that seems to trigger this event:

Dim req As HttpWebRequest =
CType(WebRequest.Create(rMy.URL), HttpWebRequest)
With req
.Method = "POST"
.ContentLength = DigO.Length
.ContentType = "application/x-www-form-urlencoded"
.Timeout = 3000
End With

Dim st As Stream = req.GetRequestStream
With st
.Write(DigO, 0, DigO.Length)
.Close()
End With
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Windows XP crypt32 error 1
Crypt32 Error 1
anyone able to give me a answer on this please? 2
Slow File opening 1
crypt32 error in event viewer 4
crypt32 error in event viewer 2
What is this??: Crypt32 error in application event log 6
crypt32 6

Top