<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
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/"
> <channel><title>Comments on: Google Wave Extension Generator</title> <atom:link href="http://withwaves.com/google-wave-extension-generator/feed/" rel="self" type="application/rss+xml" /><link>http://withwaves.com/google-wave-extension-generator/</link> <description></description> <lastBuildDate>Mon, 01 Mar 2010 12:12:12 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>By: Build Your Own Google Wave Extension</title><link>http://withwaves.com/google-wave-extension-generator/comment-page-1/#comment-131</link> <dc:creator>Build Your Own Google Wave Extension</dc:creator> <pubDate>Mon, 01 Mar 2010 12:12:12 +0000</pubDate> <guid
isPermaLink="false">http://withwaves.com/?p=255#comment-131</guid> <description>[...] David    The great folks over at WithWaves have added a contribution to the Google Wave community by providing their internal tools to the [...]</description> <content:encoded><![CDATA[<p>[...] David    The great folks over at WithWaves have added a contribution to the Google Wave community by providing their internal tools to the [...]</p> ]]></content:encoded> </item> <item><title>By: raul</title><link>http://withwaves.com/google-wave-extension-generator/comment-page-1/#comment-130</link> <dc:creator>raul</dc:creator> <pubDate>Sun, 31 Jan 2010 00:24:05 +0000</pubDate> <guid
isPermaLink="false">http://withwaves.com/?p=255#comment-130</guid> <description>Hi Gadi,The gadget can communicate with any server side application.
With the deployment of the bot there are sources included that demonstrate how the gadget can call your server and the server replies with data in JSON format.
Once you receive the data you can make changes in the gadget.
The server side sample file that handles the request for the gadget issrc/main/java//your/package/gadget/handler/impl/GadgetServiceImpl.javaTo invoke your service which is actually configured with spring at/war/WEB-INF/conf/applicationContext.xmlYou can simply use some javascript with jquery for a jsonp request similar to the one below.urlParams.push(&quot;param=&quot; + value);
$.getJSON(
&quot;yourgadgetdeploymenturl&quot; + &quot;?&quot; + urlParams.join(&quot;&amp;&quot;) + &quot;callback=?&quot;,
function(data) {
//doSomethingWithData
);
}We bundle com.withwaves.commons.utils.view.JSONPSupportView with the generator so you should have a View generator in your bot that already supports the callback replacement for JSONP.You can use the same technique with any other server that you&#039;d like to fetch data from that supports jsonp, for example ebay.Let us know if you have any more questions and glad you found the generator useful.</description> <content:encoded><![CDATA[<p>Hi Gadi,</p><p>The gadget can communicate with any server side application.<br
/> With the deployment of the bot there are sources included that demonstrate how the gadget can call your server and the server replies with data in JSON format.<br
/> Once you receive the data you can make changes in the gadget.<br
/> The server side sample file that handles the request for the gadget is</p><p>src/main/java//your/package/gadget/handler/impl/GadgetServiceImpl.java</p><p>To invoke your service which is actually configured with spring at</p><p>/war/WEB-INF/conf/applicationContext.xml</p><p>You can simply use some javascript with jquery for a jsonp request similar to the one below.</p><p>urlParams.push(&#8220;param=&#8221; + value);<br
/> $.getJSON(<br
/> &#8220;yourgadgetdeploymenturl&#8221; + &#8220;?&#8221; + urlParams.join(&#8220;&#038;&#8221;) + &#8220;callback=?&#8221;,<br
/> function(data) {<br
/> //doSomethingWithData<br
/> );<br
/> }</p><p>We bundle com.withwaves.commons.utils.view.JSONPSupportView with the generator so you should have a View generator in your bot that already supports the callback replacement for JSONP.</p><p>You can use the same technique with any other server that you&#8217;d like to fetch data from that supports jsonp, for example ebay.</p><p>Let us know if you have any more questions and glad you found the generator useful.</p> ]]></content:encoded> </item> <item><title>By: Gadi</title><link>http://withwaves.com/google-wave-extension-generator/comment-page-1/#comment-129</link> <dc:creator>Gadi</dc:creator> <pubDate>Fri, 29 Jan 2010 15:51:41 +0000</pubDate> <guid
isPermaLink="false">http://withwaves.com/?p=255#comment-129</guid> <description>HiI have a question about bot-gadget communications: I have a Wave Bot, working and all fine, and I have a Gadget, also working fine (built using the generator from this page...). What I want is to initialize the gadget from within the bot with data I have for it. Basically the end result I&#039;m aiming to is something like your ebay bot, where the participant types something, and the gadget is added with contents (search results in that case) relating to what was typed. I couldn&#039;t find a way to do that, but I&#039;m probably missing something trivial... am I?thank you
Gadi</description> <content:encoded><![CDATA[<p>Hi</p><p>I have a question about bot-gadget communications: I have a Wave Bot, working and all fine, and I have a Gadget, also working fine (built using the generator from this page&#8230;). What I want is to initialize the gadget from within the bot with data I have for it. Basically the end result I&#8217;m aiming to is something like your ebay bot, where the participant types something, and the gadget is added with contents (search results in that case) relating to what was typed. I couldn&#8217;t find a way to do that, but I&#8217;m probably missing something trivial&#8230; am I?</p><p>thank you<br
/> Gadi</p> ]]></content:encoded> </item> <item><title>By: raul</title><link>http://withwaves.com/google-wave-extension-generator/comment-page-1/#comment-128</link> <dc:creator>raul</dc:creator> <pubDate>Tue, 29 Dec 2009 16:44:18 +0000</pubDate> <guid
isPermaLink="false">http://withwaves.com/?p=255#comment-128</guid> <description>Hi Wezzax,For the maven archetype wizard just type anything. The generated project contains the source code that you can modify to not actually call the alchemy api.
OnBlipSubmittedListenerImpl (lines 31-40)</description> <content:encoded><![CDATA[<p>Hi Wezzax,</p><p>For the maven archetype wizard just type anything. The generated project contains the source code that you can modify to not actually call the alchemy api.<br
/> OnBlipSubmittedListenerImpl (lines 31-40)</p> ]]></content:encoded> </item> <item><title>By: wezzax</title><link>http://withwaves.com/google-wave-extension-generator/comment-page-1/#comment-127</link> <dc:creator>wezzax</dc:creator> <pubDate>Tue, 29 Dec 2009 10:15:32 +0000</pubDate> <guid
isPermaLink="false">http://withwaves.com/?p=255#comment-127</guid> <description>It won&#039;t let me pass if I don&#039;t enter an alchemyAPIKey, I thought it&#039;s optional as stated in the video.  And the video is blur, a screen shot in PNG is more suitable IMO.Anyway to set it up without downloading the jar, pom files again unless there&#039;s an update?</description> <content:encoded><![CDATA[<p>It won&#8217;t let me pass if I don&#8217;t enter an alchemyAPIKey, I thought it&#8217;s optional as stated in the video.  And the video is blur, a screen shot in PNG is more suitable IMO.</p><p>Anyway to set it up without downloading the jar, pom files again unless there&#8217;s an update?</p> ]]></content:encoded> </item> <item><title>By: justin</title><link>http://withwaves.com/google-wave-extension-generator/comment-page-1/#comment-126</link> <dc:creator>justin</dc:creator> <pubDate>Fri, 20 Nov 2009 19:32:31 +0000</pubDate> <guid
isPermaLink="false">http://withwaves.com/?p=255#comment-126</guid> <description>Elliot, thanks for the comment. Yes we plan on implementing all the API functionality in our bots and in the extension generator. We plan to expose each feature to developers so they can easily decide which pieces in the AlchemyAPI they want to use.</description> <content:encoded><![CDATA[<p>Elliot, thanks for the comment. Yes we plan on implementing all the API functionality in our bots and in the extension generator. We plan to expose each feature to developers so they can easily decide which pieces in the AlchemyAPI they want to use.</p> ]]></content:encoded> </item> <item><title>By: Elliot</title><link>http://withwaves.com/google-wave-extension-generator/comment-page-1/#comment-125</link> <dc:creator>Elliot</dc:creator> <pubDate>Fri, 20 Nov 2009 19:06:50 +0000</pubDate> <guid
isPermaLink="false">http://withwaves.com/?p=255#comment-125</guid> <description>Fantastic work!  Any plans on integrating other AlchemyAPI functionality, such as keyword extraction, language ID, etc ?</description> <content:encoded><![CDATA[<p>Fantastic work!  Any plans on integrating other AlchemyAPI functionality, such as keyword extraction, language ID, etc ?</p> ]]></content:encoded> </item> <item><title>By: Google Wave Extension Generator - raulraja.com</title><link>http://withwaves.com/google-wave-extension-generator/comment-page-1/#comment-124</link> <dc:creator>Google Wave Extension Generator - raulraja.com</dc:creator> <pubDate>Fri, 20 Nov 2009 07:21:08 +0000</pubDate> <guid
isPermaLink="false">http://withwaves.com/?p=255#comment-124</guid> <description>[...] WithWaves.com just published a Google Wave Extension Generator at withwaves.com. [...]</description> <content:encoded><![CDATA[<p>[...] WithWaves.com just published a Google Wave Extension Generator at withwaves.com. [...]</p> ]]></content:encoded> </item> <item><title>By: uberVU - social comments</title><link>http://withwaves.com/google-wave-extension-generator/comment-page-1/#comment-123</link> <dc:creator>uberVU - social comments</dc:creator> <pubDate>Wed, 18 Nov 2009 17:44:19 +0000</pubDate> <guid
isPermaLink="false">http://withwaves.com/?p=255#comment-123</guid> <description>&lt;strong&gt;Social comments and analytics for this post...&lt;/strong&gt;This post was mentioned on Twitter by withwaves: RT WithWaves: Google Wave Extension Generator http://bit.ly/3ACAKr...</description> <content:encoded><![CDATA[<p><strong>Social comments and analytics for this post&#8230;</strong></p><p>This post was mentioned on Twitter by withwaves: RT WithWaves: Google Wave Extension Generator <a
href="http://bit.ly/3ACAKr.." rel="nofollow">http://bit.ly/3ACAKr..</a>.</p> ]]></content:encoded> </item> <item><title>By: New Gadgets &#124; Google Wave Extension Generator</title><link>http://withwaves.com/google-wave-extension-generator/comment-page-1/#comment-122</link> <dc:creator>New Gadgets &#124; Google Wave Extension Generator</dc:creator> <pubDate>Mon, 16 Nov 2009 19:07:12 +0000</pubDate> <guid
isPermaLink="false">http://withwaves.com/?p=255#comment-122</guid> <description>[...] Original post by WithWaves [...]</description> <content:encoded><![CDATA[<p>[...] Original post by WithWaves [...]</p> ]]></content:encoded> </item> </channel> </rss>
<!-- This site's performance optimized by W3 Total Cache. Dramatically improve the speed and reliability of your blog!

Learn more about our WordPress Plugins: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (user agent is rejected)
Database Caching 4/17 queries in 0.016 seconds using disk

Served from: 5thirtyone.com @ 2010-03-11 11:58:46 -->