Return-Path: Delivered-To: apmail-httpd-users-archive@httpd.apache.org Received: (qmail 75967 invoked by uid 500); 10 Mar 2003 17:02:09 -0000 Mailing-List: contact users-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: users@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list users@httpd.apache.org Received: (qmail 75933 invoked from network); 10 Mar 2003 17:02:08 -0000 Received: from main.gmane.org (80.91.224.249) by daedalus.apache.org with SMTP; 10 Mar 2003 17:02:08 -0000 Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 18sQeY-0004NE-00 for ; Mon, 10 Mar 2003 18:01:30 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: users@httpd.apache.org Received: from news by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 18sQeY-0004N5-00 for ; Mon, 10 Mar 2003 18:01:30 +0100 From: Josh Konkol Date: Mon, 10 Mar 2003 17:01:29 +0000 (UTC) Organization: GuideOne Insurance Lines: 39 Message-ID: X-Complaints-To: usenet@main.gmane.org User-Agent: Xnews/5.04.25 Sender: news Cc: modproxy-dev@apache.org X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Subject: [users@httpd] mod_rewrite/mod_header/mod_proxy problem Dear Apache Guru's I need your help!! What I need to do is take the key:values in a cookie and turn them into http headers. Using a combination of mod_rewrite, mod_header & mod_proxy I've come up with a solution but the headers aren't being created. Here's what I have in my httpd.conf file: RewriteEngine on RewriteLog "/tmp/rewrite.log" RewriteLogLevel 9 RewriteRule ^(.*)&(.*)$ $1&$2 [S=1] RewriteRule (.*) $1&%{HTTP_COOKIE} # If there's a '; ' then there is more than one variable left RewriteRule ^(.*);.(.*)=(.*)$ $1 [E=$2:$3,N] # Now there's only one variable left RewriteRule ^(.*)&(.*)=(.*)$ $1 [E=$2:$3] RewriteRule ^(.*)&$ $1 RewriteRule ^/(.*)$ /done$1 [R] Header add sm_user "%{smuser}e" env=smuser Header add goHierId %{goHierId}e env=goHierId Header add sessionid %{sessionid}e env=sessionid Header add foo "bar" ProxyPass /doneHomeCostEstimator http://wsapp01t.guidehome.com/HomeCostEstimator ProxyPassReverse /doneHomeCostEstimator http://wsapp01t.guidehome.com/HomeCostEstimator The page I'm directing to is a .jsp which displays the set http headers and the sm_user & goHierId don't show up there. Is there any issue with setting a http header with mod_header and then proxying that request ?? Any help is appreciated !!!! Josh --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See for more info. To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org " from the digest: users-digest-unsubscribe@httpd.apache.org For additional commands, e-mail: users-help@httpd.apache.org