Forum Moderators: open
A "ping" so to speak between web applications is normally nothing more than a standard HTTP request; probably using the standard "GET" method, or maybe "POST".
Not sure how you open a remote URL in ASP these days, but last time I did it you could use the XMLDOM object.
Adds:
Just did a quick search; if you're on XP / Server 2003 then you should be able to use this:
[msdn.microsoft.com...]
[edited by: dmorison at 4:35 pm (utc) on Oct. 19, 2003]
Of course you're not reading XML; but you can use the open method to fire an HTTP GET off to some server (which is all you're trying to achieve). The object will just error on the response (unless the server you pinged returned an XHTML response), but you've still sent your PING parameters via the GET method so it doesn't really matter.