Thanks. That looks liek what I would do if I am generating the redirection myself, and handling it directly in my script rather than passing it on to the client. However, why don't I just use the following: print $response->as_string;For my test cgi script, and using my client scriptlet, that gives me the following:
HTTP/1.1 302 Found
Connection: close
Date: Thu, 27 Sep 2012 15:43:16 GMT
Location: http://localhost:9080/cgi-bin/cgi.redirect.pl
Server: Apache/2.2.16 (Win32) mod_ssl/2.2.16 OpenSSL/0.9.8o PHP/5.3.3
Content-Type: text/plain
Client-Date: Thu, 27 Sep 2012 15:43:16 GMT
Client-Peer: 127.0.0.1:9080
Client-Response-Num: 1
Client-Transfer-Encoding: chunked
Client-Warning: Redirect loop detected (max_redirect = 0)
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" xml:lang="en-U
+S">
<head>
<title>Redirection Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1
+" />
</head>
<body>
<p><a href="http://www.google.ca">Go To Google</a></p>
</body>
</html>
If I get a redirection, the only thing I ought to do in this use case is pass it on to whatever client sent a request to my CGI script, and it looks like "print $response->as_string;" will do that: request parameters and all. It is true I need to store some data in this eventuality, but that is just an extra function call inside the conditional block that checks to see whether or not the response code is between 300 and 399 inclusive., That, and not allowing my code to follow redirections, ought to suffice. Is there any reason to expect that to break? Thanks again. Ted |