Hi folks,
Been working w/ Asterisk for a little while, but never used Transfer() (SIP REFER).
I have a call coming in directly from a VoIP provider. Call terminates on Asterisk box.
Transfer() works fine if I do this (simplified example with key info redacted):
exten => 1234,1,Noop(Test of TRANSFER capability)
exten => 1234,n,Wait(1.0)
exten => 1234,n,Transfer(770xxxxxxx@xxx.xxx.xxx.xxx)
exten => 1234,n,Noop(TRANSFERSTATUS is ${TRANSFERSTATUS})
I get SUCCESS.
However, if I Answer() the call, I get FAILURE:
exten => 1234,1,Noop(Test of TRANSFER capability)
exten => 1234,n,Answer(1000)
exten => 1234,n,Transfer(770xxxxxxx@xxx.xxx.xxx.xxx)
exten => 1234,n,Noop(TRANSFERSTATUS is ${TRANSFERSTATUS})
What I need:
Party A calls Asterisk (who is Party B in this example)
Party B answers and some things get done, interacts with Party A, etc.
Party B wants to push the call back into the cloud to Party C and initiates a Transfer()
Any help woiuld get appreciated.