If all goes well, the new weblogs.com should automatically be 'pinged' when I save this entry, indicating latest update...
Yay, it worked! I simply execute the following command along with the MySQL INSERT statement (haven't yet figured out all that XML-RPC stuff):
$ping = file('http://newhome.weblogs.com/pingSiteForm?name=milov.nl&url=http://milov.nl/');
Sub pingWeblogs(name, url)
Dim objXML
Dim strURL
strURL = "http://newhome.weblogs.com/pingSiteForm "
strURL = strURL & "?name=" & name
strURL = strURL & "&url=" & Server.URLEncode(url)
Set objXML = Server.CreateObject("MSXML2.ServerXMLHTTP")
objXML.Open "GET", strURL, False
objXML.Send
Set objXML = Nothing
End Sub
pingWeblogs("TastyLog", "http://www.tastylog.com/ ")
there's also a semicolon after the first strURL line as well. no idea why.
test: http://www.semicolon.com/
test3: 'http://www.semicolon.com/ '
http://www.yaysoft.com/pingweblogs.php