http error on unix command..


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users http error on unix command..
# 1  
Old 11-07-2008
http error on unix command..

Hi,

I am trying to hit an application which is listening on a specific port 2030 and is behind the firewall and get this error.

maddy>telnet adrpd011 2030

GET /TestApp

and it should give me 200 response, because the application is listening on that port.

Instead it gives me this error..Any thoughts?

HTTP/1.1 505 HTTP Version not supported
Content-Length: 0
Server: Microsoft-SQL/9.0 Microsoft-HTTPAPI/1.0
Date: Tue, 4 Nov 2008 15:44:13 GMT
Connection: close
# 2  
Old 11-07-2008
Hi, maybe You should try GET /TestApp HTTP/1.1


/Lakris
# 3  
Old 11-07-2008
or Try
GET /TestApp HTTP/1.0
# 4  
Old 11-07-2008
Now, I am getting request time out error.

GET /TestApp HTTP/1.1
HTTP/1.1 408 Request Timeout
Connection: Close
Content-Length: 0
# 5  
Old 11-07-2008
Did You try
Quote:
GET /TestApp HTTP/1.0
as bill.zheng said?
# 6  
Old 11-08-2008
Well, I got it work using wget..Thanks for your suggestions..
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

awk script to find time difference between HTTP PUT and HTTP DELETE requests in access.log

Hi, I'm trying to write a script to determine the time gap between HTTP PUT and HTTP DELETE requests in the HTTP Servers access log. Normally client will do HTTP PUT to push content e.g. file_1.txt and 21 seconds later it will do HTTP DELETE, but sometimes the time varies causing some issues... (3 Replies)
Discussion started by: Juha
3 Replies

2. Web Development

HTTP Headers Reference: HTTP Status-Codes

Hypertext Transfer Protocol -- HTTP/1.1 for Reference - HTTP Headers 10 Status Code Definitions Each Status-Code is described below, including a description of which method(s) it can follow and any metainformation required in the response. (1 Reply)
Discussion started by: Neo
1 Replies

3. Shell Programming and Scripting

sending http url through http socket programming..

hi am senthil am developing a software to send and receive SMS using HTTP connection first of all am forming a URL and sending that URL to a remote server using my Client Program i send that url through Socket(using Send() Function) if i send more than one URL one by one using the same... (4 Replies)
Discussion started by: senkerth
4 Replies

4. Programming

sending http url through http socket programming..

hi am senthil am developing a software to send and receive SMS using HTTP connection first of all am forming a URL and sending that URL to a remote server using my Client Program i send that url through Socket(using Send() Function) if i send more than one URL one by one using the same... (0 Replies)
Discussion started by: senkerth
0 Replies

5. Web Development

Http -k start Command Not found

I have Apache server installed as a package on my fedora 9 .. when i go to /etc and type the command httpd -k start It says command not found....Can anyone please tell so that i can run that command and start the server ---------- Post updated at 12:03 PM ---------- Previous update... (1 Reply)
Discussion started by: bssandeshbs
1 Replies

6. Forum Support Area for Unregistered Users & Account Problems

Access to https://www.unix.com/source?

Folks, Hope this is not a newbie question, but it might end up being that. I wanted to retrieve the source code for unix_linux_bench as directed on https://www.unix.com/linux-benchmarks/11175-instructions-linux-benchmarks.html When one clicks on the links specified for download, the browser... (1 Reply)
Discussion started by: wagdalule
1 Replies

7. UNIX for Advanced & Expert Users

http protocol from UNIX

Is there any way to access http page from UNIX command line.... eg: http://www.abc.xyz (5 Replies)
Discussion started by: bishweshwar
5 Replies

8. UNIX for Dummies Questions & Answers

unix script http request

Hi everybody, I have a *.vbs file which I want to run automatically. I want to know if there is anyway to implement the given example for e.g "http://255.255.255.55/script.vbs" what I mean is does anyone know how to make an http request from a unix script?? Thanks in advance!!!!!!!!!!! (1 Reply)
Discussion started by: arksal
1 Replies
Login or Register to Ask a Question