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

Hi, maybe You should try GET /TestApp HTTP/1.1

/Lakris

or Try
GET /TestApp HTTP/1.0

Now, I am getting request time out error.

GET /TestApp HTTP/1.1
HTTP/1.1 408 Request Timeout
Connection: Close
Content-Length: 0

Did You try

as bill.zheng said?

Well, I got it work using wget..Thanks for your suggestions..