<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.voxeo.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Voxeo Labs</title>
	
	<link>http://blogs.voxeo.com/voxeolabs</link>
	<description>Invest. Incubate. Innovate.</description>
	<lastBuildDate>Tue, 09 Aug 2011 23:51:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.voxeo.com/VoxeoLabs" /><feedburner:info uri="voxeolabs" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Get Started with Moho</title>
		<link>http://feeds.voxeo.com/~r/VoxeoLabs/~3/n7GX0889MIg/</link>
		<comments>http://blogs.voxeo.com/voxeolabs/2011/06/02/get-started-with-moho/#comments</comments>
		<pubDate>Thu, 02 Jun 2011 04:15:35 +0000</pubDate>
		<dc:creator>Wei Chen</dc:creator>
				<category><![CDATA[Moho]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[moho]]></category>
		<category><![CDATA[Prism]]></category>

		<guid isPermaLink="false">http://labs.voxeo.com/?p=374</guid>
		<description><![CDATA[Last post I showed you how simple a Moho application looks like. Now let me explain a bit more how that simple Moho application works. To develop a Moho application, you have to start with a Java class that implements Application interface. This class must be a public class with a public default constructor. The two [...]


Related posts:<ol><li><a href='http://blogs.voxeo.com/voxeolabs/2011/05/27/introducing-moho-framework/' rel='bookmark' title='Introducing Moho Framework'>Introducing Moho Framework</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://labs.voxeo.com/2011/05/27/introducing-moho-framework/">Last post</a> I showed you how simple a Moho application looks like. Now let me explain a bit more how that simple Moho application works.</p>
<p>To develop a Moho application, you have to start with a Java class that implements <a href="http://labs.voxeo.com/docs/moho/0.7/com/voxeo/moho/Application.html">Application</a> interface. This class must be a public class with a public default constructor. The two abstract methods defined in <a href="../docs/moho/0.7/com/voxeo/moho/Application.html">Application</a> are to notify the application about lifecycle changes. So a simplest do-nothing Moho application looks like the following.</p>
<pre class="brush: java;">
public class HelloWorld implements Application {
  public void init(ApplicationContext context) {
  }
  public void destroy() {
  }
}
</pre>
<p>Next let&#8217;s add some code to accept an incoming call.</p>
<pre class="brush: java;">
public class HelloWorld implements Application {
   ...
  @State
  public void onCall(Call call) {
     call.answer();
   }
}
</pre>
<p>Now HelloWorld application can receive and answer an incoming call. The @State annotation has something to do with Moho&#8217;s state based event dispatching, which I will talk about in the future.</p>
<p>To make this application deployable to <a href="http://www.voxeo.com/prism">Voxeo PRISM</a>, all you have to do is to pack this application into a <a href="http://labs.voxeo.com/files/2011/06/Moho.2.war">WAR</a>.</p>
<blockquote>
<pre>moho.2.war
  |--- WEB-INF
         |--- classes
                |--- HelloWorld.class</pre>
</blockquote>
<p>To run this application, simply copy the WAR to <code>&lt;prism&gt;/apps</code> directory. To test, simply use a softphone to dial something like <code>sip:moho@localhost</code>.</p>
<p>&copy;2012 <a href="http://blogs.voxeo.com/voxeolabs">Voxeo Labs</a>. All Rights Reserved.</p>.

<p>Related posts:<ol><li><a href='http://blogs.voxeo.com/voxeolabs/2011/05/27/introducing-moho-framework/' rel='bookmark' title='Introducing Moho Framework'>Introducing Moho Framework</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/VoxeoLabs/~4/n7GX0889MIg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blogs.voxeo.com/voxeolabs/2011/06/02/get-started-with-moho/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://blogs.voxeo.com/voxeolabs/2011/06/02/get-started-with-moho/</feedburner:origLink></item>
		<item>
		<title>Introducing Moho Framework</title>
		<link>http://feeds.voxeo.com/~r/VoxeoLabs/~3/AEBZ27wRqdY/</link>
		<comments>http://blogs.voxeo.com/voxeolabs/2011/05/27/introducing-moho-framework/#comments</comments>
		<pubDate>Fri, 27 May 2011 21:52:47 +0000</pubDate>
		<dc:creator>Wei Chen</dc:creator>
				<category><![CDATA[Moho]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[moho]]></category>
		<category><![CDATA[Prism]]></category>

		<guid isPermaLink="false">http://labs.voxeo.com/?p=364</guid>
		<description><![CDATA[I have blogged quite a bit about developing VoIP applications using SIP Servlet and Java Media Control APIs on top of Voxeo PRISM. Both are great standards by the Java community for call controls and media controls. But I have to admit that using these two APIs is not easy. Developers have to not only [...]


Related posts:<ol><li><a href='http://blogs.voxeo.com/voxeolabs/2011/06/02/get-started-with-moho/' rel='bookmark' title='Get Started with Moho'>Get Started with Moho</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I have blogged quite a bit about developing VoIP applications using <a href="http://www.jcp.org/en/jsr/detail?id=289">SIP Servlet</a> and <a href="http://www.jcp.org/en/jsr/detail?id=309">Java Media Control</a> APIs on top of <a href="http://www.voxeo.com/prism">Voxeo PRISM</a>. Both  are great standards by the Java community for call controls and media controls. But I have to admit that using these two APIs is not easy. Developers have to not only understand underlying protocols  but also deal with the complexity of asynchronous event driven programing. Even worse, since SIP Servlet and Java Media Control are independent APIs, developers have to deal with different event models and uncorrelated state machines.</p>
<p>Given all the complexities of using <a href="http://www.jcp.org/en/jsr/detail?id=289">SIP Servlet</a> and <a href="http://www.jcp.org/en/jsr/detail?id=309">Java Media Control</a> APIs, I am quite excited about the <a href="http://labs.voxeo.com/moho/">Moho</a> framework we are developing on top of SIP Servlet and Java Media Control APIs. It offers the best of both world. First, you have one much-easy-to-use and unified API for both call control and media control. Second, <a href="http://labs.voxeo.com/moho/">Moho</a> framework is open source and sits on top of standard <a href="http://www.jcp.org/en/jsr/detail?id=289">SIP Servlet</a> and <a href="http://www.jcp.org/en/jsr/detail?id=309">Java Media Control</a> APIs so you don&#8217;t have to worry about vendor lock-in.</p>
<p>Before I get into details about <a href="../moho/">Moho</a>, let me show you a simple example to see how much work can be reduced by using <a href="../moho/">Moho</a>. Here I want to develop a simple IVR application which accepts every call and announces &#8220;Hello World&#8221; to the caller every 5 seconds.</p>
<p>To write this using <a href="http://www.jcp.org/en/jsr/detail?id=289">SIP Servlet</a> and Java Media Control, here is the <a href="https://gist.github.com/996180">HelloWorldServlet.java</a>, which has about 200 lines of Java code.</p>
<p>On the other hand, a HellowWorld Moho application that provides the same functionality only has about 25 lines of Java code.</p>
<pre class="brush: java;">
package com.voxeo.moho.tutorial.one;

import com.voxeo.moho.Application;
import com.voxeo.moho.ApplicationContext;
import com.voxeo.moho.Call;
import com.voxeo.moho.State;

public class HelloWorld implements Application {
  public void init(ApplicationContext context) {
  }

  public void destroy() {
  }

  @State
  public void onCall(Call call) {
    call.answer();
    while (call.getCallState() == Call.State.CONNECTED) {
      try {
        call.getMediaService().output(&quot;Hello World!&quot;).get();
        Thread.sleep(5000);
      }
      catch (Exception e) {
      }
    }
  }
}
</pre>
<p>Even with far less lines of code, this Moho application actually handles more functions, such as SIP reInvite, SIP Cancel, etc.</p>
<p>To run this <a href="http://labs.voxeo.com/files/2011/05/Moho.1.war">HelloWorld Moho application</a>, simply download and deploy the <a href="http://labs.voxeo.com/files/2011/05/Moho.1.war">WAR</a> to &lt;prism&gt;/apps directory, assuming you have <a href="http://www.voxeo.com/prism">Voxeo PRISM</a> already installed.</p>
<p>You may also run this application on any other <a href="http://www.jcp.org/en/jsr/detail?id=289">JSR 289</a> and <a href="http://www.jcp.org/en/jsr/detail?id=309">JSR 309</a> compliant servers. Since other servers probably don&#8217;t have Moho dependencies embedded, you have to add all the Moho runtime dependencies to WAR. Moho runtime dependencies can be downloaded from <a href="http://labs.voxeo.com/moho/downloads/">Moho Downloads</a>.</p>
<p>&copy;2012 <a href="http://blogs.voxeo.com/voxeolabs">Voxeo Labs</a>. All Rights Reserved.</p>.

<p>Related posts:<ol><li><a href='http://blogs.voxeo.com/voxeolabs/2011/06/02/get-started-with-moho/' rel='bookmark' title='Get Started with Moho'>Get Started with Moho</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/VoxeoLabs/~4/AEBZ27wRqdY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blogs.voxeo.com/voxeolabs/2011/05/27/introducing-moho-framework/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://blogs.voxeo.com/voxeolabs/2011/05/27/introducing-moho-framework/</feedburner:origLink></item>
		<item>
		<title>San Francisco Telephony Meetup on December 15th</title>
		<link>http://feeds.voxeo.com/~r/VoxeoLabs/~3/4kOHkrLbzxs/</link>
		<comments>http://blogs.voxeo.com/voxeolabs/2010/12/06/san-francisco-telephony-meetup-on-december-15th/#comments</comments>
		<pubDate>Mon, 06 Dec 2010 18:44:57 +0000</pubDate>
		<dc:creator>Jason Goecke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://labs.voxeo.com/?p=304</guid>
		<description><![CDATA[This month&#8217;s SF Telephony Meetup, headlined as &#8216;Telephony is Sexy&#8217;, is shaping up to have an interesting agenda: Alex Kauffmann, NYU, on Possibilities in Telephony Alex is a recent graduate of the ITP program at NYU. He has done several projects that involve telephony and interaction design as artistic media to surprise and delight. He will [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p><a href="http://labs.voxeo.com/files/2010/12/global_15612354.jpeg.png"><img class="alignright size-full wp-image-305" title="SF Telephony Meetup" src="http://labs.voxeo.com/files/2010/12/global_15612354.jpeg.png" alt="" width="158" height="157" /></a>This month&#8217;s <a href="http://www.meetup.com/sftelephony/calendar/15271601/?from=list&amp;offset=0" target="_blank">SF Telephony Meetup</a>, headlined as &#8216;Telephony is Sexy&#8217;, is shaping up to have an interesting agenda:</p>
<ul>
<li>Alex Kauffmann, NYU, on Possibilities in Telephony</li>
</ul>
<p>Alex is a recent graduate of the I<a href="http://itp.nyu.edu/itp/" target="_blank">TP program at NYU</a>. He has done several projects that involve telephony and interaction design as artistic media to surprise and delight. He will give a brief introduction to his approach followed by showing three or four innovative use of telephony in his projects.</p>
<ul>
<li>Adam Odessky, Orange Labs, on Augmented Reality in Telephony</li>
</ul>
<p>Adam will demo and talk about how cloud communications are a crucial component in the creation of next generation mobile enterprise mashups that boost productivity and improve collaboration among workers. We also delve into other topics such as augmented reality to better understand how the two mediums can work together in the enterprise.</p>
<ul>
<li><a href="http://twitter.com/jsgoecke" target="_blank">Jason Goecke</a>, Voxeo Labs, on Asterisk SCF</li>
</ul>
<p>At the recent Astricon, Digium announced Asterisk SCF, a framework that allows developers to create real-time communications applications that include voice, video and text and that meet the demands of a full range of uses, from embedded applications to enterprise and carrier solutions. Asterisk SCF is architected to provide the highest levels of availability, scalability, extensibility, fault-tolerance and performance. Jason will give an overview and insights of what was launched at Astricon.</p>
<p>So mark your calendar and come join us for this month&#8217;s meetup. The event will be held at 6.30pm on Wednesday December 15, 2010 at <a href="http://www.meetup.com/sftelephony/venue/1270053/?eventId=15271601&amp;popup=true" target="_blank">Orange Labs</a> in South San Francisco. See you there!</p>
<p>&copy;2012 <a href="http://blogs.voxeo.com/voxeolabs">Voxeo Labs</a>. All Rights Reserved.</p>.

<p>No related posts.</p><img src="http://feeds.feedburner.com/~r/VoxeoLabs/~4/4kOHkrLbzxs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blogs.voxeo.com/voxeolabs/2010/12/06/san-francisco-telephony-meetup-on-december-15th/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blogs.voxeo.com/voxeolabs/2010/12/06/san-francisco-telephony-meetup-on-december-15th/</feedburner:origLink></item>
		<item>
		<title>Want to understand Phono? Tropo? Voxeo Labs? Listen to this podcast!</title>
		<link>http://feeds.voxeo.com/~r/VoxeoLabs/~3/M99yiHT6Oeg/</link>
		<comments>http://blogs.voxeo.com/voxeolabs/2010/12/01/want-to-understand-phono-tropo-voxeo-labs-listen-to-this-podcast/#comments</comments>
		<pubDate>Wed, 01 Dec 2010 22:08:29 +0000</pubDate>
		<dc:creator>Dan York</dc:creator>
				<category><![CDATA[Podcasts]]></category>
		<category><![CDATA[Voxeo Labs]]></category>
		<category><![CDATA[phono]]></category>
		<category><![CDATA[Tropo]]></category>

		<guid isPermaLink="false">http://labs.voxeo.com/?p=302</guid>
		<description><![CDATA[Want to know what Phono is all about? What Tropo has to offer and how it is different from other services? And what all the cool things are that are brewing in Voxeo Labs? If so, check out this latest episode of the ChangeLog podcast where host Wynn Netherland spoke with Voxeo Lab&#8217;s Chris Matthieu: [...]


Related posts:<ol><li><a href='http://blogs.voxeo.com/voxeolabs/2010/10/16/phono-com-is-live/' rel='bookmark' title='Phono.com Is Live!'>Phono.com Is Live!</a></li>
<li><a href='http://blogs.voxeo.com/voxeolabs/2009/07/22/adhearsion-and-voxeo-join-to-create-voxeo-labs/' rel='bookmark' title='Adhearsion and Voxeo join to create Voxeo Labs!'>Adhearsion and Voxeo join to create Voxeo Labs!</a></li>
<li><a href='http://blogs.voxeo.com/voxeolabs/2010/04/19/welcome-to-the-new-voxeo-labs-design-and-site/' rel='bookmark' title='Welcome to the new &#8220;Voxeo Labs&#8221; design and site'>Welcome to the new &#8220;Voxeo Labs&#8221; design and site</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://thechangelog.com/post/2052257896/episode-0-4-1-telephony-with-chris-matthieu"><img src="http://labs.voxeo.com/files/2010/12/changelogpodcast.jpg" alt="changelogpodcast.jpg" border="0" width="197" height="101" style="float:right;" /></a>Want to know what <a href="http://phono.com/">Phono</a> is all about?  What <a href="http://tropo.com/">Tropo</a> has to offer and how it is different from other services?  And what all the cool things are that are brewing in <a href="http://labs.voxeo.com">Voxeo Labs</a>?</p>
<p>If so, check out this <a href="http://thechangelog.com/post/2052257896/episode-0-4-1-telephony-with-chris-matthieu">latest episode</a> of the <a href="http://thechangelog.com/">ChangeLog podcast</a> where host Wynn Netherland spoke with Voxeo Lab&#8217;s Chris Matthieu:</p>
<blockquote><p><a href="http://thechangelog.com/post/2052257896/episode-0-4-1-telephony-with-chris-matthieu">http://thechangelog.com/post/2052257896/episode-0-4-1-telephony-with-chris-matthieu</a></p></blockquote>
<p>It&#8217;s a fun session where Chris goes into <a href="http://phono.com/">Phono</a>, <a href="http://tropo.com">Tropo</a>, <a href="http://teleku.com/">Teleku</a>, <a href="http://adhearsion.com">Adhearsion</a>, <a href="http://tropo.com/agitate">AGItate</a> and throws in some alphabet soup of TAPI, SAPI, SIP, XMPP and more&#8230;</p>
<p>Thanks got to the ChangeLog team for this great interview!</p>
<p>&copy;2012 <a href="http://blogs.voxeo.com/voxeolabs">Voxeo Labs</a>. All Rights Reserved.</p>.

<p>Related posts:<ol><li><a href='http://blogs.voxeo.com/voxeolabs/2010/10/16/phono-com-is-live/' rel='bookmark' title='Phono.com Is Live!'>Phono.com Is Live!</a></li>
<li><a href='http://blogs.voxeo.com/voxeolabs/2009/07/22/adhearsion-and-voxeo-join-to-create-voxeo-labs/' rel='bookmark' title='Adhearsion and Voxeo join to create Voxeo Labs!'>Adhearsion and Voxeo join to create Voxeo Labs!</a></li>
<li><a href='http://blogs.voxeo.com/voxeolabs/2010/04/19/welcome-to-the-new-voxeo-labs-design-and-site/' rel='bookmark' title='Welcome to the new &#8220;Voxeo Labs&#8221; design and site'>Welcome to the new &#8220;Voxeo Labs&#8221; design and site</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/VoxeoLabs/~4/M99yiHT6Oeg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blogs.voxeo.com/voxeolabs/2010/12/01/want-to-understand-phono-tropo-voxeo-labs-listen-to-this-podcast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blogs.voxeo.com/voxeolabs/2010/12/01/want-to-understand-phono-tropo-voxeo-labs-listen-to-this-podcast/</feedburner:origLink></item>
		<item>
		<title>Adhearsion Goes 1.0</title>
		<link>http://feeds.voxeo.com/~r/VoxeoLabs/~3/4-LK_Bcas84/</link>
		<comments>http://blogs.voxeo.com/voxeolabs/2010/10/28/adhearsion-goes-1-0/#comments</comments>
		<pubDate>Thu, 28 Oct 2010 15:57:58 +0000</pubDate>
		<dc:creator>Jason Goecke</dc:creator>
				<category><![CDATA[Adhearsion]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[agi]]></category>
		<category><![CDATA[agitate]]></category>
		<category><![CDATA[asterisk]]></category>
		<category><![CDATA[astricon]]></category>

		<guid isPermaLink="false">http://labs.voxeo.com/?p=298</guid>
		<description><![CDATA[I am excited to announce that through Ben Klang&#8217;s stewardship Adhearsion goes 1.0 at Astricon today! From the announcement: Thanks to the hard work of many people in the Adhearsion community, I am pleased to be able to announce the immediate availability of Adhearsion version 1.0.  Since Jay Phillips first began work on the project [...]


Related posts:<ol><li><a href='http://blogs.voxeo.com/voxeolabs/2010/10/19/join-us-to-talk-about-adhearsion-at-astricon/' rel='bookmark' title='Join Us to Talk About Adhearsion at Astricon'>Join Us to Talk About Adhearsion at Astricon</a></li>
<li><a href='http://blogs.voxeo.com/voxeolabs/2010/06/24/new-adhearsion-version-0-8-4-released/' rel='bookmark' title='New Adhearsion Version 0.8.4 Released'>New Adhearsion Version 0.8.4 Released</a></li>
<li><a href='http://blogs.voxeo.com/voxeolabs/2010/10/08/agitate-screencast-series-with-adhearsion-and-asterisk/' rel='bookmark' title='AGItate Screencast Series with Adhearsion and Asterisk'>AGItate Screencast Series with Adhearsion and Asterisk</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://labs.voxeo.com/files/2010/04/Adhearsion_-Open-Source-Telephony-Development-Framework.jpg"><img class="alignright size-medium wp-image-102" title="Adhearsion_ Open-Source Telephony Development Framework" src="http://labs.voxeo.com/files/2010/04/Adhearsion_-Open-Source-Telephony-Development-Framework-300x64.jpg" alt="" width="300" height="64" /></a>I am excited to announce that through <a href="http://twitter.com/bklang">Ben Klang&#8217;s</a> stewardship <a href="http://adhearsion.com" target="_blank">Adhearsion</a> goes 1.0 at Astricon today! From the announcement:</p>
<blockquote><p>Thanks to the hard work of many people in the Adhearsion community, I am pleased to be able to announce the immediate availability of Adhearsion version 1.0.  Since <a href="http://twitter.com/jicksta">Jay Phillips</a> first began work on the project in 2006 Adhearsion has changed the way developers think about telephony applications.  Now with several years of operating experience and multitudes of applications deployed to production, it is time to acknowledge this important milestone.</p>
<p>What does Adhearsion 1.0 mean?</p>
<ul>
<li>A battle-tested API.  Adhearsion 1.0 has defined a well-tested API and it has been proven with over two years of real-world deployment experience.</li>
<li>A “stable” branch.  Adhearsion’s exposed API will remain stable throughout this major version number series.  No backward-incompatible changes will be made, making it safer for developers to trust future upgrades.</li>
<li>Updated documentation.  Thanks to <a href="http://twitter.com/JD_Gryph" target="_blank">Justin Dupree</a> of Tropo, Adhearsion’s docs received a lot of TLC in the form of content updates and a migration to Github Wiki.  Check them out at docs.adhearsion.com</li>
<li>Gem-based Components.  The final feature added to Adhearsion prior to 1.0 is the ability to install and use components via RubyGems.  Learn more about that in the Gem-based Components wiki page here (<a rel="nofollow" href="http://www.google.com/url?sa=D&amp;q=http://github.com/adhearsion/adhearsion/wiki/Gem-based-components&amp;usg=AFQjCNFlkhN2NU2EcWYM06RhTo2zwtItrg" target="_blank">http://github.com/adhearsion/adhearsion/wiki/Gem-based-components</a>).</li>
</ul>
<p>To get your hands on Adhearsion 1.0 run, don’t walk, to your nearest command line and issue a:sudo gem install adhearsion</p>
<p>As always, don’t be a stranger.  We can be found on the Adhearsion mailing list (<a rel="nofollow" href="http://www.google.com/url?sa=D&amp;q=http://groups.google.com/group/adherasion&amp;usg=AFQjCNEZh5v-TsBvQvRUPZgnYz6VmUvKoQ" target="_blank">http://groups.google.com/group/adherasion</a>), in IRC (irc.freenode.net #adhearsion) and on the Adhearsion website (<a rel="nofollow" href="http://www.google.com/url?sa=D&amp;q=http://adhearsion.com&amp;usg=AFQjCNHie6CH0zmiXLVz8RvINnStBYmtrg" target="_blank">http://adhearsion.com</a>). &#8211; Ben Klang</p></blockquote>
<p>And if you are at <a href="http://astricon.net" target="_blank">Astricon</a>, be sure to come and see us talk about Adhearsion today at 1.45pm in National Harbor room #6.</p>
<p>&copy;2012 <a href="http://blogs.voxeo.com/voxeolabs">Voxeo Labs</a>. All Rights Reserved.</p>.

<p>Related posts:<ol><li><a href='http://blogs.voxeo.com/voxeolabs/2010/10/19/join-us-to-talk-about-adhearsion-at-astricon/' rel='bookmark' title='Join Us to Talk About Adhearsion at Astricon'>Join Us to Talk About Adhearsion at Astricon</a></li>
<li><a href='http://blogs.voxeo.com/voxeolabs/2010/06/24/new-adhearsion-version-0-8-4-released/' rel='bookmark' title='New Adhearsion Version 0.8.4 Released'>New Adhearsion Version 0.8.4 Released</a></li>
<li><a href='http://blogs.voxeo.com/voxeolabs/2010/10/08/agitate-screencast-series-with-adhearsion-and-asterisk/' rel='bookmark' title='AGItate Screencast Series with Adhearsion and Asterisk'>AGItate Screencast Series with Adhearsion and Asterisk</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/VoxeoLabs/~4/4-LK_Bcas84" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blogs.voxeo.com/voxeolabs/2010/10/28/adhearsion-goes-1-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blogs.voxeo.com/voxeolabs/2010/10/28/adhearsion-goes-1-0/</feedburner:origLink></item>
		<item>
		<title>Join Us to Talk About Adhearsion at Astricon</title>
		<link>http://feeds.voxeo.com/~r/VoxeoLabs/~3/-iP4yw_Pvwg/</link>
		<comments>http://blogs.voxeo.com/voxeolabs/2010/10/19/join-us-to-talk-about-adhearsion-at-astricon/#comments</comments>
		<pubDate>Tue, 19 Oct 2010 17:06:16 +0000</pubDate>
		<dc:creator>Jason Goecke</dc:creator>
				<category><![CDATA[Adhearsion]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Voxeo Labs]]></category>
		<category><![CDATA[asterisk]]></category>
		<category><![CDATA[astricon]]></category>

		<guid isPermaLink="false">http://labs.voxeo.com/?p=294</guid>
		<description><![CDATA[If you are headed to Astricon in National Harbor, MD next week, be sure to attend the Adhearsion talk at 1.45pm on Thursday October 28th. Ben Klang and I will be giving an overview of Adhearsion with Asterisk, as well as updating the community on all of the work we have been doing on Adhearsion [...]


Related posts:<ol><li><a href='http://blogs.voxeo.com/voxeolabs/2010/10/28/adhearsion-goes-1-0/' rel='bookmark' title='Adhearsion Goes 1.0'>Adhearsion Goes 1.0</a></li>
<li><a href='http://blogs.voxeo.com/voxeolabs/2010/06/24/new-adhearsion-version-0-8-4-released/' rel='bookmark' title='New Adhearsion Version 0.8.4 Released'>New Adhearsion Version 0.8.4 Released</a></li>
<li><a href='http://blogs.voxeo.com/voxeolabs/2010/06/22/a-new-core-developer-joins-the-adhearsion-project/' rel='bookmark' title='A New Core Developer Joins the Adhearsion Project'>A New Core Developer Joins the Adhearsion Project</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://labs.voxeo.com/files/2010/10/AstriCon_-October-26-28-2010_-Gaylord-National-Resort-Convention-Center.jpg"><img class="alignright size-medium wp-image-296" title="AstriCon_ October 26-28, 2010_ Gaylord National Resort &amp; Convention Center" src="http://labs.voxeo.com/files/2010/10/AstriCon_-October-26-28-2010_-Gaylord-National-Resort-Convention-Center-300x107.jpg" alt="" width="300" height="107" /></a>If you are headed to <a href="http://astricon.net">Astricon</a> in National Harbor, MD next week, be sure to attend the <a href="http://www.astricon.net/confDescriptions.aspx?t=TPA#TPA-10" target="_blank">Adhearsion talk at 1.45pm on Thursday October 28th</a>. <a href="http://twitter.com/bklang" target="_blank">Ben Klang</a> and <a href="http://twitter.com/jsgoecke" target="_blank">I</a> will be giving an overview of <a href="http://adhearsion.com" target="_blank">Adhearsion</a> with <a href="http://asterisk.org" target="_blank">Asterisk</a>, as well as updating the community on all of the work we have been doing on Adhearsion since the last Astricon.</p>
<p>We look forward to making a big announcement there too. See you all there!</p>
<p>&copy;2012 <a href="http://blogs.voxeo.com/voxeolabs">Voxeo Labs</a>. All Rights Reserved.</p>.

<p>Related posts:<ol><li><a href='http://blogs.voxeo.com/voxeolabs/2010/10/28/adhearsion-goes-1-0/' rel='bookmark' title='Adhearsion Goes 1.0'>Adhearsion Goes 1.0</a></li>
<li><a href='http://blogs.voxeo.com/voxeolabs/2010/06/24/new-adhearsion-version-0-8-4-released/' rel='bookmark' title='New Adhearsion Version 0.8.4 Released'>New Adhearsion Version 0.8.4 Released</a></li>
<li><a href='http://blogs.voxeo.com/voxeolabs/2010/06/22/a-new-core-developer-joins-the-adhearsion-project/' rel='bookmark' title='A New Core Developer Joins the Adhearsion Project'>A New Core Developer Joins the Adhearsion Project</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/VoxeoLabs/~4/-iP4yw_Pvwg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blogs.voxeo.com/voxeolabs/2010/10/19/join-us-to-talk-about-adhearsion-at-astricon/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://blogs.voxeo.com/voxeolabs/2010/10/19/join-us-to-talk-about-adhearsion-at-astricon/</feedburner:origLink></item>
		<item>
		<title>Phono.com Is Live!</title>
		<link>http://feeds.voxeo.com/~r/VoxeoLabs/~3/5VtBNAeNQi4/</link>
		<comments>http://blogs.voxeo.com/voxeolabs/2010/10/16/phono-com-is-live/#comments</comments>
		<pubDate>Sat, 16 Oct 2010 13:19:17 +0000</pubDate>
		<dc:creator>cmatthieu</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[launch]]></category>
		<category><![CDATA[phono]]></category>
		<category><![CDATA[phonosdk]]></category>
		<category><![CDATA[Tropo]]></category>
		<category><![CDATA[voxeo]]></category>

		<guid isPermaLink="false">http://labs.voxeo.com/?p=283</guid>
		<description><![CDATA[Voxeo Labs is extremely excited to announce our  latest game-changing communications technology called PhonoSDK! PhonoSDK is a simple jQuery Javascript plug-in that turns any Web browser into a multi-channel communications platform capable of placing and receiving VoIP telephone calls from the browser as well as handling real-time chat communications and more. PhonoSDK allows jQuery developers [...]


Related posts:<ol><li><a href='http://blogs.voxeo.com/voxeolabs/2010/12/01/want-to-understand-phono-tropo-voxeo-labs-listen-to-this-podcast/' rel='bookmark' title='Want to understand Phono? Tropo? Voxeo Labs? Listen to this podcast!'>Want to understand Phono? Tropo? Voxeo Labs? Listen to this podcast!</a></li>
<li><a href='http://blogs.voxeo.com/voxeolabs/2010/10/12/big-announcement-stay-tuned/' rel='bookmark' title='BIG Announcement &#8211; Stay Tuned!'>BIG Announcement &#8211; Stay Tuned!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://labs.voxeo.com/files/2010/10/phono.html_.jpg"><img class="alignleft size-medium wp-image-284" title="phono.html" src="http://labs.voxeo.com/files/2010/10/phono.html_-300x206.jpg" alt="" width="300" height="206" /></a></p>
<p><a href="http://labs.voxeo.com/">Voxeo Labs</a> is extremely excited to announce our  latest game-changing communications technology called <a href="http://phono.com">PhonoSDK</a>!</p>
<p>PhonoSDK is a simple <strong>jQuery </strong>Javascript<strong> </strong>plug-in that turns any Web browser into a <em>multi-channel communications platform</em> capable of placing and receiving VoIP telephone calls from the browser as well as handling real-time chat communications and more.</p>
<p>PhonoSDK allows jQuery developers to easily add and style a softphone in any web browser application and in minutes call any SIP address and receive calls to the SIP address dynamically create onReady.  Many web services already speak SIP such as <a href="http://tropo.com">Tropo</a>, <a href="http://teleku.com">Teleku</a>, and <a href="http://voxeo.com">Voxeo</a> platforms.  Tropo allows Web developers to build sophisticated telephony applications like banking IVR systems with a simple RESTful Web API that can be controlled by the user&#8217;s voice or touch tones from their browser using the PhonoSDK!</p>
<p>Keep an eyes on the <a href="http://blog.phono.com">Phono blog</a> and <a href="http://twitter.com/phonosdk">@PhonoSDK</a> on Twitter for updates on new features!  In the mean time, get your <strong>free</strong> copy of the PhonoSDK today at <a href="http://phono.com/download">http://phono.com/download</a>.</p>
<p>&copy;2012 <a href="http://blogs.voxeo.com/voxeolabs">Voxeo Labs</a>. All Rights Reserved.</p>.

<p>Related posts:<ol><li><a href='http://blogs.voxeo.com/voxeolabs/2010/12/01/want-to-understand-phono-tropo-voxeo-labs-listen-to-this-podcast/' rel='bookmark' title='Want to understand Phono? Tropo? Voxeo Labs? Listen to this podcast!'>Want to understand Phono? Tropo? Voxeo Labs? Listen to this podcast!</a></li>
<li><a href='http://blogs.voxeo.com/voxeolabs/2010/10/12/big-announcement-stay-tuned/' rel='bookmark' title='BIG Announcement &#8211; Stay Tuned!'>BIG Announcement &#8211; Stay Tuned!</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/VoxeoLabs/~4/5VtBNAeNQi4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blogs.voxeo.com/voxeolabs/2010/10/16/phono-com-is-live/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://blogs.voxeo.com/voxeolabs/2010/10/16/phono-com-is-live/</feedburner:origLink></item>
		<item>
		<title>BIG Announcement – Stay Tuned!</title>
		<link>http://feeds.voxeo.com/~r/VoxeoLabs/~3/Ja-ndSux0CE/</link>
		<comments>http://blogs.voxeo.com/voxeolabs/2010/10/12/big-announcement-stay-tuned/#comments</comments>
		<pubDate>Tue, 12 Oct 2010 16:58:34 +0000</pubDate>
		<dc:creator>cmatthieu</dc:creator>
				<category><![CDATA[Voxeo Labs]]></category>
		<category><![CDATA[announcement]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[phono]]></category>

		<guid isPermaLink="false">http://labs.voxeo.com/?p=258</guid>
		<description><![CDATA[Voxeo Labs will be making a BIG product announcement at the sold-out jQuery Conference in Boston this weekend (10/16 &#8211; 10/17)! All we can say in advance of the announcement is that our new product is going to be a disruptive and game-changing competitive weapon in the communications industry.  Stay tuned to our @Voxeo Twitter account, [...]


Related posts:<ol><li><a href='http://blogs.voxeo.com/voxeolabs/2010/10/16/phono-com-is-live/' rel='bookmark' title='Phono.com Is Live!'>Phono.com Is Live!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Voxeo Labs will be making a BIG product announcement at the sold-out <a href="http://events.jquery.org/2010/boston/">jQuery Conference</a> in Boston this weekend (10/16 &#8211; 10/17)!</p>
<p style="text-align: center;"><a href="http://labs.voxeo.com/files/2010/10/Phono1.jpg"><img class="size-full wp-image-262 aligncenter" title="Phono" src="http://labs.voxeo.com/files/2010/10/Phono1.jpg" alt="" width="637" height="529" /></a></p>
<p>All we can say in advance of the announcement is that our new product is going to be a disruptive and game-changing competitive weapon in the communications industry.  Stay tuned to our <a href="http://twitter.com/voxeo">@Voxeo Twitter</a> account, <a href="http://labs.voxeo.com">blog</a>, and new <a href="http://phono.com">product site</a> for up-to-the-minute news about this weekend&#8217;s launch!</p>
<p>&copy;2012 <a href="http://blogs.voxeo.com/voxeolabs">Voxeo Labs</a>. All Rights Reserved.</p>.

<p>Related posts:<ol><li><a href='http://blogs.voxeo.com/voxeolabs/2010/10/16/phono-com-is-live/' rel='bookmark' title='Phono.com Is Live!'>Phono.com Is Live!</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/VoxeoLabs/~4/Ja-ndSux0CE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blogs.voxeo.com/voxeolabs/2010/10/12/big-announcement-stay-tuned/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blogs.voxeo.com/voxeolabs/2010/10/12/big-announcement-stay-tuned/</feedburner:origLink></item>
		<item>
		<title>AGItate Screencast Series with Adhearsion and Asterisk</title>
		<link>http://feeds.voxeo.com/~r/VoxeoLabs/~3/2LEskwJw_Go/</link>
		<comments>http://blogs.voxeo.com/voxeolabs/2010/10/08/agitate-screencast-series-with-adhearsion-and-asterisk/#comments</comments>
		<pubDate>Fri, 08 Oct 2010 13:49:27 +0000</pubDate>
		<dc:creator>Jason Goecke</dc:creator>
				<category><![CDATA[Adhearsion]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Tropo]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[agitate]]></category>
		<category><![CDATA[asterisk]]></category>

		<guid isPermaLink="false">http://labs.voxeo.com/?p=255</guid>
		<description><![CDATA[We have been working hard to show how to install, use and get the most out of AGItate. Have a look on the Tropo Blog for these posts and more to come: Howto Install and Use Tropo AGItate Asterisk &#38; Tropo and a Single Adhearsion Dialplan These show you how to seamlessly meld your existing [...]


Related posts:<ol><li><a href='http://blogs.voxeo.com/voxeolabs/2010/10/01/adhearsion-just-got-a-new-cloud/' rel='bookmark' title='Adhearsion Just Got a New Cloud'>Adhearsion Just Got a New Cloud</a></li>
<li><a href='http://blogs.voxeo.com/voxeolabs/2010/04/27/official-adhearsion-project-moved-on-github/' rel='bookmark' title='Official Adhearsion Project Moved on Github'>Official Adhearsion Project Moved on Github</a></li>
<li><a href='http://blogs.voxeo.com/voxeolabs/2010/06/24/new-adhearsion-version-0-8-4-released/' rel='bookmark' title='New Adhearsion Version 0.8.4 Released'>New Adhearsion Version 0.8.4 Released</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://labs.voxeo.com/files/2010/04/Adhearsion_-Open-Source-Telephony-Development-Framework.jpg"><img class="alignright size-medium wp-image-102" title="Adhearsion_ Open-Source Telephony Development Framework" src="http://labs.voxeo.com/files/2010/04/Adhearsion_-Open-Source-Telephony-Development-Framework-300x64.jpg" alt="" width="300" height="64" /></a>We have been working hard to show how to install, use and get the most out of <a href="http://tropo.com/agitate" target="_blank">AGItate</a>. Have a look on the <a href="http://blog.tropo.com" target="_blank">Tropo Blog</a> for these posts and more to come:</p>
<ul>
<li><a href="http://blog.tropo.com/2010/10/06/howto-install-and-use-tropo-agitate/" target="_blank">Howto Install and Use Tropo AGItate</a></li>
<li><a href="http://blog.tropo.com/2010/10/08/asterisk-tropo-and-a-single-adhearsion-dialplan/" target="_blank">Asterisk &amp; Tropo and a Single Adhearsion Dialplan</a></li>
</ul>
<p>These show you how to seamlessly meld your existing Asterisk server with services from the Tropo cloud. Enjoy!</p>
<p>&copy;2012 <a href="http://blogs.voxeo.com/voxeolabs">Voxeo Labs</a>. All Rights Reserved.</p>.

<p>Related posts:<ol><li><a href='http://blogs.voxeo.com/voxeolabs/2010/10/01/adhearsion-just-got-a-new-cloud/' rel='bookmark' title='Adhearsion Just Got a New Cloud'>Adhearsion Just Got a New Cloud</a></li>
<li><a href='http://blogs.voxeo.com/voxeolabs/2010/04/27/official-adhearsion-project-moved-on-github/' rel='bookmark' title='Official Adhearsion Project Moved on Github'>Official Adhearsion Project Moved on Github</a></li>
<li><a href='http://blogs.voxeo.com/voxeolabs/2010/06/24/new-adhearsion-version-0-8-4-released/' rel='bookmark' title='New Adhearsion Version 0.8.4 Released'>New Adhearsion Version 0.8.4 Released</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/VoxeoLabs/~4/2LEskwJw_Go" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blogs.voxeo.com/voxeolabs/2010/10/08/agitate-screencast-series-with-adhearsion-and-asterisk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blogs.voxeo.com/voxeolabs/2010/10/08/agitate-screencast-series-with-adhearsion-and-asterisk/</feedburner:origLink></item>
		<item>
		<title>Introducing GWOB Marketplace</title>
		<link>http://feeds.voxeo.com/~r/VoxeoLabs/~3/c8O50fru9Qg/</link>
		<comments>http://blogs.voxeo.com/voxeolabs/2010/10/04/introducing-gwob-marketplace/#comments</comments>
		<pubDate>Mon, 04 Oct 2010 17:54:20 +0000</pubDate>
		<dc:creator>cmatthieu</dc:creator>
				<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Voxeo Labs]]></category>
		<category><![CDATA[ahnhub]]></category>
		<category><![CDATA[gwob]]></category>
		<category><![CDATA[hackathon]]></category>
		<category><![CDATA[marketplace]]></category>

		<guid isPermaLink="false">http://labs.voxeo.com/?p=243</guid>
		<description><![CDATA[As GWOB&#8216;s 10.10.10 Hackathon approaches, Voxeo Labs lended an early hand by creating a marketplace for the GWOB communications applications for the next weekend&#8217;s contest apps and future applications designed to save the world in times of crisis. We cloned the AhnHub.com application that we created and highlighted in our previous post. This open-source GitHub [...]


Related posts:<ol><li><a href='http://blogs.voxeo.com/voxeolabs/2010/08/18/introducing-ahnhub-com-the-adhearsion-component-directory/' rel='bookmark' title='Introducing AhnHub.com &#8211; The Adhearsion Component Directory'>Introducing AhnHub.com &#8211; The Adhearsion Component Directory</a></li>
<li><a href='http://blogs.voxeo.com/voxeolabs/2009/08/26/an-app-for-posting-tropo-audio-files-to-amazon-s3-via-heroku/' rel='bookmark' title='An App for Posting Tropo Audio Files to Amazon S3 via Heroku'>An App for Posting Tropo Audio Files to Amazon S3 via Heroku</a></li>
<li><a href='http://blogs.voxeo.com/voxeolabs/2011/05/27/introducing-moho-framework/' rel='bookmark' title='Introducing Moho Framework'>Introducing Moho Framework</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://labs.voxeo.com/files/2010/10/gwoblogo.jpg"><img class="alignright size-medium wp-image-244" title="gwoblogo" src="http://labs.voxeo.com/files/2010/10/gwoblogo-300x100.jpg" alt="" width="300" height="100" /></a>As <a href="http://gwob.org">GWOB</a>&#8216;s <a href="http://101010hackathon.eventbrite.com/">10.10.10 Hackathon</a> approaches, <a href="http://labs.voxeo.com">Voxeo Labs</a> lended an early hand by creating a marketplace for the GWOB communications applications for the next weekend&#8217;s contest apps and future applications designed to save the world in times of crisis.</p>
<p><a href="http://labs.voxeo.com/files/2010/10/System2.jpg"><img class="alignnone size-large wp-image-252" title="System" src="http://labs.voxeo.com/files/2010/10/System2-1024x581.jpg" alt="" width="600" /></a></p>
<p>We cloned the <a href="http://ahnhub.com">AhnHub.com</a> application that we created and highlighted in our previous <a href="http://labs.voxeo.com/2010/08/18/introducing-ahnhub-com-the-adhearsion-component-directory/">post</a>. This open-source <a href="http://github.com">GitHub</a> directory application has proven to be beneficial in helping organize developer projects in different GitHub repositories by simply including a post receive hook (<a href="http://gwob.heroku.com">http://gwob.heroku.com</a>) in your repository.  Your GWOB application is automatically added to the GWOB marketplace and all future commits are synced with the directory to showcase updates.  Please visit <a href="http://gwob.heroku.com/how">http://gwob.heroku.com/how</a> for instructions on how to add a post-receive hook to your GWOB application!</p>
<p>We are excited to see what you come up with at your local <a href="http://101010hackathon.eventbrite.com/">GWOB 10.10.10 hackathon</a>!  Save the world by joining your local hacker space like (<a href="http://twitter.com/gangplank">@GangPlank</a> and <a href="http://twitter.com/nextspace">@Nextspace</a>) on 10.9.10 through 10.10.10 and submit your crisis communications app to the GWOB marketplace!</p>
<p>&copy;2012 <a href="http://blogs.voxeo.com/voxeolabs">Voxeo Labs</a>. All Rights Reserved.</p>.

<p>Related posts:<ol><li><a href='http://blogs.voxeo.com/voxeolabs/2010/08/18/introducing-ahnhub-com-the-adhearsion-component-directory/' rel='bookmark' title='Introducing AhnHub.com &#8211; The Adhearsion Component Directory'>Introducing AhnHub.com &#8211; The Adhearsion Component Directory</a></li>
<li><a href='http://blogs.voxeo.com/voxeolabs/2009/08/26/an-app-for-posting-tropo-audio-files-to-amazon-s3-via-heroku/' rel='bookmark' title='An App for Posting Tropo Audio Files to Amazon S3 via Heroku'>An App for Posting Tropo Audio Files to Amazon S3 via Heroku</a></li>
<li><a href='http://blogs.voxeo.com/voxeolabs/2011/05/27/introducing-moho-framework/' rel='bookmark' title='Introducing Moho Framework'>Introducing Moho Framework</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/VoxeoLabs/~4/c8O50fru9Qg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blogs.voxeo.com/voxeolabs/2010/10/04/introducing-gwob-marketplace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blogs.voxeo.com/voxeolabs/2010/10/04/introducing-gwob-marketplace/</feedburner:origLink></item>
	</channel>
</rss>

