Has anyone been able to get SOAP listener to work with switchover. I have listed both servers in the XML file, but I can't get it to switch between the two automatically when I switch servers. I was wondering if anyone else had any luck with this. Here is my XML file currently. I tried putting in two rules one for each server but I get inconsistent results this way. I don't think it's supposed to be configured like that.
<FilterConfig xmlns="urn:schemas-inin-com:soapisapi-filter-config">
<ICServers>
<ICServer name="PBX1" host="FirstServer" userName="***" password="***"/>
<ICServer name="PBX2" host="SecondServer" userName="***" password="***"/>
</ICServers>
<Defaults>
<ForwardRequest server="PBX1" clientName="I3SOAPISAPI" includeTransportInfo="1" requestTimeout="30000"/>
<HTTPResponse statusCode="500" statusText="Internal Server Error" soapFaultcode="Client.SOAPAction" soapFaultstring="The specified method is not supported!"/>
</Defaults>
<Rules>
<Rule soapAction= "http://ivr.tollroads.com/I3WaitTime">
<ForwardRequest server="PBX1" soapAction="http://ivr.tollroads.com/I3WaitTime"/>
</Rule>
<Rule soapAction= "http://ivr.tollroads.com/I3WaitTime">
<ForwardRequest server="PBX2" soapAction="http://ivr.tollroads.com/I3WaitTime"/>
</Rule>
<Rule>
<HTTPResponse/>
</Rule>
</Rules>
</FilterConfig>