google-wave

Building your own google wave federation

Hey all, I'm looking to learn about running my own google wave server. There are videos on how to set it up and get it in the command line, but my question is.. okay - where do you go from there? How do you take this service that is running in the command line and apply it to the web? Is there documentation on doing just that? I have ...

How to build a client to Google wave

Hi, By looking at current Google wave APIs, I can't find a way to create an alternative client. It's not a robot or gadget, and the embed API is very slim. Nevertheless, I do see some clients out there - such as Waver and Waveboard. How do they do it ? is it based on XMPP ? ...

Adding Class files to Google App Engine Wave Bot in Java using Eclipse

Hello, Yeah quite a specific question. I'm making a bot for Google Wave and I'm a bit confused. I have some Java class files of a separate package I want to implement. I put them in the lib directory but they're not found by Wave when its uploaded. Eclipse compiles them fine, as it has the directory, but I guess it doesn't upload it t...

Create new Wave via URL/JavaScript

I'm trying to imitate the behavior of "mailto:" for creating a new Wave. Does anyone know if it is possible to create a link or write a JavaScript code that would create a new Wave, assuming the user has already logged in to the Google Account? I've been searching for documentation about this, but everything out there required the Wave ...

Illegal Argument Exception in Google Wave App

I'm writing a Google Wave robot and I just messed something up. It was working just fine but now I'm getting an IllegalArgument exception on the line that includes query.execute. Am I doing something stupid? I've seen several code samples very similar to what I'm doing. I can include the code of the WaveUpdate class if necessary. Th...

How does a Robot respond privately to you in Google Wave?

Google Wave allows two or more participants to speak privately within a wave. When my robot is added to the wave, I recognize the WAVELET_SELF_ADDED event and call the method below. However, nothing happens. I can tell that the code is executed because of the Debug and Info statements in the logs. Is there any reason why the robot d...

Link to a Google Wave

How can I link to a Google Wave, say e.g. in a website or an email like Hey, just have a look to this new <a href="???">Wave</a> I created. , where ??? is what I'm looking for. ...

Google wave API + ASP.NET

Is there any API for google wave that can be integrated with an asp.net webform application? ...

Can I embed a Java applet in a Google Wave gadget?

If so, can someone point me in the direction of an example? Or even some code?! I'm guessing that I can't as the applet embedded in a gadget using the following... var div = document.getElementById('content_div'); div.innerHTML = "<applet CODE='http://www.echoecho.com/lake.class' width='370' height='200'> <param name='ima...

Embedding Google Waves in Blogs and Search Engines

After watching the cool Google Wave Developer Preview at Google I/O 2009 I started wondering that it would be cool to integrate Google Wave with my blog. I'd like to replace the built-in Blogger comments with comments based on Google Wave. But my impression is that it's all JavaScript-based. This makes me wonder whether Google bots (or...

Google Wave gadget configure / set properties

How can you configure or mutate a Google Wave gadget after creating one in Python? The following code will load the gadget via XML: from waveapi import document gadget = document.Gadget('http://domain.com/gadget.xml') The API reference says you can pass a dictionary of initial properties, but I can't find any information on where the ...

Comprehensive list of Google Wave text editor clients?

Hi there, I know I'm late to the game, but 'still haven't found very many desktop-based Google Wave client text editors. Do any even exist? Do you know of a Google Wave client plugin for Eclipse, VIM, Netbeans, or any other IDE? (Doesn't have to be a complete product...alpha is fine,...just curious if there's any progress in that direc...

How can one embed Google Wave using Google Web Toolkit

How can you embed Google Wave onto Panels in Google Web Toolkit? I've been using the following website as guidance, but it doesn't seem to be working for me. This only works the first time you load the Module and not when you want to load it with an action of a button. http://groups.google.com/group/gwt-google-apis/browse_thread/thread/...

When can there be many Waves in a context on Google Wave

In a Google Wave Robot, the event handler gets a Context object. One of the methods is GetWaves, that is documented as: """Returns the list of waves associated with this session.""" I am trying to understand when this would return more than one Wave. What are the situations where there is more than one Wave associated with the sessio...

Do simple things with a Google Wave robot...

I wanted to add 3 features to the robot from the tutorial here: http://code.google.com/apis/wave/extensions/robots/python-tutorial.html Before adding all these features, my robot is working as intended. Now the odd features still shows up (with "v2" at the bck of the blip content), but neither of the new features shows up! I tried diffe...

implementing google wave into a website

How do I implement my own personal copy of google wave into a website? Im talking about something similar to the "Acme Wave" example. I found http://www.waveprotocol.org/ but am unsure how I go from there to install it on a web host. ...

Google wave: PDF-generation (pdfjet)

PDFjet says it supports App Engine, which by extension means it will run on Wave. e question is how can I get to to work on the Google WavE? The goal is to get a PDF-button in the wave which is able to output the whole wave into PDF Any assistance would be greatly appreciated. ...

what libraries or platforms should I use to build web apps that provide real-time, asynchronous data synchronization between clients?

This is a less a question with a simple, practical answer and more a question to foster discussion on the real-time data exchange topic. I'll begin with an example: Google Wave is, at its core, a real-time asynchronous data synchronization engine. Wave supports (or plans to support) concurrent (real-time) document collaboration, discon...

wave.getState() returns null

When trying to call wave.getState() in my Google Wave gadget, I get back null (no state object). How can I initialize the Wave state object? I am working in the Wave Sandbox. My ModulePrefs contains the following: <Require feature="wave" /> <Require feature="rpc"/> I got the "rpc" feature from some google groups post when se...

Google Wave source code

I wish to 'engineer' the google wave and try it for my blog/website ? Is it possible to tinker with the source code of Google Wave ? Where is it available ? Has anyone done something like this ? ...