Hi,
Another question for you guys...
So, right now we are using SipMessage.forceTarget(...) to set static routes for SIP messages on our program, and it is working fine so far.
Now, the problem with this approach is we want to add more than one static route for the messages so that if one of them fails, it goes and try the next one in the list and so on. One way to do it was to send some ping message (OPTIONS message perhaps) to the host and wait for the answer, but since this happens asynchronously, this would add some complexity to our program that I believe might be handled internally on lower layers.
Is there a way to handle this case with resiprocate so that the failover process is done internally? If so, what would it be?