ARI - ChannelCreated event

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



I'm using the NodeJS ARI library with Asterisk 12.  In the examples I see the use of "StasisStart" event for when a call is originated, but none for "ChannelCreated"

I have tried to create listeners for the "ChannelCreated" event everywhere possible, but it seems this event is never fired.

Here is my code:

ari.start('hello');

ari.on( "ChannelCreated", function ( event, channel ) {
  console.log("channel created");
});

var channel = ari.Channel(  );

channel.on( "StasisStart", function ( event, channel ) {
  console.log("stasis entered");
});

channel.on( "ChannelCreated", function ( event, channel ) {
  console.log("channel created");
});

channel.originate( { endpoint: "PJSIP/6001", app : "hello" }, function (err, ch) {

if( err ){ console.log( err );  process.exit(0); }

ch.on( "ChannelCreated", function ( event, channel ) {
 console.log("channel created");
});

});


Only the stasis entered gets logged and only on endpoint answer.

Am I missing something? 

Thanks,
Chris

_______________________________________________
asterisk-app-dev mailing list
asterisk-app-dev@xxxxxxxxxxxxxxxx
http://lists.digium.com/cgi-bin/mailman/listinfo/asterisk-app-dev

[Index of Archives]     [Asterisk SS7]     [Asterisk Announcements]     [Asterisk Users]     [PJ SIP]     [Linux ARM Kernel]     [Linux ARM]     [Linux Omap]     [Fedora ARM]     [IETF Annouce]     [Security]     [Bugtraq]     [Linux]     [Linux OMAP]     [Linux MIPS]     [ECOS]     [Linux API]

  Powered by Linux