/**
  * @param integer $huisnummerId
  * @return array Een associatieve array met de volgende sleutels:
  * <ul>
  *  <li>postkantonCode: De postcode van dit huisnummer.</li>
  * </ul>
  * @throws RuntimeException Indien het postkanton niet geladen kon worden.
  */
 public function getPostkantonByHuisnummerId($huisnummerId)
 {
     $params = new stdClass();
     $params->HuisnummerId = (int) $huisnummerId;
     $paramsWrapper = new SoapParam($params, "GetPostkantonByHuisnummerId");
     try {
         $result = $this->_client->GetPostkantonByHuisnummerId($paramsWrapper);
     } catch (Exception $e) {
         throw new RuntimeException("Kon het postkanton van het huisnummer met huisnummerId {$huisnummerId} niet laden wegens: " . $e->getMessage());
     }
     return array('postkantonCode' => $result->GetPostkantonByHuisnummerIdResult->PostkantonCode);
 }