Bridge.put() Hello World Not working

Hi,

I'm starting out with the Yun. I've installed the update from the 23rd, and am trying to get bridge.put to work. Simply to boil it down as far as possible I wrote the code below (which I believe will create a pair "Hello" "World" in the key store). Unfortunately both of the below url's are blank. Would someone please be so kind as to point out where I've gone wrong? Thanks in advance!
http:///data/get/
http:///data/get/Hello:

#include <Bridge.h>
 
void setup() {
  Bridge.begin();
  Bridge.put("Hello","World");
}
 
void loop() {
  delay(1000);
}

That's weird. Have you tried uploading the Bridge example? Do calls
http:///data/put/Hello/World
http:///data/get
work as expected?
Are you using the latest 1.5.x? http://arduino.cc/en/Main/Software#toc3

After uploading the bridge example,
calls to put data don't result in data on the get side of things.
I am using 1.5.6-r2, and bridge.py is running on the linux side

ps w | grep bridge

3122 root 5852 S python -u bridge.py

I've just re run it and when I call
http://192.168.240.1/data/put/hello/world
I'm asked for user and pwd, I type it and then I see the output

{"value":"world","key":"hello","response":"put"}

I then call
http://192.168.240.1/data/get
and I see the output

{"value":{"hello":"world"},"response":"get"}

When in this sequence you don't see the expected results?