<?xml version="1.0"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/">

  <channel rdf:about="http://blogs.reucon.com/asterisk-java/">
    <title>Asterisk-Java</title>
    <link>http://blogs.reucon.com/asterisk-java/</link>
    <description>The free Java library for Asterisk PBX integration.</description>
    <items>
      <rdf:Seq>
        
        <rdf:li resource="http://blogs.reucon.com/asterisk-java/2009/06/11/asterisk_java_1_0_0_m2_released.html" />
        
        <rdf:li resource="http://blogs.reucon.com/asterisk-java/2009/05/13/scripting_support_for_fastagi.html" />
        
        <rdf:li resource="http://blogs.reucon.com/asterisk-java/2009/04/27/asterisk_java_lightning_talk_jugc.html" />
        
        <rdf:li resource="http://blogs.reucon.com/asterisk-java/2009/04/19/users_asterisk_and_cti_whats_that_all_about.html" />
        
        <rdf:li resource="http://blogs.reucon.com/asterisk-java/2009/04/03/speech_recognition_with_asterisk_java.html" />
        
        <rdf:li resource="http://blogs.reucon.com/asterisk-java/2009/03/21/users_opennms.html" />
        
        <rdf:li resource="http://blogs.reucon.com/asterisk-java/2009/01/20/free_implementation_of_iax_in_java.html" />
        
        <rdf:li resource="http://blogs.reucon.com/asterisk-java/2009/01/15/asterisk_java_with_groovy_presentation.html" />
        
        <rdf:li resource="http://blogs.reucon.com/asterisk-java/2008/12/27/users_zimbra_integration.html" />
        
        <rdf:li resource="http://blogs.reucon.com/asterisk-java/2008/11/13/users_asterisk_java_and_spring.html" />
        
      </rdf:Seq>
    </items>
  </channel>

  
  <item rdf:about="http://blogs.reucon.com/asterisk-java/2009/06/11/asterisk_java_1_0_0_m2_released.html">
    <title>Asterisk-Java 1.0.0-m2 Released</title>
    <link>http://blogs.reucon.com/asterisk-java/2009/06/11/asterisk_java_1_0_0_m2_released.html</link>
    
      
        <description>
          &lt;p&gt;
As most of the users already make use of many new features in 1.0.0-SNAPSHOT it is time to push the final release out of the door. As a first step I&#039;ve released milestone 2 of 1.0.0 called 1.0.0-m2. Have a look at the &lt;a href=&#034;http://jira.reucon.org/secure/ReleaseNote.jspa?projectId=10000&amp;styleName=Html&amp;version=10030&#034;&gt;changelog&lt;/a&gt; to see which bugs have been fixed and which new features are included.
&lt;/p&gt;&lt;p&gt;
Most notably milestone 2 includes support for the 1.6 series of Asterisk as well as support for &lt;a href=&#034;http://blogs.reucon.com/asterisk-java/2009/05/13/scripting_support_for_fastagi.html&#034;&gt;using scripting languages with the FastAGI server&lt;/a&gt;.
&lt;/p&gt;&lt;p&gt;
The new release is available as a plain jar and a zip distribution at &lt;a href=&#034;http://asterisk-java.org/download/1.0.0-m2&#034;&gt;http://asterisk-java.org/download/1.0.0-m2&lt;/a&gt;. You can also browse the &lt;a href=&#034;http://asterisk-java.org/1.0.0-m2/&#034;&gt;documentation&lt;/a&gt; and &lt;a href=&#034;http://asterisk-java.org/1.0.0-m2/apidocs/&#034;&gt;javadocs&lt;/a&gt; online.
&lt;/p&gt;&lt;p&gt;
Please report back any issues you encounter while using milestone 2 through our &lt;a href=&#034;http://jira.reucon.org/browse/AJ&#034;&gt;issue tracker&lt;/a&gt;. If you like to have a certain feature or bug fix included vote for it.
&lt;/p&gt;
&lt;p&gt;&lt;b&gt;References&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#034;http://asterisk-java.org/download/1.0.0-m2&#034;&gt;Download Asterisk-Java 1.0.0-m2&lt;/a&gt;
&lt;/ul&gt;
        </description>
      
      
    
  </item>
  
  <item rdf:about="http://blogs.reucon.com/asterisk-java/2009/05/13/scripting_support_for_fastagi.html">
    <title>Scripting Support for FastAGI</title>
    <link>http://blogs.reucon.com/asterisk-java/2009/05/13/scripting_support_for_fastagi.html</link>
    
      
        <description>
          &lt;p&gt;
Asterisk-Java 1.0.0 includes support for implementing AGI scripts in the scripting language of your choice. You still have the benefit of running on the JVM but for the implementation of your script you can now choose your favorite language.
&lt;/p&gt;&lt;p&gt;
I&#039;ve prepared a small demo script that counts down from ten to zero. Then it plays a beep and waits for DTMF input to read the digit you&#039;ve pressed back to you. You can exit by pressing star (*) or pound (#). To show you how this script looks like in the different languages it is implemented three times: In Groovy, JavaScript and PHP.
&lt;/p&gt;&lt;p&gt;
To get started just download the &lt;a href=&#034;http://maven.reucon.com/public-snapshot/org/asteriskjava/asterisk-java/1.0.0-SNAPSHOT/asterisk-java-1.0.0-20090513.085050-484-bin.zip&#034;&gt;binary distribution of Asterisk-Java&lt;/a&gt;. Unpack it and run the asterisk-java.jar file from the unpacked directory.
&lt;/p&gt;
&lt;pre class=&#034;codeSample&#034;&gt;
$ cd asterisk-java-1.0.0-SNAPSHOT
$ java -jar asterisk-java.jar
May 13, 2009 1:26:16 AM org.asteriskjava.fastagi.DefaultAgiServer startup
INFO: Listening on *:4573.
&lt;/pre&gt;
&lt;p&gt;
The AGI scripts are put into the agi directory. There you&#039;ll also find the &lt;a href=&#034;http://svn.reucon.net/repos/asterisk-java/trunk/dist/agi/demo.groovy&#034;&gt;demo.groovy&lt;/a&gt;, &lt;a href=&#034;http://svn.reucon.net/repos/asterisk-java/trunk/dist/agi/demo.js&#034;&gt;demo.js&lt;/a&gt; and &lt;a href=&#034;http://svn.reucon.net/repos/asterisk-java/trunk/dist/agi/demo.php&#034;&gt;demo.php&lt;/a&gt; files. The lib directory contains additional libraries required to execute the scripts.
&lt;/p&gt;&lt;p&gt;
In addition to the functions provided by the scripting language Asterisk-Java adds two variables:
&lt;/p&gt;
&lt;dl&gt;
&lt;dt&gt;&lt;a href=&#034;http://asterisk-java.org/development/apidocs/org/asteriskjava/fastagi/AgiRequest.html&#034;&gt;request&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;the request data including the dialed extension, the caller id, channel name, parameters and more&lt;/dd&gt;
&lt;dt&gt;&lt;a href=&#034;http://asterisk-java.org/development/apidocs/org/asteriskjava/fastagi/AgiChannel.html&#034;&gt;channel&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;for interacting with Asterisk, e.g. to stream files, receive DTMF digits or execute dialplan applications&lt;/dd&gt;
&lt;/dl&gt;
&lt;p&gt;
Modify your dialplan and add extensions for the demo scripts:
&lt;/p&gt;
&lt;pre class=&#034;codeSample&#034;&gt;
exten =&gt; 2000,1,Agi(agi://localhost/demo.groovy)
exten =&gt; 2001,1,Agi(agi://localhost/demo.js)
exten =&gt; 2002,1,Agi(agi://localhost/demo.php)
&lt;/pre&gt;
&lt;p&gt;
If you are not running Asterisk-Java on the same server as Asterisk replace localhost by the hostname of the machine running Asterisk-Java.
&lt;/p&gt;&lt;p&gt;
Note that you will need at least Java 6 to make use of the new scripting support.
&lt;/p&gt;
        </description>
      
      
    
  </item>
  
  <item rdf:about="http://blogs.reucon.com/asterisk-java/2009/04/27/asterisk_java_lightning_talk_jugc.html">
    <title>Asterisk-Java Lightning Talk @ JUGC</title>
    <link>http://blogs.reucon.com/asterisk-java/2009/04/27/asterisk_java_lightning_talk_jugc.html</link>
    
      
        <description>
          &lt;p&gt;
&lt;img src=&#034;/asterisk-java/images/princeduke2.jpg&#034; align=&#034;right&#034;/&gt;
I will give a short presentation of Asterisk-Java (in German) at the &lt;a href=&#034;http://jugcologne.org&#034;&gt;Java User Group Cologne&lt;/a&gt; (JUGC) on May 29th.
&lt;/p&gt;&lt;p&gt;
It will be a short overview of what Asterisk-Java can do and how it can be used to add phone support to Java applications. The presentation will have a duration of 5 to 10 minutes and include a small interactive demo that serves as a show case.
&lt;/p&gt;&lt;p&gt;
The main talk will be about &lt;a href=&#034;http://87.230.78.21:8080/display/jugc/2009.05.29+JSF+2.0+vs+Struts+2.1&#034;&gt;JSF 2.0 vs Struts 2.1&lt;/a&gt;. I would be happy to meet a few Asterisk-Java developers over there.
&lt;/p&gt;
&lt;p&gt;The slides are available (in German) at &lt;a href=&#034;http://www.slideshare.net/srt/asteriskjava-at-jugc-20090529&#034;&gt;slideshare&lt;/a&gt;.&lt;/p&gt;
        </description>
      
      
    
  </item>
  
  <item rdf:about="http://blogs.reucon.com/asterisk-java/2009/04/19/users_asterisk_and_cti_whats_that_all_about.html">
    <title>Users: Asterisk and CTI, what’s that all about?</title>
    <link>http://blogs.reucon.com/asterisk-java/2009/04/19/users_asterisk_and_cti_whats_that_all_about.html</link>
    
      
        <description>
          &lt;p&gt;
Sameh Shaker has posted some &lt;a href=&#034;http://smshaker.wordpress.com/2009/03/17/asterisk-and-cti-whats-that-all-about/&#034;&gt;examples&lt;/a&gt; of what you can do with Asterisk using the Manager API and Fast AGI. I think it&#039;s a good starting point for new users of Asterisk-Java to get some inspiration for their own applications.
&lt;/p&gt;
&lt;p&gt;&lt;b&gt;References&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Sameh Shaker: &lt;a href=&#034;http://smshaker.wordpress.com/2009/03/17/asterisk-and-cti-whats-that-all-about/&#034;&gt;Asterisk and CTI, what’s that all about?&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
        </description>
      
      
    
  </item>
  
  <item rdf:about="http://blogs.reucon.com/asterisk-java/2009/04/03/speech_recognition_with_asterisk_java.html">
    <title>Speech Recognition with Asterisk-Java</title>
    <link>http://blogs.reucon.com/asterisk-java/2009/04/03/speech_recognition_with_asterisk_java.html</link>
    
      
        <description>
          &lt;p&gt;
&lt;img src=&#034;/asterisk-java/images/lumenvox.gif&#034; align=&#034;right&#034; vspace=&#034;5&#034;/&gt;
The latest &lt;a href=&#034;http://maven.reucon.com/public-snapshot/org/asteriskjava/asterisk-java/1.0.0-SNAPSHOT/asterisk-java-1.0.0-20090403.210610-444.jar&#034;&gt;snapshot&lt;/a&gt; of Asterisk-Java contains support for the Asterisk Speech API. This makes writing AGI script that recognize speech as easy as writing AGI scripts for DTMF input.
&lt;/p&gt;&lt;p&gt;
All you need to get started is a recent version of Asterisk 1.6 and the &lt;a href=&#034;http://www.lumenvox.com&#034;&gt;Lumenvox&lt;/a&gt; Speech Engine. For development you can buy a &lt;a href=&#034;http://store.digium.com/productview.php?product_code=8ASTLUMSTART&#034;&gt;starter kit&lt;/a&gt; from Digium for 50 USD.
&lt;/p&gt;&lt;p&gt;
In your AGI script you initialize the speech engine, load and activate a grammer and are ready to recognize speech. The speechRecognize() method takes a voice prompt as its first parameter. The prompt is played to the user and the users response is recognized. The user doesn&#039;t have to wait for the prompt to finish, he can start talking right away (&#034;barge in&#034;). The corresponding Java code looks like this:
&lt;/p&gt;
&lt;pre class=&#034;codeSample&#034;&gt;
speechCreate();
speechLoadGrammar(&#034;digits&#034;, grammarPath);
speechActivateGrammar(&#034;digits&#034;);
SpeechRecognitionResult result = 
  speechRecognize(&#034;speech-demo/prompt&#034;, 10);
speechDeactivateGrammar(&#034;digits&#034;);
&lt;/pre&gt;
&lt;p&gt;
The &lt;a href=&#034;http://asterisk-java.org/development/apidocs/org/asteriskjava/fastagi/SpeechRecognitionResult.html&#034;&gt;SpeechRecognitionResult&lt;/a&gt; provided by Asterisk-Java contains the result and the confidence score &amp;ndash; a value between 0 and 1000 that indicates how sure the speech engine is that the result is correct. The Java code to evaluate the result looks like this:
&lt;/p&gt;
&lt;pre class=&#034;codeSample&#034;&gt;
if (result.isSpeech())
{
    if (result.getScore() &gt; 990)
    {
        streamFile(&#034;speech-demo/absolutely-sure&#034;);
    }
    else if (result.getScore() &gt; 800)
    {
        streamFile(&#034;speech-demo/pretty-sure&#034;);
    }
    else
    {
        streamFile(&#034;speech-demo/not-sure&#034;);
    }

    // say what we have recognized
    sayDigits(result.getText());
}       
&lt;/pre&gt;
&lt;p&gt;Finally call speechDestory to end the speech recognition session (for a real application you probably want to do this in a finally block):&lt;/p&gt;
&lt;pre class=&#034;codeSample&#034;&gt;
speechDestroy();
&lt;/pre&gt;
&lt;p&gt;Pretty easy, isn&#039;t it?&lt;/p&gt;
&lt;p&gt;
You can have a look at the &lt;a href=&#034;http://svn.reucon.net/repos/asterisk-java/trunk/src/integrationtest/org/asteriskjava/fastagi/SpeechDemo.java&#034;&gt;SpeechDemo&lt;/a&gt; AGI script or download the &lt;a href=&#034;http://asterisk-java.org/static/speech-demo.zip&#034;&gt;full demo&lt;/a&gt; that includes the latest snapshot of Asterisk-Java, the voice prompts and the AGI script.&lt;/a&gt;

        </description>
      
      
    
  </item>
  
  <item rdf:about="http://blogs.reucon.com/asterisk-java/2009/03/21/users_opennms.html">
    <title>Users: OpenNMS</title>
    <link>http://blogs.reucon.com/asterisk-java/2009/03/21/users_opennms.html</link>
    
      
        <description>
          &lt;p&gt;
&lt;img src=&#034;/asterisk-java/images/opennms_logo.png&#034; align=&#034;right&#034;/&gt;&lt;a href=&#034;http://www.opennms.org/&#034;&gt;OpenNMS&lt;/a&gt; is an open source network management platform developed on the Java platform. It offers monitoring for a wide range of network devices and services.
&lt;/p&gt;&lt;p&gt;
As Asterisk becomes an important part of today&#039;s network infrastructure it becomes more important to be able to monitor it for outages and resource usage. Jeff Gehlbach of &lt;a href=&#034;http://www.opennms.com/&#034;&gt;The OpenNMS Group&lt;/a&gt; is the de facto maintainer of res_snmp and is working on improved monitoring for Asterisk with OpenNMS. His &lt;a href=&#034;http://asterisk-java.org/static/OpenNMS%20and%20Asterisk.pdf&#034;&gt;slides&lt;/a&gt; from a recent talk in Frankfurt provide a good overview of the effort.
&lt;/p&gt;&lt;p&gt;
In addition to monitoring Asterisk Jeff has also added support to send OpenNMS notifications through Asterisk. This allows staff to be notified by a phone call of any outages in the network. The notification module is based on Asterisk-Java and uses the originate feature of the Manager API along with a custom AGI script that reads the notice details.
&lt;/p&gt;&lt;p&gt;
Jeff has made a &lt;a href=&#034;http://asterisk-java.org/static/opennms-asterisk-notifications.swf&#034;&gt;screencast&lt;/a&gt; that shows it in action. If you are interested in the details have a look at his &lt;a href=&#034;https://opennms.svn.sourceforge.net/svnroot/opennms/opennms/trunk/opennms-asterisk/src/main/java/org/opennms/netmgt/notifd/AsteriskOriginateNotificationStrategy.java&#034;&gt;strategy class&lt;/a&gt; for originating calls and the &lt;a href=&#034;https://opennms.svn.sourceforge.net/svnroot/opennms/opennms/trunk/opennms-asterisk/src/main/java/org/opennms/netmgt/asterisk/agi/scripts/ReadNoticeDetailsAgiScript.java&#034;&gt;AGI script&lt;/a&gt; that reads some of the notice details. Along with a few &lt;a href=&#034;https://opennms.svn.sourceforge.net/svnroot/opennms/opennms/trunk/opennms-base-assembly/src/main/filtered/etc/asterisk-configuration.properties&#034;&gt;properties&lt;/a&gt; for configuration this makes a good example on how to integrate Asterisk into your applications with Asterisk-Java.
&lt;/p&gt;
&lt;p&gt;&lt;b&gt;References&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#034;http://www.opennms.org/&#034;&gt;OpenNMS homepage&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Jeff&#039;s slides on &lt;a href=&#034;http://asterisk-java.org/static/OpenNMS%20and%20Asterisk.pdf&#034;&gt;OpenNMS and Asterisk&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Jeff&#039;s screencast on &lt;a href=&#034;http://asterisk-java.org/static/opennms-asterisk-notifications.swf&#034;&gt;OpenNMS Asterisk Notifications&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/p&gt;


        </description>
      
      
    
  </item>
  
  <item rdf:about="http://blogs.reucon.com/asterisk-java/2009/01/20/free_implementation_of_iax_in_java.html">
    <title>Free Implementation of IAX in Java</title>
    <link>http://blogs.reucon.com/asterisk-java/2009/01/20/free_implementation_of_iax_in_java.html</link>
    
      
        <description>
          &lt;p&gt;
Tim Panton &lt;a href=&#034;http://lists.digium.com/pipermail/asterisk-users/2009-January/224730.html&#034;&gt;recently announced&lt;/a&gt; that &lt;a href=&#034;http://www.mexuar.com/&#034;&gt;Mexuar&lt;/a&gt; has released their &lt;a href=&#034;http://www.mexuar.com/developers&#034;&gt;Correlata SDK&lt;/a&gt; under the terms of GPLv3. It is available for download at &lt;a href=&#034;http://www.mexuar.com/files/corraleta_sdk.rar&#034;&gt;http://www.mexuar.com/files/corraleta_sdk.rar&lt;/a&gt;.
&lt;/p&gt;&lt;p&gt;
Correlata SDK is a pure Java implementation of the &lt;a href=&#034;http://en.wikipedia.org/wiki/Inter-Asterisk_eXchange&#034;&gt;IAX2&lt;/a&gt; protocol. It includes an applet that can be accessed via JavaScript which makes it useful as a softphone embedded into web pages. In contrast to SIP IAX2 is firewall and NAT friendly.
&lt;/p&gt;&lt;p&gt;
To use the code you have to compile the sources and create a jar file. Then you have to sign it to allow the applet to access the microphone. Finally you&#039;ll setup a web page with the applet and add some JavaScript. You can have a look at the source code of the &lt;a href=&#034;http://www.mexuar.com/&#034;&gt;Mexuar homepage&lt;/a&gt; to see an example.
&lt;/p&gt;&lt;p&gt;
Though Mexuar has published the source code under GPL the download only contains the plain Java sources. There is no documentation except for JavaDoc, no build script and no sample code. The link to the download is quite hidden on their website. While Mexuar offers paid support, licenses and manged hosting there doesn&#039;t seem to be an Open Source community around it yet. Tim suggested to set up a project on Sourceforge or Google Code to build one. However due to his former relationship with Mexuar he prefers not be the project lead.
&lt;/p&gt;&lt;p&gt;
I think the code is a great complement to Asterisk-Java and will be very useful for a lot of applications. If you are also interested in giving it a good home and add some polish feel free to comment on this posting or discuss it on our &lt;a href=&#034;http://asterisk-java.org/development/mail-lists.html&#034;&gt;mailing list&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;&lt;b&gt;References&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#034;http://blogs.reucon.com/asterisk-java/files/corraleta_sdk.rar&#034;&gt;Download Source Code&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#034;http://blogs.reucon.com/asterisk-java/files/Tim%20Panton%20AstriconDallas.ppt&#034;&gt;Implementing IAX2 In Java&lt;/a&gt;, presentation at Astricon Dallas by Tim Panton in 2006&lt;/li&gt;
&lt;/ul&gt;
        </description>
      
      
    
  </item>
  
  <item rdf:about="http://blogs.reucon.com/asterisk-java/2009/01/15/asterisk_java_with_groovy_presentation.html">
    <title>Asterisk-Java With Groovy Presentation</title>
    <link>http://blogs.reucon.com/asterisk-java/2009/01/15/asterisk_java_with_groovy_presentation.html</link>
    
      
        <description>
          &lt;p&gt;&lt;a href=&#034;http://localtone.blogspot.com/&#034;&gt;Justin Grammens&lt;/a&gt; has published a great overview of using Asterisk and Groovy with Asterisk-Java showing some real-worl examples.&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;object style=&#034;margin:0px&#034; width=&#034;425&#034; height=&#034;355&#034;&gt;&lt;param name=&#034;movie&#034; value=&#034;http://static.slideshare.net/swf/ssplayer2.swf?doc=gumvoip-123073800046-phpapp01&amp;stripped_title=gumvoip&#034; /&gt;&lt;param name=&#034;allowFullScreen&#034; value=&#034;true&#034;/&gt;&lt;param name=&#034;allowScriptAccess&#034; value=&#034;always&#034;/&gt;&lt;embed src=&#034;http://static.slideshare.net/swf/ssplayer2.swf?doc=gumvoip-123073800046-phpapp01&amp;stripped_title=gumvoip&#034; type=&#034;application/x-shockwave-flash&#034; allowscriptaccess=&#034;always&#034; allowfullscreen=&#034;true&#034; width=&#034;425&#034; height=&#034;355&#034;&gt;&lt;/embed&gt;&lt;/object&gt;
&lt;/p&gt;
&lt;p&gt;The presentation is also available from &lt;a href=&#034;http://www.slideshare.net/justingrammens/gumvoip&#034;&gt;SlideShare&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;You might also want to have a look at Justin&#039;s blog &lt;a href=&#034;http://localtone.blogspot.com/&#034;&gt;Localtone&lt;/a&gt;. You&#039;ll find lots of information on Asterisk, Ruby and Groovy including the Ruby framework &lt;a href=&#034;http://www.adhearsion.com/&#034;&gt;Adhearsion&lt;/a&gt; and some screencasts. I recommend his screencast on &lt;a href=&#034;http://localtone.blogspot.com/2008/09/blog-post.html&#034;&gt;how to setup Asterisk&lt;/a&gt; to any Java or Ruby developer who wants to get started with VoIP and Asterisk.&lt;/p&gt;
        </description>
      
      
    
  </item>
  
  <item rdf:about="http://blogs.reucon.com/asterisk-java/2008/12/27/users_zimbra_integration.html">
    <title>Users: Zimbra Integration</title>
    <link>http://blogs.reucon.com/asterisk-java/2008/12/27/users_zimbra_integration.html</link>
    
      
        <description>
          &lt;p&gt;&lt;img src=&#034;/asterisk-java/images/zimbra.png&#034; align=&#034;right&#034;/&gt;
&lt;a href=&#034;http://www.zimbra.com/&#034;&gt;Zimbra&lt;/a&gt; is an open source groupware product for messaging and collaboration. Its core is implemented in Java and provides extension points for custom plugins so called &lt;a href=&#034;http://www.zimbra.com/products/zimlets.html&#034;&gt;Zimlets&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Swiss company &lt;a href=&#034;http://www.bnc.ch/&#034;&gt;BNC&lt;/a&gt; has developed a Zimlet to connect Asterisk to Zimbra using Asterisk-Java. The &lt;a href=&#034;http://www.bnc.ch/ch-bnc-asterisk.html&#034;&gt;Asterisk PBX Integration Zimlet&lt;/a&gt; is available from &lt;a href=&#034;http://sourceforge.net/projects/ch-bnc-asterisk/&#034;&gt;Sourceforge&lt;/a&gt; under the terms of the GPL.&lt;/p&gt;
&lt;p&gt;Features include&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Dial on-click in Contacts and Emails&lt;/li&gt;
&lt;li&gt;Sending SMS trough Asterisk&#039;s SMS application&lt;/li&gt;
&lt;li&gt;Inbound call notification&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;b&gt;References&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#034;http://www.zimbra.com/products/&#034;&gt;Zimbra Collaboration Suite&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#034;http://www.bnc.ch/ch-bnc-asterisk.html&#034;&gt;Asterisk PBX Integration Zimlet&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;


        </description>
      
      
    
  </item>
  
  <item rdf:about="http://blogs.reucon.com/asterisk-java/2008/11/13/users_asterisk_java_and_spring.html">
    <title>Users: Asterisk-Java and Spring</title>
    <link>http://blogs.reucon.com/asterisk-java/2008/11/13/users_asterisk_java_and_spring.html</link>
    
      
        <description>
          &lt;p&gt;
Sajid Moinuddin has blogged about using &lt;a href=&#034;http://another-lazy-blogger.blogspot.com/2008/11/asterisk-java-spring.html&#034;&gt;Asterisk-Java with Spring&lt;/a&gt;. His article shows how to implement a &lt;tt&gt;BeanNameAwareAGIMappingStrategy&lt;/tt&gt; that automatically maps AGI URLs to Spring beans without any additional configuration.
&lt;/p&gt;
&lt;p&gt;&lt;b&gt;References:&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#034;http://another-lazy-blogger.blogspot.com/2008/11/asterisk-java-spring.html&#034;&gt;Sajid Moinuddin: Asterisk-Java and Spring&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
        </description>
      
      
    
  </item>
  

</rdf:RDF>
