[Google Wave APIs] Re: Getting blipID from event BLIP_DELETED

2009-12-25 Thread Evgeniy Beschastnov
Yes, you can replace getRemovedBlipId() with this code: @Override public String getRemovedBlipId() { //return getProperty(removedBlipId); return eventData.getProperties().get(blipId).toString(); } On 26 ноя, 17:45, Peter Clijsters peter.clijst...@gmail.com wrote: Thanks, I

[Google Wave APIs] RobotServlet private member is reset periodically

2009-12-25 Thread boaz
Hello, I defined a private member of class HashMap in my RobotServlet class (extending AbstractRobotServlet). I am able to insert values into the map in the ProcessEvents method, and read them later when other events are triggered. However, after some time (can be a few minutes), even if nothing

[Google Wave APIs] Re: Wave Embed API BUG?

2009-12-25 Thread thug
anyone know when the next release is? This seems not to have been fies as yet. Have emedded what i would like to be a wave guest bok at http://www.davestravelpages.com/wave-guest-book.html and have the bottom cutting out issue. On Dec 15, 8:21 pm, pamela (Google Employee) pamela...@gmail.com

[Google Wave APIs] Re: RobotServlet private member is reset periodically

2009-12-25 Thread Bryan Bibat
It's generally a bad idea to store data in member variables because containers can create and destroy servlet instances depending on the situation (load, idle time, etc). http://en.wikipedia.org/wiki/Java_Servlet#Lifecycle_of_a_servlet A better idea would be to persist the data in the datastore.