I've just deployed fast written demo app at http://gwt-webrtc.appspot.com/. It's video chat application with some basic presence features (buddies list with busy/idle status). It allows to chat with multiple people in a same time so it can be used as a kind of "conferencing" platform.Whole app is written in GWT with little use of JSNI (for web rtc objects wrapping) and Sencha GXT as a widget library.
Signaling channel uses websockets as a transport. Signaling server is implemented in Erlang on a Yaws HTTP server- it manages connections, status updates and routes signaling packets between peers.
Whole code is avialable on github
Erlang server is currently running on my hosted VPS, but if you set up your own signaling server instance (what is really simple) you can override signaling server URL by adding ?sigUrl=ws://your_host_ip:8000/wrtc to main url of application.
Cheers! Maciek