I am a newbie at developing SIP applications on SIP-Servlets. I have tried developing multiparty basic SIP connections which is explained below.
- Received a call from A. (Session-1)
- Created an Invite to B. (Session-2)
- Created an Invite to C.(Session-1 in-dialog)
To create an invitation to C I used the code snippet below
SipServletRequest invite2C=sipFactory1.createRequest(sipServletRequest.getApplicationSession(),"INVITE",ad1,ad2);
I want this invite to be created in Session-3 and to be linked to other 2 sessions. Is there a possible scenario in Sip Servlets to do this? Kindly guide.