Use the Windows Task Scheduler (or any scheduler) to run a .vbs (VBScript) file, i.e., containing the following code:
<% @LANGUAGE=VBSCRIPT %><% Option Explicit %><!-- #include file="asptearinclude.asp" --><html><head> <title>Simple SSL</title></head><body bgcolor=#ffffff>
<%Dim xObj, strResult, bErrors
' create the objectSet xobj = CreateObject("SOFTWING.ASP
On Error Resume Next
' do a simple SSL get (assumes CA is known, and CN is OK)strResult = xobj.Retrieve("https://www
bErrors = HandleError()
If Not bErrors Then
Response.Write "SSL document was retrieved successfully!"
End If%>
</body></html>
AspTear is here: http://www.alphasierrapapa
and documented (incl. managing client certificates) at: http://www.alphasierrapapa
Main Topics
Browse All Topics





by: dgorinPosted on 2001-05-30 at 17:12:21ID: 6139581
A few ideas
1. Use a host that provides a scheduler, like www.crystaltech.com.
2. Get, or write, a server component to run a page on a timer.
3. Have the server AT or task scheduler run a process that accesses your page.
4. Use a client-side program that calls your page based on the client side scheduler.