Stuck on "Device does not handle service/action job 0" trying to set a dimmer

I’m working on a modification to the smartphone UI, and am using some of the handlers that already exist there. I have switches working, but dimmers seem to be failing even though they’re using an existing handler. My modified UI does an AJAX HTTP get such as:

/port_3480/data_request?id=lr_sPhone_action_js&service=urn%3Aupnp-org%3AserviceId%3ADimming1&action=SetLoadLevelTarget&room=3&device=7&uid=0.5999306759164544&newLoadLevelTarget=68

The handler seems to get the right arguments, but ultimately the job fails:
50 01/27/13 0:38:45.794 luup_log:0: lug_sPhoneRequest_action: room=3 <0x2ce1b680>
50 01/27/13 0:38:45.794 luup_log:0: lug_sPhoneRequest_action: action=SetLoadLevelTarget <0x2ce1b680>
50 01/27/13 0:38:45.795 luup_log:0: lug_sPhoneRequest_action: device=7 <0x2ce1b680>
50 01/27/13 0:38:45.795 luup_log:0: lug_sPhoneRequest_action: service=urn:upnp-org:serviceId:Dimming1 <0x2ce1b680>
50 01/27/13 0:38:45.795 luup_log:0: lug_sPhoneRequest_action: newLoadLevelTarget=68 <0x2ce1b680>
50 01/27/13 0:38:45.796 luup_log:0: lug_sPhoneRequest_action: uid=0.5999306759164544 <0x2ce1b680>
50 01/27/13 0:38:45.796 luup_log:0: lug_sPhoneRequest_action: argument newLoadLevelTarget=68 <0x2ce1b680>
50 01/27/13 0:38:45.796 luup_log:0: lug_sPhoneRequest_action: argument uid=0.5999306759164544 <0x2ce1b680>
08 01/27/13 0:38:45.797 JobHandler_LuaUPnP::HandleActionRequest device: 7 service: urn:upnp-org:serviceId:Dimming1 action: e[36;1mSetLoadLevelTargete[0m <0x2ce1b680>
08 01/27/13 0:38:45.797 JobHandler_LuaUPnP::HandleActionRequest argument newLoadLevelTarget=68 <0x2ce1b680>
08 01/27/13 0:38:45.797 JobHandler_LuaUPnP::HandleActionRequest argument uid=0.5999306759164544 <0x2ce1b680>
02 01/27/13 0:38:45.797 e[33;1mZWaveNode::ReceivedMessage serv urn:upnp-org:serviceId:Dimming1 action SetLoadLevelTarget unhandlede[0m <0x2ce1b680>
50 01/27/13 0:38:45.798 luup_log:0: lug_sPhoneRequest_action: device: 7 action: SetLoadLevelTarget service: urn:upnp-org:serviceId:Dimming1 returned: -115 str Device does not handle service/action job 0 <0x2ce1b680>

Any suggestions? It seems like I have an invalid argument, but maybe I’m just too tired to catch it.

newLoadLevelTarget should have been newLoadlevelTarget

Watch those caps - capitalization is not consistent :frowning:

Thanks Patrick. Your post saved me some time & frustration. They should probably update their wiki pages with the correct capitalization.