<div dir="ltr"><div class="gmail_default" style="color:#660000">The ChannelCreated event exists internally (and you can receive it with AMI).  However, the channel is created first, then it enters the stasis app -- thus the stasis app does not receive the channel created event because it's not associated with the channel yet.</div><div class="gmail_default" style="color:#660000"><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Sep 30, 2014 at 9:05 AM, Chris Bestall <span dir="ltr"><<a href="mailto:chris.bestall@gmail.com" target="_blank">chris.bestall@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">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"<div><br></div><div>I have tried to create listeners for the "ChannelCreated" event everywhere possible, but it seems this event is never fired.</div><div><br></div><div>Here is my code:</div><div><br></div><div><div>ari.start('hello');</div><div><br></div><div>ari.on( "ChannelCreated", function ( event, channel ) {</div><div>  console.log("channel created");</div><div>});</div><div><br></div><div>var channel = ari.Channel(  );</div><div><br></div><div>channel.on( "StasisStart", function ( event, channel ) {</div><div>  console.log("stasis entered");</div><div>});</div><div><br></div><div>channel.on( "ChannelCreated", function ( event, channel ) {</div><div>  console.log("channel created");</div><div>});</div><div><br></div><div>channel.originate( { endpoint: "PJSIP/6001", app : "hello" }, function (err, ch) {</div><div><br></div><div><span style="white-space:pre-wrap"> </span>if( err ){ console.log( err );  process.exit(0); }</div><div><br></div><div><span style="white-space:pre-wrap">     </span>ch.on( "ChannelCreated", function ( event, channel ) {</div><div><span style="white-space:pre-wrap"> </span>  console.log("channel created");</div><div><span style="white-space:pre-wrap">     </span>});</div><div><br></div><div>});</div></div><div><br></div><div><br></div><div>Only the stasis entered gets logged and only on endpoint answer.</div><div><br></div><div>Am I missing something? </div><div><br></div><div>Thanks,</div><div>Chris</div><div><br></div></div>
<br>_______________________________________________<br>
asterisk-app-dev mailing list<br>
<a href="mailto:asterisk-app-dev@lists.digium.com">asterisk-app-dev@lists.digium.com</a><br>
<a href="http://lists.digium.com/cgi-bin/mailman/listinfo/asterisk-app-dev" target="_blank">http://lists.digium.com/cgi-bin/mailman/listinfo/asterisk-app-dev</a><br>
<br></blockquote></div><br><br clear="all"><div><br></div>-- <br><div dir="ltr"><img alt="Digium logo" src="https://my.digium.com/images/graphics/digium_RGB_signature.gif" width="288" height="50" style="color:rgb(0,0,0);font-family:Arial,Helvetica,sans-serif;font-size:12px"><div>Scott Griepentrog<br>Digium, Inc · Software Developer<br>445 Jan Davis Drive NW · Huntsville, AL 35806 · US<br>direct/fax: +1 256 428 6239 · mobile: +1 317 507 4029<br>Check us out at: <a href="http://digium.com" target="_blank">http://digium.com</a> · <a href="http://asterisk.org" target="_blank">http://asterisk.org</a><br></div></div>
</div>