Managing VoIP calls via AsterNET

2.1k Views Asked by At

I am kind of newbie in VoIP programming. Let's say I have two VoIP phones connected to the same server, and I want to detect when the call fires, caller's ID, call duration, ... etc. I learned about AsterNET, but didn't find any good example to see the process.

I know that I need to connect using ManagerConnection to my server, but what to do furthermore I have no idea.

I will appreciate any idea, advice, tutorial, etc...

Thanks.

1

There are 1 best solutions below

2
On

Subscribe to Manager event for example :

void manager_Events(object sender, ManagerEvent e)
{
    Debug.WriteLine("Event : " + e.GetType().Name);
}