Page tree

Versions Compared

Key

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

...

Code Block
themeEclipse
languagephp
titleBeispiel für das Anlegen eines Transaktionskanals
firstline2
linenumberstrue
$client = new SoapClient($wsdlUrl);
$channel = new StdClass();
$channel->mandatorId = 0;
try {
  $result = $client->createTransactionChannel($channel);
  var_dump($result);
} catch(Exception $e) {
  echo "Fehler aufgetreten: " . $e->getMessage() . "\r\n";
}  
Code Block
themeEclipse
languagephp
titleBeispielausgabe
firstline2
linenumberstrue
object(stdClass)#3 (1) {
  ["channelId"]=>
  int(1011)
}

...