/**
* Returns true, if the sat reveiver is in standby.
*/
public boolean isStandby(OpenWebIfConfig config) throws IOException {
String url = new UrlBuilder(config, POWERSTATE).build();
PowerState result = executeRequest(config, url, PowerState.class);
return result.isStandby();
}