Can you tell me the difference of the URL test and the http test?
I want to know the most important one.
URL test and http test
-
- Posts: 2832
- Joined: Tue May 16, 2006 4:41 am
- Contact:
"URL" test method allows to check HTTP, HTTPS, FTP, Gopher services, while "HTTP" test method is able to monitor HTTP servers only. "URL" test method looks more powerfull, however, it uses wininet.dll (part of Internet Explorer), so we have to rely on Microsoft. "HTTP" test method utilizes our own code and can be used for more precise monitoring, e.g. send "HEADER" HTTP requests.
Regards,
Max
Regards,
Max
-
- Posts: 2832
- Joined: Tue May 16, 2006 4:41 am
- Contact:
Difference is in implementation of HTTP protocol routine. Both methods implement HTTP protocol, so in general case, result should be the same. But "HTTP" test methods uses our own code library, while "URL" test method utilizes wininet.dll API calls, like Internet Explorer. Using "HTTP" test method you can avoid any problems related to IE's bugs (of course we can make mistakes as well but we always are able to fix our own mistakes
.
Regards,
Max

Regards,
Max
ok
So sorry that you can't understand my meaning
maybe my English is too poor
in another word the http test with get method but without the option of download image and nested frames only download the source code of the certain website?
however the header only test the http return code .
Am I right ?
sorry for you to spend time understand my rubbishing words.
best regards
So sorry that you can't understand my meaning

maybe my English is too poor

in another word the http test with get method but without the option of download image and nested frames only download the source code of the certain website?
however the header only test the http return code .
Am I right ?
sorry for you to spend time understand my rubbishing words.
best regards
Correctin another word the http test with get method but without the option of download image and nested frames only download the source code of the certain website
Not just code, it retrieves HTTP header, likehowever the header only test the http return code
===============
HTTP/1.1 200 OK
Date: Wed, 07 Jan 2009 17:09:18 GMT
Server: Apache/2.2.9 (Unix) mod_ssl/2.2.9 OpenSSL/0.9.8b
Last-Modified: Wed, 09 Apr 2008 09:01:00 GMT
Accept-Ranges: bytes
Content-Length: 1678
Connection: close
Content-Type: text/html
===============
However test status depends on HTTP code
Regards
Alex