When I try to switch on user tracking as described in: http://code.google.com/appengine/docs/java/channel/overview.html#Tracking_Client_Connections_and_Disconnections
// In the handler for _ah/channel/connected/
ChannelService channelService = ChannelServiceFactory.getChannelService();
ChannelPresence presence = channelService.parsePresence(req);
I get:
WARNING: /_ah/channel/connected/
java.lang.NoSuchMethodError:com.google.appengine.api.channel.ChannelService.parsePresence(Ljavax/servlet/http/HttpServletRequest;)Lcom/google/appengine/api/channel/ChannelPresence;
The presence handler is implemented as a Spring HttpRequestHandler.
I couldn't google out any answers. Any ideas what I'm missing here?