3

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.

miken32
  • 42,008
  • 16
  • 111
  • 154
Mike
  • 563
  • 5
  • 15
  • 32
  • Some people vote down general questions like this one, don't take it too personally. – Roman Apr 18 '14 at 08:34
  • Well, there are those thinking "if 'no idea' includes not reading the documentation, rather do not program my friend". – TomTom Apr 18 '14 at 11:30
  • 1
    His question is valid AsterNET has no documentation to speak of – Max May 15 '15 at 15:19

1 Answers1

0

Subscribe to Manager event for example :

void manager_Events(object sender, ManagerEvent e)
{
    Debug.WriteLine("Event : " + e.GetType().Name);
}
Aleksei Zyrianov
  • 2,294
  • 1
  • 24
  • 32