Hi
I am creating waves using the Active API.
After creating the wave I persist the wave id in the DB.
Code:
Wavelet newWavelet = this.newWave(WAVE_DOMAIN, participantsSet);
this.submit(newWavelet, RPC_SERVER_URL);
persist(newWavelet.getWaveId().getId());
The wave id looks like : “TBD_-826181704”
Later (upon wave event) I try to query the DB using the wave id I get
in the event. This time the wave id looks like “w+JlEjorZkGy”.
Code:
public void onFormButtonClicked(FormButtonClickedEvent
buttonClickedEvent)
{
queryDB(buttonClickedEvent.getWavelet().getWaveId().getId())
}
Do I have a way to translate between those 2 representations of the
wave id?
Thanks
Avishay
--
You received this message because you are subscribed to the Google Groups
"Google Wave API" 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/google-wave-api?hl=en.