[Asterisk-java-users] Unsubscribe
Brought to you by:
srt
From: <nik...@gm...> - 2015-02-17 10:54:33
|
Исходное сообщение От: ast...@li... Отправлено: вторник, 17 февраля 2015 г., 13:19 Кому: ast...@li... Ответить: ast...@li... Тема: Asterisk-java-users Digest, Vol 100, Issue 1 Send Asterisk-java-users mailing list submissions to ast...@li... To subscribe or unsubscribe via the World Wide Web, visit https://lists.sourceforge.net/lists/listinfo/asterisk-java-users or, via email, send a message with subject or body 'help' to ast...@li... You can reach the person managing the list at ast...@li... When replying, please edit your Subject line so it is more specific than "Re: Contents of Asterisk-java-users digest..." Today's Topics: 1. Help on how to play a audio file in Asterisk(static, located on server side).. (Blagoja Chavkoski) 2. Re: Help on how to play a audio file in Asterisk(static, located on server side).. (?????? ??????) 3. Re: Help on how to play a audio file in Asterisk(static, located on server side).. (Zoumana TRAORE) 4. Next release? (connuser1 connuser1) 5. Re: Next release? (Zoumana TRAORE) ---------------------------------------------------------------------- Message: 1 Date: Tue, 27 Jan 2015 19:18:13 +0100 From: Blagoja Chavkoski <ba...@gm...> Subject: [Asterisk-java-users] Help on how to play a audio file in Asterisk(static, located on server side).. To: ast...@li... Message-ID: <CAGX57m61HD_AX76ji0LP=NnoQUNKKbO2FrwS3=iuu...@ma...> Content-Type: text/plain; charset="utf-8" Hi all, I want to place a call where I just play one playback file and hangup. Meaning to use the java api from where I make a action to tell Asterisk to place call, and to playback some file which already exists on Asterisk server. Is this possible to be done? Do I have to use the agi protocol for this or can be done with the manager api? Tnx for any help! Regards Blaze -------------- next part -------------- An HTML attachment was scrubbed... ------------------------------ Message: 2 Date: Tue, 27 Jan 2015 22:41:47 +0400 From: ?????? ?????? <bui...@gm...> Subject: Re: [Asterisk-java-users] Help on how to play a audio file in Asterisk(static, located on server side).. To: ast...@li... Message-ID: <CAH...@ma...> Content-Type: text/plain; charset="utf-8" Hi, Blagoja! I'm not sure, but i would like to try to listen to the NewExtenEvent using ManagerEventListener. 2015-01-27 21:18 GMT+03:00 Blagoja Chavkoski <ba...@gm...>: > Hi all, > > I want to place a call where I just play one playback file and hangup. > Meaning to use the java api from where I make a action to tell Asterisk to > place call, and to playback some file which already exists on Asterisk > server. > > Is this possible to be done? Do I have to use the agi protocol for this or > can be done with the manager api? > > Tnx for any help! > > Regards > Blaze > > > ------------------------------------------------------------------------------ > Dive into the World of Parallel Programming. The Go Parallel Website, > sponsored by Intel and developed in partnership with Slashdot Media, is > your > hub for all things parallel software development, from weekly thought > leadership blogs to news, videos, case studies, tutorials and more. Take a > look and join the conversation now. http://goparallel.sourceforge.net/ > _______________________________________________ > Asterisk-java-users mailing list > Ast...@li... > https://lists.sourceforge.net/lists/listinfo/asterisk-java-users > > -------------- next part -------------- An HTML attachment was scrubbed... ------------------------------ Message: 3 Date: Tue, 27 Jan 2015 22:26:17 +0100 From: Zoumana TRAORE <zou...@gm...> Subject: Re: [Asterisk-java-users] Help on how to play a audio file in Asterisk(static, located on server side).. To: "ast...@li..." <ast...@li...> Message-ID: <CAD...@ma...> Content-Type: text/plain; charset="utf-8" Hello, You can achieve this through AMI OriginateAction which will trigger an outgoing call that fall back inside your extension in your code: OriginateAction originateAction = new OriginateAction(); originateAction.setChannel("SIP/trunk/01.....");originateAction.setContext("outgoing");originateAction.setExten(11111);originateAction.setVariable("AUDIO_TO_PLAY_VARIABLE", welcome-audio); in your diaplan: [outgoing]exten => 11111,1,Answer exten => 11111,2,Playback(${AUDIO_TO_PLAY_VARIABLE}) Regards, Zoumana *---* *Zoumana TRAORE* 2015-01-27 19:18 GMT+01:00 Blagoja Chavkoski <ba...@gm...>: > Hi all, > > I want to place a call where I just play one playback file and hangup. > Meaning to use the java api from where I make a action to tell Asterisk to > place call, and to playback some file which already exists on Asterisk > server. > > Is this possible to be done? Do I have to use the agi protocol for this or > can be done with the manager api? > > Tnx for any help! > > Regards > Blaze > > > ------------------------------------------------------------------------------ > Dive into the World of Parallel Programming. The Go Parallel Website, > sponsored by Intel and developed in partnership with Slashdot Media, is > your > hub for all things parallel software development, from weekly thought > leadership blogs to news, videos, case studies, tutorials and more. Take a > look and join the conversation now. http://goparallel.sourceforge.net/ > _______________________________________________ > Asterisk-java-users mailing list > Ast...@li... > https://lists.sourceforge.net/lists/listinfo/asterisk-java-users > > -------------- next part -------------- An HTML attachment was scrubbed... ------------------------------ Message: 4 Date: Tue, 17 Feb 2015 15:41:38 +0530 From: connuser1 connuser1 <con...@gm...> Subject: [Asterisk-java-users] Next release? To: ast...@li... Message-ID: <CAD...@ma...> Content-Type: text/plain; charset="utf-8" Hi When is the next release of Astrisk java planned? As I understand, 1.0.0.M3 was the last stable release way back in 2009. I think quite a few changes have got in after that. Are there any plans to release them. My project extensively uses Asterisk java and I would be more comfortable when building on top of a released version. Thanks -------------- next part -------------- An HTML attachment was scrubbed... ------------------------------ Message: 5 Date: Tue, 17 Feb 2015 11:19:03 +0100 From: Zoumana TRAORE <zou...@gm...> Subject: Re: [Asterisk-java-users] Next release? To: "ast...@li..." <ast...@li...> Message-ID: <CADJn3eTQsiatGZAohL17P=bFs...@ma...> Content-Type: text/plain; charset="utf-8" Hi, I hope someone will correct me, but the project seems not to be heavily maintained for the last passed years, Stephan, the original developer as made quite an impressive job to get his baby at this stage but he is probably not working a lot on it early. If bunch of guys are open to do this, i will surely be part of the adventure. In few words, no release plan as far i know. Regards, *---* *Zoumana TRAORE* 2015-02-17 11:11 GMT+01:00 connuser1 connuser1 <con...@gm...>: > Hi > > When is the next release of Astrisk java planned? As I understand, > 1.0.0.M3 was the last stable release way back in 2009. I think quite a few > changes have got in after that. Are there any plans to release them. My > project extensively uses Asterisk java and I would be more comfortable when > building on top of a released version. > > Thanks > > > ------------------------------------------------------------------------------ > Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server > from Actuate! Instantly Supercharge Your Business Reports and Dashboards > with Interactivity, Sharing, Native Excel Exports, App Integration & more > Get technology previously reserved for billion-dollar corporations, FREE > > http://pubads.g.doubleclick.net/gampad/clk?id=190641631&iu=/4140/ostg.clktrk > _______________________________________________ > Asterisk-java-users mailing list > Ast...@li... > https://lists.sourceforge.net/lists/listinfo/asterisk-java-users > > -------------- next part -------------- An HTML attachment was scrubbed... ------------------------------ ------------------------------------------------------------------------------ Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Dashboards with Interactivity, Sharing, Native Excel Exports, App Integration & more Get technology previously reserved for billion-dollar corporations, FREE http://pubads.g.doubleclick.net/gampad/clk?id=190641631&iu=/4140/ostg.clktrk ------------------------------ _______________________________________________ Asterisk-java-users mailing list Ast...@li... https://lists.sourceforge.net/lists/listinfo/asterisk-java-users End of Asterisk-java-users Digest, Vol 100, Issue 1 *************************************************** |