Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
themeEclipse
languagephp
titleBeispiel für das Ändern eines Transaktionskanal
firstline2
linenumberstrue
$client = new SoapClient($wsdlUrl);
$channel = new StdClass();
$channel->mandatorId = 0;
$channel->transactionChannel = new StdClass();
$channel->transactionChannel->channelId = 1;
$channel->transactionChannel->channelName = "Neuer Name";
$channel->transactionChannel->channelDescription = "Neue Beschreibung";
try {
  $result = $client->updateTransactionChannel($channel);
  var_dump($result);
} catch(Exception $e) {
  echo "Fehler aufgetreten: " . $e->getMessage() . "\r\n";
}
Code Block
themeEclipse
languagephp
titleBeispielausgabe
firstline2
linenumberstrue
object(stdClass)#4 (1) {
  ["success"]=>
  bool(true)
}

...