I want to monitor a specific page on website
For Example I want to monitor http://mysite.com/test/
If its unable to access /test page, it shows alert. What probe I would be needing?
I want to monitor a specific page on website
For Example I want to monitor http://mysite.com/test/
If its unable to access /test page, it shows alert. What probe I would be needing?
http probe.
check the source for the http code, perhaps you can copy it to check the other page, the def source send an http get command and waits for a reply, and then disconnects
the default send command is
HEAD / HTTP/1.0\r\n\r\n
and then it has an expected return of
^HTTP/1\.
hope this helps.