I have my Google Wave account and I use Wave fine.... but i want to
build my own client... Why not?? :-) We only need the uri of the rpc
server and a way to login! Thank you,!
ClientBackend client = new ClientBackend
("[email protected]", "wave.google.com",443);
for (Iterator it = client.waves.keySet().iterator();
it.hasNext() ; )
{
WaveId waveID = (WaveId)it.next();
ClientWaveView currentView = client.getWave(waveID);
for( WaveletData x : currentView.getWavelets()){
System.out.println(x.getWaveletName());
for ( ParticipantId part : x.getParticipants()){
System.out.println(part.getDomain());
System.out.println(part.getAddress());
}
}
}
} catch (IOException e) {
e.printStackTrace();
}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Wave
Protocol" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/wave-protocol?hl=en
-~----------~----~----~----~------~----~------~--~---