durusmail: quixote-users: strange location behaviour with mod_python
strange location behaviour with mod_python
2001-11-27
2001-11-27
2001-11-27
2001-11-27
2001-11-27
2001-11-27
2001-11-27
2001-11-27
2001-11-28
strange location behaviour with mod_python
Greg Ward
2001-11-27
On 27 November 2001, Ray Drew said:
> Windows XP does have a telnet but I can't find a GET command - from the
> help:-

In Unix, telnet doesn't have commands -- it just connects you to an
arbitrary TCP port (default 23, the telnet port).  GET is an HTTP
command.  Or, more accurately, an HTTP request method.  If you don't
speak HTTP, this is going to be painful.

> Commands may be abbreviated. Supported commands are:
>
> c    - close                    close current connection
> d    - display                  display operating parameters
> o    - open hostname [port]     connect to hostname (default port 23).

Ahh -- that's what you need.  Probably something like

  o localhost 80

from the server machine and

  o serverhost 80

from other machines.

Or install Cygwin and stop struggling with Microsoft's stupid tools.
;-)

        Greg


reply