Yun - Can't turn LED on/off through browser

Hello,
I'm just trying to send the url "http://ericsyun.local/arduino/digital/10/1" in my Chrome browser. My Yun is working fine I believe because I can display a temperature variable in my webpage, but I want to be able to turn a pin on and off as described in the examples and it's not working. My password protection is turned off on the API.

Here's my html:

<a href="http://ericsyun.local/arduino/digital/10/1">Turn Pin 10 on</a>

<a href="http://ericsyun.local/arduino/digital/10/0">Turn Pin 10 off</a>

I understand why a blank page is being returned, but not why pin10 isn't going hi or low. This makes me wonder if I'm implementing the url correctly. Unfortunately, there aren't too many examples that show the HTML side of things.

Thanks,
Eric

Are you sure you uploaded the bridge program to the AVR side?

Indeed if you uploaded the TemperatureWebPanel example, the URLs from the Bridge example won't work. You have to upload the Bridge example.
If you want to mix them, start with TemperatureWebPanel, then modify it accordingly

I see. The protocol needs to be defined in the sketch, correct?