error 404 with a GET request

2001-09-13 Thread Judith NATAF

I've just installed the jakarta-tomcat-3.2.3 web server.

hen I try to send my http GET request:

 GET http://localhost/index.vxml HTTP/1.0
 Accept: */*
 User-Agent: myClientHttp
 Connection: close

The tomcat web server answers : error 404

When I use Internet Explorer the url works and I get
the page I want.

Is there something missing in my request ?
Do I have missed to configure Tomcat with my proxy address for example ?

Thank you for your help.

Judith.



RE: error 404 with a GET request

2001-09-13 Thread Tony Vinayak

Are you using telnet to do the GET? If so, try something like:

telnet localhost 8080
GET /index.vxml HTTP/1.0
Press ENTER

- Tony
-Original Message-
From: Judith NATAF [mailto:[EMAIL PROTECTED]]
Sent: Thursday, September 13, 2001 1:28 PM
To: [EMAIL PROTECTED]
Subject: error 404 with a GET request 


I've just installed the jakarta-tomcat-3.2.3 web server.

hen I try to send my http GET request:

 GET http://localhost/index.vxml HTTP/1.0
 Accept: */*
 User-Agent: myClientHttp
 Connection: close

The tomcat web server answers : error 404

When I use Internet Explorer the url works and I get
the page I want.

Is there something missing in my request ?
Do I have missed to configure Tomcat with my proxy address for example ?

Thank you for your help.

Judith.




Re: error 404 with a GET request

2001-09-13 Thread David Wall

  GET http://localhost/index.vxml HTTP/1.0
  Accept: */*
  User-Agent: myClientHttp
  Connection: close

 The tomcat web server answers : error 404

The GET should not include the HTTP URL part.  You should connect to port 80
(the http:// part) of 'localhost''s IP address and do a get on just
'/index.vxml'

David