my $res = HTTP::Response->new($status_code); $res->content_type('text/html'); #The following $content contains data within saved file pulled from web $res->content($content); #Let's push response back to client $self->proxy()->response($res); #### $res->content_type('text/html'); #### Connection: close Date: Sat, 24 Oct 2009 02:55:24 GMT Accept-Ranges: bytes ETag: "580d7-3e3e-45861df8" Server: Apache/1.3.29 (Unix) PHP/4.3.4 Content-Length: 15934 Content-Type: image/gif Last-Modified: Mon, 18 Dec 2006 17:12:40 GMT Client-Date: Sat, 24 Oct 2009 03:48:49 GMT Client-Response-Num: 1 #### # $header_file_content contains information from raw header dump file $res->headers($header_file_content);