On Tue, 17 Oct 2000, Derek Martin wrote:

> Nope, it's a form.  The arguments that are given as a result of the form
> are very specific and can not be "bogus" or the program in the back-end
> (an add-host utility) will not work.
> 
> Not only that, but the actual program DOES work when he runs it, i.e. the
> host is added and our group receives mail that it was added.  However, he
> gets no output and is asked to save the file.

Try it with telnet, and then post the results. For example, to test the url

    http://webserver/cgi-bin/foo.pl?param1=value1&param2=value2

Connect to the web server on port 80:

    telnet webserver 80

The server responds with:

    Connected to webserver.
    Escape character is '^]'.

Type the path to the url, followed by a blank line:

    GET /cgi-bin/foo.pl?param1=value1&param2=value2 HTTP/1.0

The server responds with:

    ...(server generated headers)...
    Content-type: text/html

    <html>
    ....
    </html>
    Connection closed by foreign host.

Check the server-generated headers and verify the presence of the
Content-type: header.

--
John Abreau / Executive Director, Boston Linux & Unix 
ICQ#28611923 / AIM abreauj / Email [EMAIL PROTECTED]


**********************************************************
To unsubscribe from this list, send mail to
[EMAIL PROTECTED] with the following text in the
*body* (*not* the subject line) of the letter:
unsubscribe gnhlug
**********************************************************

Reply via email to