RE: Transfering Headers... w/ miltiple 'Set_Cookie'

2000-12-22 Thread Chris Strom
You might try: $headers->scan(sub { $r->headers_out->add(@_); print STDERR join("=>", @_), "\n" }); The STDERR will output the seen headers to your logs. > the problem is that there are many Set-Cookie instructions > in $headers but mod_perl seems to use a tied hash t

Transfering Headers... w/ miltiple 'Set_Cookie'

2000-12-21 Thread Jason Leidigh
Hi,   I have a problem with a "procy" I'm writing.  The proxy mut pass the headers from the response to the response that the Apache will return to the client.  I am using the following method as read from The Egal Book (Writing Apache Modules)       $headers->scan(sub {