dns lookup for reverse proxy

Tsai Li Ming <[email protected]> Wed, 22 Sep 2004 11:07:25 +0800
Newsgroups gmane.comp.apache.mod-proxy
Message-ID <[email protected]>
Dear all,

I have the following directives in my conf file.

<ifmodule mod_proxy.c>
	proxyrequests off
         RewriteEngine On
 

         ProxyPass         /Server/  http://localhost:8081
         ProxyPassReverse  /Server/  http://localhost:8081
         RewriteRule      ^/Server$          /Server/  [P]
</IfModule>


My error log:
[Wed Sep 22 02:59:41 2004] [error] [client 192.168.1.22] proxy: DNS 
lookup failure for: example2 returned by /Server

Does a force proxy requires a dns lookup on the httpd server itself? 
When I change from a [P] to a [R], it works but our client does not 
understand a http 302 (axis client).

-Liming