[SR-Users] serial forking kamailio - twilio

2021-07-19 Thread Filippo Graziola
Hi all, I have a question for my kamailio configuration which works like this: - INVITE arrives to kamailio - HTTP async request to API endpoint - Resume, use of rtjson module for parallel forking and loop to kamailio itself - One of the invite is "transformed" in serial forking with rtjson modul

Re: [SR-Users] serial forking kamailio - twilio

2021-07-19 Thread Alex Balashov
I think what you’re asking is: if a call is answered and hung up, can Kamailio make another call to somewhere else? If so, the answer is no; proxies just can’t do that. Forking deals with the management early-stage requests during their pendency. Once a final dispositive reply for a request is

Re: [SR-Users] serial forking kamailio - twilio

2021-07-20 Thread Filippo Graziola
Hi, thanks for answering. Based on your answer I was able to move the call sequence to Twilio instead of handling in kamailio, now I send the INVITE from kamailio to Twilio and in Twilio make a request to my own API endpoint to create the call sequence and call logs. thanks Filippo I think wha