Hi, I am trying to configure mod_proxy. I want Apache to be the proxy server. There is a client x which talks to Apache and Apache in turn passes on this request to other client y. The client y responds to Apache and in turn should send the response to client x. Suppose, client y runs on port 9999
I configured the httpd.conf like this: <IfModule mod_proxy.c> ProxyRequests Off </IfModule> ProxyPass / http://localhost:9999/ ProxyPassReverse / http://localhost:9999/ But when the client x tries to connect client y thru Apache it doesnt not get a response. client x says No response from the server. Can somebody please help me configure the httpd. Thanks in advance. Thanks & Regards, Aruna.