Return-Path: Delivered-To: new-httpd-archive@hyperreal.org Received: (qmail 26936 invoked by uid 6000); 3 Mar 1999 04:07:53 -0000 Received: (qmail 26927 invoked from network); 3 Mar 1999 04:07:51 -0000 Received: from smtp2.teleport.com (192.108.254.20) by taz.hyperreal.org with SMTP; 3 Mar 1999 04:07:51 -0000 Received: (qmail 5229 invoked from network); 3 Mar 1999 04:07:41 -0000 Received: from user2.teleport.com (reliant@192.108.254.12) by smtp2.teleport.com with SMTP; 3 Mar 1999 04:07:41 -0000 Received: (from reliant@localhost) by user2.teleport.com (8.8.7/8.8.4) id UAA07226; Tue, 2 Mar 1999 20:07:41 -0800 (PST) Date: Tue, 2 Mar 1999 20:07:41 -0800 (PST) Message-Id: <199903030407.UAA07226@user2.teleport.com> To: libwww-perl@ics.uci.edu, new-httpd@apache.org Subject: 501 Errors From Apache / libwww-perl Cc: chaz@reliant.com From: "Charles Sliger" Sender: new-httpd-owner@apache.org Precedence: bulk Reply-To: new-httpd@apache.org Perl5.005_02 + libwww-perl + my code When I build my test suite on a Solaris x86 system using the GNU tools, it works OK. When I build it on a Sequent Dynix/ptx system, I get the following problem. Anyone have a clue as to what might be going on here? Is the library sensitive about the toolset used to build it? Does anyone have experience with Apache/Perl on Dynix? -chaz chaz@reliant.com Here is the message I get on the console: PR 501 (Not Implemented) Protocol scheme 'http' is not supported Here is the code that is making the request: $r = &http_fetch("GET", "/test.html"); Here is the routing that is using the library: sub http_fetch { my ($method, $url) = @_; my ($ua, $headers, $request, $response); #-------------------------------------------------- # #-------------------------------------------------- $ua = new av::UA; $ua->timeout(20); $url = new URI::URL("http://localhost:12345$url"); $headers = new HTTP::Headers; $request = new HTTP::Request($method, $url, $headers); $response = $ua->request($request); return $response; }