Forum Discussion

emily_74156's avatar
emily_74156
Icon for Nimbostratus rankNimbostratus
Nov 11, 2009

How to send a request to 2 pools

In my irule, I have this code -

 

 

if { [HTTP::uri] equals "/UpdateSoapHttpPort" } {

 

pool pool_1

 

pool pool_2

 

} else {

 

pool pool_3

 

}

 

 

 

But it doesn't send the request to both pools for this uri-/UpdateSoapHttpPort, it only goes to pool_1.

 

 

How to fix it so that the req goes to both pools for that particular URI?