asterisk-java-users Mailing List for Asterisk-Java Library (Page 125)
Brought to you by:
srt
You can subscribe to this list here.
2005 |
Jan
|
Feb
(8) |
Mar
(33) |
Apr
(36) |
May
(19) |
Jun
(21) |
Jul
(53) |
Aug
(30) |
Sep
(36) |
Oct
(34) |
Nov
(43) |
Dec
(72) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(123) |
Feb
(75) |
Mar
(86) |
Apr
(46) |
May
(41) |
Jun
(29) |
Jul
(76) |
Aug
(38) |
Sep
(39) |
Oct
(68) |
Nov
(16) |
Dec
(17) |
2007 |
Jan
(34) |
Feb
(18) |
Mar
(39) |
Apr
(30) |
May
(20) |
Jun
(10) |
Jul
(59) |
Aug
(54) |
Sep
(60) |
Oct
(22) |
Nov
(14) |
Dec
(10) |
2008 |
Jan
(34) |
Feb
(67) |
Mar
(65) |
Apr
(67) |
May
(60) |
Jun
(51) |
Jul
(88) |
Aug
(75) |
Sep
(47) |
Oct
(143) |
Nov
(54) |
Dec
(42) |
2009 |
Jan
(46) |
Feb
(80) |
Mar
(162) |
Apr
(159) |
May
(200) |
Jun
(34) |
Jul
(46) |
Aug
(59) |
Sep
(5) |
Oct
(35) |
Nov
(73) |
Dec
(30) |
2010 |
Jan
(23) |
Feb
(50) |
Mar
(8) |
Apr
(24) |
May
(19) |
Jun
(49) |
Jul
(56) |
Aug
(35) |
Sep
(26) |
Oct
(79) |
Nov
(39) |
Dec
(34) |
2011 |
Jan
(27) |
Feb
(22) |
Mar
(28) |
Apr
(12) |
May
(16) |
Jun
(19) |
Jul
(1) |
Aug
(64) |
Sep
(19) |
Oct
(11) |
Nov
(17) |
Dec
(12) |
2012 |
Jan
(6) |
Feb
(8) |
Mar
(15) |
Apr
(43) |
May
(41) |
Jun
(14) |
Jul
(32) |
Aug
(3) |
Sep
(4) |
Oct
(7) |
Nov
(11) |
Dec
(11) |
2013 |
Jan
(35) |
Feb
(11) |
Mar
(23) |
Apr
(25) |
May
(37) |
Jun
(47) |
Jul
(25) |
Aug
(21) |
Sep
|
Oct
(1) |
Nov
(9) |
Dec
|
2014 |
Jan
(26) |
Feb
(2) |
Mar
(18) |
Apr
(41) |
May
(7) |
Jun
(7) |
Jul
(24) |
Aug
(5) |
Sep
(6) |
Oct
(8) |
Nov
(9) |
Dec
(7) |
2015 |
Jan
(7) |
Feb
(15) |
Mar
(8) |
Apr
(12) |
May
(7) |
Jun
|
Jul
|
Aug
(5) |
Sep
(1) |
Oct
(3) |
Nov
(30) |
Dec
(3) |
2016 |
Jan
(1) |
Feb
|
Mar
(2) |
Apr
|
May
(9) |
Jun
|
Jul
|
Aug
(3) |
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(2) |
Oct
|
Nov
|
Dec
|
2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(8) |
Dec
(4) |
2019 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2020 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Patrick B. <bre...@go...> - 2007-10-08 10:13:32
|
Hi Daniel, I am back and checked your stuff. It is right, the system should use the state from event. Guess you got problems, if an agent/member was answering a call while init the system. I cecked in your code in trunk as fix for issue AJ-93 (jira.reucon.org). Thanks for your work. Regards Patrick Am Mittwoch, 26. September 2007 23:24 schrieb Daniel Gradecak: > Thank you Stefan. > > Actually I started to add the code to support the queue events, and if > you would like i will contribute that code, if Patrick is not doing it now. > > There is something I would like to know, because I am not sure of this > code : > void handleQueueMemberEvent(QueueMemberEvent event) > { > final AsteriskQueueImpl queue = queues.get(event.getQueue()); > if (queue == null) > { > logger.error("Ignored QueueMemberEvent for unknown queue " > + event.getQueue()); > return; > } > AsteriskQueueMemberImpl member = queue.getMember(event.getLocation()); > if (member == null) > { > member = new AsteriskQueueMemberImpl(server, queue, event > .getLocation(), *QueueMemberState.DEVICE_NOT_INUSE*); > } > queue.addMember(member); > > } > > are we sure that the device is not in use? shouldn't that line be ... > QueueMemberState.valueOf(event.getStatus()) > > even if it returns UNKOWN ? > > Stefan Reuter wrote: > > Hi Daniel, > > > > Patrick is currently working on the Queue/Member/... stuff. If you like > > to have a look at his last posts to the devel list regarding this. > > Sorry, Patrick, I didn't yet take the time to have a more in depth look > > on that stuff. Will do so as soon as time permits :( > > > > =Stefab > > > > Daniel Gradecak wrote: > >> Hello all, > >> > >> I wonder how to track the lifecycle of a call queue. It is simple to > >> handle a normal call ... you just wait for > >> AbstractAsteriskServerListener.onNewAsteriskChannel but there is a > >> prblem on a queue call, because > >> a queue call generate 6 new channels ... I am redisigning my application > >> (http://sourceforge.net/projects/svarog/) and do not want to handle all > >> the events anymore, would rather use the > >> java.beans.PropertyChangeListener facility. > >> > >> So how to really know that the call is coming from a queue and which > >> channels to listen to in order to have the right channels for the call? > >> > >> Regards, > >> Daniel > >> > >> ------------------------------------------------------------------------ > >>- This SF.net email is sponsored by: Microsoft > >> Defy all challenges. Microsoft(R) Visual Studio 2005. > >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > >> _______________________________________________ > >> Asterisk-java-users mailing list > >> Ast...@li... > >> https://lists.sourceforge.net/lists/listinfo/asterisk-java-users > > > > ------------------------------------------------------------------------ > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Microsoft > > Defy all challenges. Microsoft(R) Visual Studio 2005. > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > Asterisk-java-users mailing list > > Ast...@li... > > https://lists.sourceforge.net/lists/listinfo/asterisk-java-users > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Asterisk-java-users mailing list > Ast...@li... > https://lists.sourceforge.net/lists/listinfo/asterisk-java-users -- Patrick Breucking <bre...@GO...> (System Engineer) * GONICUS GmbH * NL Arnsberg * Moehnestrasse 11-17 * D-59755 Arnsberg * Tel.: +49 (0) 29 32 / 9 16 - 0 * Fax: +49 (0) 29 32 / 9 16 - 278 * http://www.GONICUS.de *Sitz der Gesellschaft: Moehnestrasse 11-17 * D-59755 Arnsberg *Geschaeftsfuehrer: Rainer Luelsdorf, Alfred Schroeder *Vorsitzender des Beirats: Juergen Michels *Amtsgericht Arnsberg * HRB 1968 |
From: Stefan R. <ste...@re...> - 2007-10-08 07:06:52
|
robert home wrote: > Hi and thanks in advance, > I can see that Java-Asterisk knows what version of Asterisk it is > connected to, but how do I get this information from Java-Asterisk? with the live API in 0.3.1 you can use AsteriskServer.getVersion() http://maven.reucon.com/projects/public/asterisk-java/0.3.1/apidocs/org/a= steriskjava/live/AsteriskServer.html#getVersion() =3DStefan --=20 reuter network consulting Neusser Str. 110 50760 Koeln Germany Telefon: +49 221 1305699-0 Telefax: +49 221 1305699-90 E-Mail: ste...@re... Jabber: ste...@re... Steuernummern 215/5140/1791 USt-IdNr. DE220701760 |
From: robert h. <rls...@op...> - 2007-10-08 04:23:33
|
Hi and thanks in advance, I can see that Java-Asterisk knows what version of Asterisk it is = connected to, but how do I get this information from Java-Asterisk? Robert |
From: Stefan R. <ste...@re...> - 2007-10-04 15:08:33
|
Thanks for your patch, I've applied it to svn trunk. =3DStefan Ga=EBtan Minet wrote: > Hi Stefan >=20 > I have some additions and modifications laying around for months in my > local copy of the library. > I think some could be useful for the community. >=20 > Please find attached the less intrusive ones. Is it worth including the= m ? >=20 > Here is a summary: >=20 > */ Parking property on channels, handles Park/Unpark events, fires > PropertChangeEvent on channel object. > */ New DbDel Action (only works with Bristuffed 1.2 asterisk. I have ye= t > to check if 1.4 includes it. > */ Some fixes in db actions/event related to the absence or presence of= > Bristuff ("Val" <=3D> "Value" in actions and events). > */ Some utility methods in asterisk server (dbget/dbput/dbdel and peer > list) >=20 > Kind regards >=20 > Gaetan --=20 reuter network consulting Neusser Str. 110 50760 Koeln Germany Telefon: +49 221 1305699-0 Telefax: +49 221 1305699-90 E-Mail: ste...@re... Jabber: ste...@re... Steuernummern 215/5140/1791 USt-IdNr. DE220701760 |
From: <gm...@ea...> - 2007-10-04 08:46:51
|
Hi Stefan I have some additions and modifications laying around for months in my local copy of the library. I think some could be useful for the community. Please find attached the less intrusive ones. Is it worth including them ? Here is a summary: */ Parking property on channels, handles Park/Unpark events, fires PropertChangeEvent on channel object. */ New DbDel Action (only works with Bristuffed 1.2 asterisk. I have yet to check if 1.4 includes it. */ Some fixes in db actions/event related to the absence or presence of Bristuff ("Val" <=> "Value" in actions and events). */ Some utility methods in asterisk server (dbget/dbput/dbdel and peer list) Kind regards Gaetan |
From: Stefan R. <ste...@re...> - 2007-10-02 00:44:41
|
Ga=EBtan Minet wrote: > Here is a link >=20 > http://dev.mcit.be/various/astmanproxy-asterisk-java.html Thanks. You'll find the link on the A-J homepage. I've also added it to the AstManProxy page on voip-info.org. Support for the server property is now in SVN. =3DStefan |
From: <gm...@ea...> - 2007-10-01 22:46:04
|
Hi Stefan Here is a link http://dev.mcit.be/various/astmanproxy-asterisk-java.html Regards, Gaetan On 01 Oct 2007, at 22:53, Stefan Reuter wrote: > Ga=EBtan Minet wrote: >> 2007-10-01 22:37:34,950 [ERROR] [Asterisk-Java ManagerConnection-0- >> Reader-0] [EventBuilderImpl:setAttributes] Unable to set property >> 'server' to 'localhost' on >> org.asteriskjava.manager.event.PeerEntryEvent: no setter >> >> Stefan, could we add the setter/getter in the base event class ? > > Yes, that seems reasonable. > > Can you publish the patch somewhere with a short description then I =20= > can > add a paragraph to the Asterisk-Java page with a link to it. > Maybe you can even convince the original author to apply the patch to > upstream :-) > > =3DStefan > > --=20 > reuter network consulting > Neusser Str. 110 > 50760 Koeln > Germany > Telefon: +49 221 1305699-0 > Telefax: +49 221 1305699-90 > E-Mail: ste...@re... > Jabber: ste...@re... > > Steuernummern 215/5140/1791 USt-IdNr. DE220701760 > > ----------------------------------------------------------------------=20= > --- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/=20 > _______________________________________________ > Asterisk-java-users mailing list > Ast...@li... > https://lists.sourceforge.net/lists/listinfo/asterisk-java-users |
From: Stefan R. <ste...@re...> - 2007-10-01 20:54:07
|
Ga=EBtan Minet wrote: > 2007-10-01 22:37:34,950 [ERROR] [Asterisk-Java ManagerConnection-0-=20 > Reader-0] [EventBuilderImpl:setAttributes] Unable to set property =20 > 'server' to 'localhost' on =20 > org.asteriskjava.manager.event.PeerEntryEvent: no setter >=20 > Stefan, could we add the setter/getter in the base event class ? Yes, that seems reasonable. Can you publish the patch somewhere with a short description then I can add a paragraph to the Asterisk-Java page with a link to it. Maybe you can even convince the original author to apply the patch to upstream :-) =3DStefan --=20 reuter network consulting Neusser Str. 110 50760 Koeln Germany Telefon: +49 221 1305699-0 Telefax: +49 221 1305699-90 E-Mail: ste...@re... Jabber: ste...@re... Steuernummern 215/5140/1791 USt-IdNr. DE220701760 |
From: <gm...@ea...> - 2007-10-01 20:45:48
|
On 01 Oct 2007, at 20:50, Aaron Evans wrote: > Hey Ga=EBtan, > > I would like to get my hands on the patch if it means I can use > asterisk-java in combination with astmanproxy. I've just send it to your email. I use it for several weeks under moderate load, this seems ok. However the proxy adds a "server" header to every message it forwards =20= and that gives (non critical) errors in the library as there is no =20 setter on the event: 2007-10-01 22:37:34,950 [ERROR] [Asterisk-Java ManagerConnection-0-=20 Reader-0] [EventBuilderImpl:setAttributes] Unable to set property =20 'server' to 'localhost' on =20 org.asteriskjava.manager.event.PeerEntryEvent: no setter Stefan, could we add the setter/getter in the base event class ? regards Gaetan > > I really like using asterisk-java but would like to avoid implementing > my own proxy. Further, astmanproxy seems to have the feature set we > are looking for... > > thx, > aaron > > On 10/1/07, Ga=EBtan Minet <gm...@ea...> wrote: |
From: Aaron E. <aar...@gm...> - 2007-10-01 18:50:32
|
Hey Ga=EBtan, I would like to get my hands on the patch if it means I can use asterisk-java in combination with astmanproxy. I really like using asterisk-java but would like to avoid implementing my own proxy. Further, astmanproxy seems to have the feature set we are looking for... thx, aaron On 10/1/07, Ga=EBtan Minet <gm...@ea...> wrote: > Hi > > Indeed I ran into this problem with astmanproxy some weeks ago too. > > IIRC I saw at least those problems: > > - the protocol identifier bug you solved > - that actionId problem. ActionId is only ignored during > authentication because this is handled internally by astmanproxy. > Further comunication is ok. > - the credentials are not case sensitive, astmanproxy converts the > username and password to lowercase from client to proxy and from > proxy to asterisk. > > I ended modifying the astmanproxy sources to have it work. Changes > are minor. > This is not the place to discuss this but if someone needs it I'll > hapily send him the patch. > > > Regards > > Gaetan > > > On 02 Aug 2007, at 00:04, Stefan Reuter wrote: > > > Hi, > > > > astmanproxy does not honor the ActionId attribute. > > The following is a log of an attempt to connect: > > > > root@samael:~# ngrep port 1234 > > interface: eth0 (10.13.0.0/255.255.255.0) > > filter: (ip or ip6) and ( port 1234 ) > > #### > > T 10.13.0.101:1234 -> 10.13.0.57:33060 [AP] > > Asterisk Call Manager Proxy/1.21.. > > > > ## > > T 10.13.0.57:33060 -> 10.13.0.101:1234 [AP] > > action: Challenge..actionid: 1246657009_0#..authtype: MD5.... > > > > ## > > T 10.13.0.101:1234 -> 10.13.0.57:33060 [AP] > > Response: Success > > > > # > > T 10.13.0.101:1234 -> 10.13.0.57:33060 [AP] > > .. > > > > # > > T 10.13.0.101:1234 -> 10.13.0.57:33060 [AP] > > Challenge: 168169277 > > > > ## > > T 10.13.0.101:1234 -> 10.13.0.57:33060 [AP] > > .... > > > > #### > > > > Asterisk-Java sends an actionId (1246657009_0#) but astmanproxy drops > > it. Therefore Asterisk-Java has no chance to relate the response to > > the > > request and you receive the timeout exception. > > > >> This appears to be a timing issue and so may not appear on all > >> systems > >> or everytime the call is run. > >> I'm doing further investigation to try and create a patch. > >> > >> If anyone knows how to lodge a support request on astmanproxy I > >> would be > >> interested. > > > > No I don't. I had a conversation with david some time ago but the > > without success getting these things fixed. > > I think astmanproxy would need some serious design changes to be > > usable > > for a larger audience... > > > > =3DStefan > > > > P.S. I've updated the latest version of Asterisk-Java to accept the > > protocol identifier but that won't help much until at least the action > > id issue is resolved. > > > > -- > > reuter network consulting > > Neusser Str. 110 > > 50760 Koeln > > Germany > > Telefon: +49 221 1305699-0 > > Telefax: +49 221 1305699-90 > > E-Mail: ste...@re... > > Jabber: ste...@re... > > > > Steuernummern 215/5140/1791 USt-IdNr. DE220701760 > > > > ---------------------------------------------------------------------- > > --- > > This SF.net email is sponsored by: Splunk Inc. > > Still grepping through log files to find problems? Stop. > > Now Search log events and configuration files using AJAX and a > > browser. > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > _______________________________________________ > > Asterisk-java-users mailing list > > Ast...@li... > > https://lists.sourceforge.net/lists/listinfo/asterisk-java-users > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Asterisk-java-users mailing list > Ast...@li... > https://lists.sourceforge.net/lists/listinfo/asterisk-java-users > |
From: <gm...@ea...> - 2007-10-01 17:46:26
|
Hi Indeed I ran into this problem with astmanproxy some weeks ago too. IIRC I saw at least those problems: - the protocol identifier bug you solved - that actionId problem. ActionId is only ignored during authentication because this is handled internally by astmanproxy. Further comunication is ok. - the credentials are not case sensitive, astmanproxy converts the username and password to lowercase from client to proxy and from proxy to asterisk. I ended modifying the astmanproxy sources to have it work. Changes are minor. This is not the place to discuss this but if someone needs it I'll hapily send him the patch. Regards Gaetan On 02 Aug 2007, at 00:04, Stefan Reuter wrote: > Hi, > > astmanproxy does not honor the ActionId attribute. > The following is a log of an attempt to connect: > > root@samael:~# ngrep port 1234 > interface: eth0 (10.13.0.0/255.255.255.0) > filter: (ip or ip6) and ( port 1234 ) > #### > T 10.13.0.101:1234 -> 10.13.0.57:33060 [AP] > Asterisk Call Manager Proxy/1.21.. > > ## > T 10.13.0.57:33060 -> 10.13.0.101:1234 [AP] > action: Challenge..actionid: 1246657009_0#..authtype: MD5.... > > ## > T 10.13.0.101:1234 -> 10.13.0.57:33060 [AP] > Response: Success > > # > T 10.13.0.101:1234 -> 10.13.0.57:33060 [AP] > .. > > # > T 10.13.0.101:1234 -> 10.13.0.57:33060 [AP] > Challenge: 168169277 > > ## > T 10.13.0.101:1234 -> 10.13.0.57:33060 [AP] > .... > > #### > > Asterisk-Java sends an actionId (1246657009_0#) but astmanproxy drops > it. Therefore Asterisk-Java has no chance to relate the response to > the > request and you receive the timeout exception. > >> This appears to be a timing issue and so may not appear on all >> systems >> or everytime the call is run. >> I'm doing further investigation to try and create a patch. >> >> If anyone knows how to lodge a support request on astmanproxy I >> would be >> interested. > > No I don't. I had a conversation with david some time ago but the > without success getting these things fixed. > I think astmanproxy would need some serious design changes to be > usable > for a larger audience... > > =Stefan > > P.S. I've updated the latest version of Asterisk-Java to accept the > protocol identifier but that won't help much until at least the action > id issue is resolved. > > -- > reuter network consulting > Neusser Str. 110 > 50760 Koeln > Germany > Telefon: +49 221 1305699-0 > Telefax: +49 221 1305699-90 > E-Mail: ste...@re... > Jabber: ste...@re... > > Steuernummern 215/5140/1791 USt-IdNr. DE220701760 > > ---------------------------------------------------------------------- > --- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a > browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Asterisk-java-users mailing list > Ast...@li... > https://lists.sourceforge.net/lists/listinfo/asterisk-java-users |
From: Martin S. <ma...@be...> - 2007-09-28 21:08:22
|
You're using the documentation from version 0.2, which is found from a link named for that specific version. In that version, the package names are net.sf.* etc. If you use the documentation from a later version, you will see the package names corresponding to that version, too. Martin Smith, Systems Developer ma...@be... Bureau of Economic and Business Research University of Florida (352) 392-0171 Ext. 221=20 =20 > -----Original Message----- > From: ast...@li...=20 > [mailto:ast...@li...] On=20 > Behalf Of thebugslayer > Sent: Friday, September 28, 2007 4:22 PM > To: ast...@li... > Subject: [Asterisk-java-users] tutorial needs update >=20 > Hi, >=20 > http://asterisk-java.org/0.2/tutorial.html has the wrong package name > from your project. >=20 > Needs to update > net.sf.asterisk.fastagi --> org.asteriskjava.fastagi >=20 > --=20 > /bugslayer >=20 > -------------------------------------------------------------- > ----------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Asterisk-java-users mailing list > Ast...@li... > https://lists.sourceforge.net/lists/listinfo/asterisk-java-users >=20 |
From: thebugslayer <the...@gm...> - 2007-09-28 20:21:46
|
Hi, http://asterisk-java.org/0.2/tutorial.html has the wrong package name from your project. Needs to update net.sf.asterisk.fastagi --> org.asteriskjava.fastagi -- /bugslayer |
From: Stefan R. <ste...@re...> - 2007-09-27 22:57:15
|
Thanks for the hint. The cause was an @Override anntoation on a method that just implemented an interface. I still don't understand why it didn't trigger an error here but its fixed in trunk now. =3DStefan thebugslayer wrote: > Stefan, > I don't think maven has even reached to surefire plugin stage yet. The > error failed at COMPILE stage, there are test class that won't > compile! See the error msg again. > -Z >=20 > On 9/26/07, Stefan Reuter <ste...@re...> wrote: >> Hi, >> >> can you try >> mvn -U clean test >> to make sure you are not using an outdated surefire plugin that causes= >> this failure? >> >> =3DStefan >> >> thebugslayer wrote: >>> I can run with -Dmaven.test.skip, but just thought you guys might wan= t >>> to know... >>> >>> [INFO] --------------------------------------------------------------= ---------- >>> [ERROR] BUILD FAILURE >>> [INFO] --------------------------------------------------------------= ---------- >>> [INFO] Compilation failure >>> >>> /Users/zemian/Desktop/projects/asterisk-java/src/test/java/org/asteri= skjava/live/internal/AsteriskQueueMemberImplTest.java:[90,13] >>> method does not override a method from its superclass >>> >>> /Users/zemian/Desktop/projects/asterisk-java/src/test/java/org/asteri= skjava/live/internal/AsteriskAgentImplTest.java:[65,13] >>> method does not override a method from its superclass >>> >>> >>> >> >> -- >> reuter network consulting >> Neusser Str. 110 >> 50760 Koeln >> Germany >> Telefon: +49 221 1305699-0 >> Telefax: +49 221 1305699-90 >> E-Mail: ste...@re... >> Jabber: ste...@re... >> >> Steuernummern 215/5140/1791 USt-IdNr. DE220701760 >> >> >> ----------------------------------------------------------------------= --- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2005. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ >> Asterisk-java-users mailing list >> Ast...@li... >> https://lists.sourceforge.net/lists/listinfo/asterisk-java-users >> >> >> >=20 >=20 --=20 reuter network consulting Neusser Str. 110 50760 Koeln Germany Telefon: +49 221 1305699-0 Telefax: +49 221 1305699-90 E-Mail: ste...@re... Jabber: ste...@re... Steuernummern 215/5140/1791 USt-IdNr. DE220701760 |
From: thebugslayer <the...@gm...> - 2007-09-27 13:57:04
|
Stefan, I don't think maven has even reached to surefire plugin stage yet. The error failed at COMPILE stage, there are test class that won't compile! See the error msg again. -Z On 9/26/07, Stefan Reuter <ste...@re...> wrote: > Hi, > > can you try > mvn -U clean test > to make sure you are not using an outdated surefire plugin that causes > this failure? > > =Stefan > > thebugslayer wrote: > > I can run with -Dmaven.test.skip, but just thought you guys might want > > to know... > > > > [INFO] ------------------------------------------------------------------------ > > [ERROR] BUILD FAILURE > > [INFO] ------------------------------------------------------------------------ > > [INFO] Compilation failure > > > > /Users/zemian/Desktop/projects/asterisk-java/src/test/java/org/asteriskjava/live/internal/AsteriskQueueMemberImplTest.java:[90,13] > > method does not override a method from its superclass > > > > /Users/zemian/Desktop/projects/asterisk-java/src/test/java/org/asteriskjava/live/internal/AsteriskAgentImplTest.java:[65,13] > > method does not override a method from its superclass > > > > > > > > > -- > reuter network consulting > Neusser Str. 110 > 50760 Koeln > Germany > Telefon: +49 221 1305699-0 > Telefax: +49 221 1305699-90 > E-Mail: ste...@re... > Jabber: ste...@re... > > Steuernummern 215/5140/1791 USt-IdNr. DE220701760 > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Asterisk-java-users mailing list > Ast...@li... > https://lists.sourceforge.net/lists/listinfo/asterisk-java-users > > > -- /bugslayer |
From: Stefan R. <ste...@re...> - 2007-09-26 21:43:49
|
Hi Daniel, well just open an issue at jira.reucon.org and attach your patch there. > if (member =3D=3D null) > { > member =3D new AsteriskQueueMemberImpl(server, queue, event > .getLocation(), *QueueMemberState.DEVICE_NOT_INUSE*); > } > queue.addMember(member); >=20 > } >=20 > are we sure that the device is not in use? shouldn't that line be ... > QueueMemberState.valueOf(event.getStatus()) >=20 > even if it returns UNKOWN ? without having an in-depth look at the code that sounds reasonable. =3DStefan --=20 reuter network consulting Neusser Str. 110 50760 Koeln Germany Telefon: +49 221 1305699-0 Telefax: +49 221 1305699-90 E-Mail: ste...@re... Jabber: ste...@re... Steuernummern 215/5140/1791 USt-IdNr. DE220701760 |
From: Daniel G. <da...@gr...> - 2007-09-26 21:23:55
|
Thank you Stefan. Actually I started to add the code to support the queue events, and if you would like i will contribute that code, if Patrick is not doing it now. There is something I would like to know, because I am not sure of this code : void handleQueueMemberEvent(QueueMemberEvent event) { final AsteriskQueueImpl queue = queues.get(event.getQueue()); if (queue == null) { logger.error("Ignored QueueMemberEvent for unknown queue " + event.getQueue()); return; } AsteriskQueueMemberImpl member = queue.getMember(event.getLocation()); if (member == null) { member = new AsteriskQueueMemberImpl(server, queue, event .getLocation(), *QueueMemberState.DEVICE_NOT_INUSE*); } queue.addMember(member); } are we sure that the device is not in use? shouldn't that line be ... QueueMemberState.valueOf(event.getStatus()) even if it returns UNKOWN ? Stefan Reuter wrote: > Hi Daniel, > > Patrick is currently working on the Queue/Member/... stuff. If you like > to have a look at his last posts to the devel list regarding this. > Sorry, Patrick, I didn't yet take the time to have a more in depth look > on that stuff. Will do so as soon as time permits :( > > =Stefab > > Daniel Gradecak wrote: > >> Hello all, >> >> I wonder how to track the lifecycle of a call queue. It is simple to >> handle a normal call ... you just wait for >> AbstractAsteriskServerListener.onNewAsteriskChannel but there is a >> prblem on a queue call, because >> a queue call generate 6 new channels ... I am redisigning my application >> (http://sourceforge.net/projects/svarog/) and do not want to handle all >> the events anymore, would rather use the >> java.beans.PropertyChangeListener facility. >> >> So how to really know that the call is coming from a queue and which >> channels to listen to in order to have the right channels for the call? >> >> Regards, >> Daniel >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2005. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ >> Asterisk-java-users mailing list >> Ast...@li... >> https://lists.sourceforge.net/lists/listinfo/asterisk-java-users >> > > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > ------------------------------------------------------------------------ > > _______________________________________________ > Asterisk-java-users mailing list > Ast...@li... > https://lists.sourceforge.net/lists/listinfo/asterisk-java-users > |
From: Stefan R. <ste...@re...> - 2007-09-26 20:24:51
|
Hi, can you try mvn -U clean test to make sure you are not using an outdated surefire plugin that causes this failure? =3DStefan thebugslayer wrote: > I can run with -Dmaven.test.skip, but just thought you guys might want > to know... >=20 > [INFO] ----------------------------------------------------------------= -------- > [ERROR] BUILD FAILURE > [INFO] ----------------------------------------------------------------= -------- > [INFO] Compilation failure >=20 > /Users/zemian/Desktop/projects/asterisk-java/src/test/java/org/asterisk= java/live/internal/AsteriskQueueMemberImplTest.java:[90,13] > method does not override a method from its superclass >=20 > /Users/zemian/Desktop/projects/asterisk-java/src/test/java/org/asterisk= java/live/internal/AsteriskAgentImplTest.java:[65,13] > method does not override a method from its superclass >=20 >=20 >=20 --=20 reuter network consulting Neusser Str. 110 50760 Koeln Germany Telefon: +49 221 1305699-0 Telefax: +49 221 1305699-90 E-Mail: ste...@re... Jabber: ste...@re... Steuernummern 215/5140/1791 USt-IdNr. DE220701760 |
From: thebugslayer <the...@gm...> - 2007-09-26 18:38:52
|
I can run with -Dmaven.test.skip, but just thought you guys might want to know... [INFO] ------------------------------------------------------------------------ [ERROR] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Compilation failure /Users/zemian/Desktop/projects/asterisk-java/src/test/java/org/asteriskjava/live/internal/AsteriskQueueMemberImplTest.java:[90,13] method does not override a method from its superclass /Users/zemian/Desktop/projects/asterisk-java/src/test/java/org/asteriskjava/live/internal/AsteriskAgentImplTest.java:[65,13] method does not override a method from its superclass -- /bugslayer |
From: Stefan R. <ste...@re...> - 2007-09-25 01:58:38
|
Hi Daniel, Patrick is currently working on the Queue/Member/... stuff. If you like to have a look at his last posts to the devel list regarding this. Sorry, Patrick, I didn't yet take the time to have a more in depth look on that stuff. Will do so as soon as time permits :( =3DStefab Daniel Gradecak wrote: > Hello all, >=20 > I wonder how to track the lifecycle of a call queue. It is simple to=20 > handle a normal call ... you just wait for=20 > AbstractAsteriskServerListener.onNewAsteriskChannel but there is a=20 > prblem on a queue call, because > a queue call generate 6 new channels ... I am redisigning my applicatio= n=20 > (http://sourceforge.net/projects/svarog/) and do not want to handle all= =20 > the events anymore, would rather use the=20 > java.beans.PropertyChangeListener facility. >=20 > So how to really know that the call is coming from a queue and which=20 > channels to listen to in order to have the right channels for the call?= >=20 > Regards, > Daniel >=20 > -----------------------------------------------------------------------= -- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Asterisk-java-users mailing list > Ast...@li... > https://lists.sourceforge.net/lists/listinfo/asterisk-java-users --=20 reuter network consulting Neusser Str. 110 50760 Koeln Germany Telefon: +49 221 1305699-0 Telefax: +49 221 1305699-90 E-Mail: ste...@re... Jabber: ste...@re... Steuernummern 215/5140/1791 USt-IdNr. DE220701760 |
From: Daniel G. <da...@gr...> - 2007-09-24 23:26:48
|
I do not see that those events are handled correctly in real time. The queue members are set once the connection is started with asterisk but later on it seems that the live api is not really taking care of those two events. Are there several events that are not handled buy the live api ? Is there a plan to add it to the live api? |
From: Daniel G. <da...@gr...> - 2007-09-24 20:47:16
|
Hello all, I wonder how to track the lifecycle of a call queue. It is simple to handle a normal call ... you just wait for AbstractAsteriskServerListener.onNewAsteriskChannel but there is a prblem on a queue call, because a queue call generate 6 new channels ... I am redisigning my application (http://sourceforge.net/projects/svarog/) and do not want to handle all the events anymore, would rather use the java.beans.PropertyChangeListener facility. So how to really know that the call is coming from a queue and which channels to listen to in order to have the right channels for the call? Regards, Daniel |
From: Daniel G. <da...@gr...> - 2007-09-24 20:46:32
|
reposting ... mail server problems! Hello all, I wonder how to track the lifecycle of a call queue. It is simple to handle a normal call ... you just wait for AbstractAsteriskServerListener.onNewAsteriskChannel but there is a prblem on a queue call, because a queue call generate 6 new channels ... I am redisigning my application (http://sourceforge.net/projects/svarog/) and do not want to handle all the events anymore, would rather use the java.beans.PropertyChangeListener facility. So how to really know that the call is coming from a queue and which channels to listen to in order to have the right channels for the call? Regards, Daniel |
From: Martin S. <ma...@be...> - 2007-09-14 18:00:07
|
Hi Aaron, I know Asterisk has had some issues in 1.4 with subscriptions and device state. Check out http://bugs.digium.com/view.php?id=3D8800 and http://bugs.digium.com/view.php?id=3D7433. Some fixes are post 1.4.0+ so check your version, and check the information in the first one about setting more sip settings in sip.conf. If you can telnet to the manager interface, and don't see the events, then I would conclude that this is an Asterisk issue and you should probably take it to Mantis :). Martin Smith, Systems Developer ma...@be... Bureau of Economic and Business Research University of Florida (352) 392-0171 Ext. 221=20 =20 > -----Original Message----- > From: ast...@li...=20 > [mailto:ast...@li...] On=20 > Behalf Of Aaron Evans > Sent: Friday, September 14, 2007 11:17 AM > To: ast...@li... > Subject: [Asterisk-java-users] ExtensionStatusEvent - not=20 > receiving any fromasterisk >=20 > Hey all, > I suppose this may be more of an asterisk question and maybe I need to > get on their mailing list, but I was just wondering if any of you have > played much with ExtensionStatusEvent objects. >=20 > Basically, I have an extension set up in asterisk and I have a hint in > the dial plan identifying the peer associated with that extension: >=20 > exten =3D> 0179,hint,SIP/aaron-0179 > exten =3D> 0179,1,Dial(SIP/aaron-0179,20,r) > exten =3D> 0179,2,Hangup >=20 >=20 > But when I use my handset (registered with aaron-0179) to make a call, > no ExtensionStatusEvents seem to get fired. >=20 > Anyone know if there is more to it than this? The documentation on > voip-info.org is no help... >=20 > thx, > aaron >=20 > -------------------------------------------------------------- > ----------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Asterisk-java-users mailing list > Ast...@li... > https://lists.sourceforge.net/lists/listinfo/asterisk-java-users >=20 |
From: Martin S. <ma...@be...> - 2007-09-14 15:51:13
|
That's the documentation for version 0.2, unchanged from that time. The latest development documentations should be considered authoratative for email listserves and VCS repositories :). Martin Smith, Systems Developer ma...@be... Bureau of Economic and Business Research University of Florida (352) 392-0171 Ext. 221=20 =20 > -----Original Message----- > From: ast...@li...=20 > [mailto:ast...@li...] On=20 > Behalf Of lumen > Sent: Friday, September 14, 2007 10:58 AM > To: ast...@li... > Subject: Re: [Asterisk-java-users] CVS and SVN: what's the valid? >=20 > On Fri, Sep 14, 2007 at 10:33:26AM -0400, Martin Smith send: > > SVN is what is currently used. The project was originally hosted on > > SourceForge, I think, so it's possible that CVS was used at=20 > some point > > in the past. > >=20 > > Upon checking, it looks like CVS is only mentioned in the=20 > 1.0 docs -- > > the most recent docs only mention SVN -- > > http://asterisk-java.org/development/index.html. > >=20 > > If you find references to CVS in the latest docs, let me=20 > know and I can > > update them. >=20 > The name of the project commits mailing list (that's not=20 > really important) > http://asterisk-java.org/0.2/mail-lists.html >=20 > Documentation about how to do a patch are based on cvs: > http://asterisk-java.org/0.2/patch.html >=20 > 'Source repository' page in the 'Project Info' section: >=20 > http://asterisk-java.org/0.2/cvs-usage.html >=20 >=20 > -------------------------------------------------------------- > ----------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Asterisk-java-users mailing list > Ast...@li... > https://lists.sourceforge.net/lists/listinfo/asterisk-java-users >=20 |