Re: [users@httpd] Proxing to multiple backend servers(not load balancer)

2011-04-03 Thread Sharl.Jimh.Tsin
thanks to Ben Timby for your hyperlink,it helps me very much. Best regards, Sharl.Jimh.Tsin (From China **Obviously Taiwan INCLUDED**) 2011/4/3 Ben Timby : > On Sat, Apr 2, 2011 at 2:07 AM, Raino Kolk wrote: >> My problem is how to split original request and send this parallely to two >> diffe

Re: [users@httpd] Proxing to multiple backend servers(not load balancer)

2011-04-03 Thread Ben Timby
On Sat, Apr 2, 2011 at 2:07 AM, Raino Kolk wrote: > My problem is how to split original request and send this parallely to two > different system. I don't think apache is the right tool for the job. However iptables might be. http://www.bjou.de/blog/2008/05/howto-copyteeclone-network-traffic-usi

Re: [users@httpd] Proxing to multiple backend servers(not load balancer)

2011-04-02 Thread Nick Kew
On Fri, 01 Apr 2011 23:18:02 +0300 Raino Kolk wrote: > Is this achievable in Apache? If CS returns a page with an include (e.g. SSI) generating a request to NS, would that meet your needs? -- Nick Kew Available for work, contract or permanent. http://www.webthing.com/~nick/cv.html --

Re: [users@httpd] Proxing to multiple backend servers(not load balancer)

2011-04-01 Thread Raino Kolk
On 01.04.2011 23:23, Jim Jagielski wrote: A request comes into Proxy. It then proxies that request to*both* CS and NS.*Only* the CS response will be sent to the client; the NS response will be logged... (where??, on NS or Proxy??). Hi, Logging is not problem. Logging can be done in NS or in s

Re: [users@httpd] Proxing to multiple backend servers(not load balancer)

2011-04-01 Thread Jim Jagielski
On Apr 1, 2011, at 4:18 PM, Raino Kolk wrote: > Hello, > > I have to split request and forward same request to multiple backend servers. > > For example I have CurrentSystem(CS) and NewSystem(NS) > > I need something following > > HTTP request > | > | > Proxy - - - - NS > | > | > CS > > CS r

[users@httpd] Proxing to multiple backend servers(not load balancer)

2011-04-01 Thread Raino Kolk
Hello, I have to split request and forward same request to multiple backend servers. For example I have CurrentSystem(CS) and NewSystem(NS) I need something following HTTP request | | Proxy - - - - NS | | CS CS response will be returned to client. NS response must be logged to file. Is thi