URL request by RMA
URL request by RMA
The possibility for "URL request" by RMA would be great for checking my websites like an external user (performance, content, ...)
-
- Posts: 27
- Joined: Mon Jan 12, 2004 7:14 am
-
- Posts: 27
- Joined: Mon Jan 12, 2004 7:14 am
Url Check by rma
A lot often the web server does not work even if door 80 answers
-
- Posts: 27
- Joined: Mon Jan 12, 2004 7:14 am
How I can convert this VbScript to TCP TEST ?
Winsock1.SendData "GET /" & "default.asp" & " HTTP/1.1" & vbCrLf
Winsock1.SendData "Accept: text/plain" & vbCrLf
Winsock1.SendData "Accept-Language: en-us" & vbCrLf
Winsock1.SendData "Accept-Encoding: gzip, deflate" & vbCrLf
Winsock1.SendData "User-Agent: Mozilla/4.0 (compatible; MSIE 5.0;"& _
"Windows 98; DigExt)" & vbCrLf
Winsock1.SendData "Host: " & "191.191.26.142" & vbCrLf
Winsock1.SendData "Connection: Keep-Alive" & vbCrLf & vbCrLf
Winsock1.SendData "GET /" & "default.asp" & " HTTP/1.1" & vbCrLf
Winsock1.SendData "Accept: text/plain" & vbCrLf
Winsock1.SendData "Accept-Language: en-us" & vbCrLf
Winsock1.SendData "Accept-Encoding: gzip, deflate" & vbCrLf
Winsock1.SendData "User-Agent: Mozilla/4.0 (compatible; MSIE 5.0;"& _
"Windows 98; DigExt)" & vbCrLf
Winsock1.SendData "Host: " & "191.191.26.142" & vbCrLf
Winsock1.SendData "Connection: Keep-Alive" & vbCrLf & vbCrLf
Use "Send data" option and string
Regards
Alex
Code: Select all
GET /default.asp HTTP/1.1%0D%0AAccept: text/plain%0D%0AAccept-Language: en-us%0D%0AAccept-Encoding: gzip, deflate%0D%0AUser-Agent: Mozilla/4.0 (compatible; MSIE 5.0;Windows 98; DigExt)%0D%0AHost: 191.191.26.142%0D%0AConnection: Keep-Alive%0D%0A%0D%0A
Alex