I am a relative newbie - first post - hope its to the correct forum...
I am attempting to poll a number of servers (approx 80) and verify the resultant return web page from each. I am expecting to see a "200 OK" returned from each.
I have played with web.page.get on port 80 and seen the data returned. All is good in as far as that is concerned. However, when I hit the site with https (port 443) I get the following result:
I am attempting to poll a number of servers (approx 80) and verify the resultant return web page from each. I am expecting to see a "200 OK" returned from each.
I have played with web.page.get on port 80 and seen the data returned. All is good in as far as that is concerned. However, when I hit the site with https (port 443) I get the following result:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"><html><head><title>400 Bad Request</title></head><body><h1>Bad Request</h1><p>Your browser sent a request that this server could not understand.<br />Reason: You're speaking plain HTTP to an SSL-enabled server port.<br />Instead use the HTTPS scheme to access this URL, please.<br /><blockquote>Hint: <a href="https://<IP>/"><b>https://<IP>/</b></a></blockquote></p><hr><address>Apache/2.0.53 (Win32) mod_jk/1.2.10 mod_ssl/2.0.53 OpenSSL/0.9.7d Server at <IP> Port 443</address></body></html>
My item is defined as: web.page.get[<IP>,call/getload,443]. I do need to use https for this application.Can anyone suggest a way to obtain the page and check for the "200 OK" message. BTW I am having the same issue with https when using web.page.regexp.FYI: I replaced the actual IP in all of the above with "<IP>"...
Comment