Re: [Asterisk-java-users] Asterisk-Java 1.0 release et al

2015-04-14 Thread Yves
Hi Brett, sounds great. Currently I am in holidays, but I´d like to contribute and help as much as I can. Don´t expect too much from my side as I am quite busy, but nevertheless I´ll try hard. regards, Yves Am 13.04.2015 um 02:27 schrieb Brett Sutton: > Gentlefolk, > I've just be

Re: [Asterisk-java-users] Do you know some projects using asterisk-java library?

2015-08-19 Thread Yves
telephonyproject, I could not build with asterisk + asteriskJava If you need help, ask the list or hire me for professional support. regards, Yves Am 18.08.2015 um 18:04 schrieb Alonso Genis: > Dears, > > I am Alonso, new at this list. We are studying some API for migrate an > application that

Re: [Asterisk-java-users] DefaultAsteriskServer goes to Hollywood

2015-11-12 Thread Yves
Hi Alessio, as my glassbowl is currently under repair, I cannot guess your source code so why not append it to your next eMail so that we can have a look at it? regards, yves Am 12.11.2015 um 09:11 schrieb Alessio Turini: Dear, I've a problem with the class DefaultAsteriskS

Re: [Asterisk-java-users] sample asterisk dial plan integration with AGI java project (Eclipse)

2015-11-12 Thread Yves
Hi, the internet is full of examples... even the docs show it...: https://maven.reucon.com/projects/public/asterisk-java/1.0.0/tutorial.html http://www.jcgonzalez.com/asterisk-handle-calls-with-java-example A google search on "asterisk-java agi example" results in tons of info. reg

Re: [Asterisk-java-users] DefaultAsteriskServer goes to Hollywood

2015-11-12 Thread Yves
ommand... so relying on the result of getState is quite useless... you should fire an action to reliably check the availability... this should of course be a command that does not consume much resources.. e.g. core show version etc. yves Am 12.11.2015 um 11:15 schrieb Alessio Turini: Ok, th

Re: [Asterisk-java-users] FW: SEVERE: No script configured for URL 'agi://10.168.30.1/hello2.agi' (script 'hello2.agi'))

2015-11-13 Thread Yves
seems) also Network, Firewall regards, yves Am 13.11.2015 um 10:11 schrieb Abdul Basit: Here is another class path setting still no luck :( From: basits...@hotmail.com To: asterisk-java-users@lists.sourceforge.net Date

Re: [Asterisk-java-users] FW: SEVERE: No script configured for URL 'agi://10.168.30.1/hello2.agi' (script 'hello2.agi'))

2015-11-13 Thread Yves
ur mappings file in the user-entries section via "Add JARs" Button (even if it is not a jar-file) yves Am 13.11.2015 um 11:58 schrieb Abdul Basit: Hi Both, Thanks for the reply, i did but still same :( agi://10.168.30.1/hello.agi: No script configured for URL 'agi://10.

Re: [Asterisk-java-users] FW: SEVERE: No script configured for URL 'agi://10.168.30.1/hello2.agi' (script 'hello2.agi'))

2015-11-13 Thread Yves
small typo... agi-server-mail-class should be agi-server-mai*n*-class Am 13.11.2015 um 12:09 schrieb Yves: The resource file fastagi-mapping.properties cannot be found. you have to include the path to this file in your EXECUTION classpath... not in the java-build-source-path. in eclipse right

Re: [Asterisk-java-users] FW: SEVERE: No script configured for URL 'agi://10.168.30.1/hello2.agi' (script 'hello2.agi'))

2015-11-13 Thread Yves
for the list: Abdul recreated the project from scratch et voilà... everything works... yves Am 13.11.2015 um 12:45 schrieb Abdul Basit: Hi yves, I did as you said, please refer to the snap shot. and still no script configured :( _*on Eclipse Console. *_ Nov 13, 2015 7:37:03 PM

Re: [Asterisk-java-users] Bypass AbstractManagerEventListener for internal calls.

2015-12-10 Thread Yves
just to make it short take a look at the link- / unlinke-event (bridgeevent) regards, yves Am 10.12.2015 um 13:11 schrieb aditya barve: Hello Team, We extended AbstractManagerEventListener and wrote our logic in it for end user(Customer) to agent (CSR) calls. It has very specific

Re: [Asterisk-java-users] how to avoid autohangup AGI

2016-03-14 Thread Yves
variable and return (immediately). yves Am 14.03.2016 um 09:45 schrieb Иван Виноградов: Hello. Possible could somebody help me? I'm trying to use asterisk-java first time. public class TimeoutCalculationextends BaseAgiScript { public void service(AgiRequest request, AgiChannel ch

Re: [Asterisk-java-users] ManagerConnection for simultaneous multiple calls

2017-03-24 Thread Yves
return immediately, you should use sendaction in conjunction with a per call callback handler... take a look at the api doc, it is quite easy. another approach to become even more "parallel" is using one thread per call. cheers, yves Am 23.03.2017 um 17:01 schrieb Amol Vedak: Hello F

Re: [Asterisk-java-users] Wrong PJSIP_HEADER read

2018-12-23 Thread Yves
you delay the execution in between to better simulate, whats going on, if this special case occurs? regards, Yves Am 21.12.2018 um 01:08 schrieb Salahuddin Ahmed: Hello, Let's explain the issue, In our agi script has those following header

Re: [Asterisk-java-users] FastAGI call for custom commands

2020-06-19 Thread Yves
Hi, "streamFile" is not an customAGICommand. If you want to stream a soundfile, just use channel.streamFile("filename"); regards, Yves Am 17.06.2020 um 21:47 schrieb Wagner Feliziani via Asterisk-java-users: Hi, I am trying to call custom commands using FastAGI as st