49 lines
728 B
PHP
49 lines
728 B
PHP
<?php
|
|
|
|
// DELETE - Request
|
|
|
|
// BEMERKUNG: <session_id> und <passphrase> brauchen in der Testphase nicht gesetzt zu sein
|
|
|
|
|
|
$cs_id = "839459";
|
|
|
|
$req = "
|
|
<xml>
|
|
<customer>
|
|
<auth>
|
|
<session_id>XXXX</session_id>
|
|
<passphrase>YYYY</passphrase>
|
|
</auth>
|
|
<operation>DEL</operation>
|
|
<debug_on>YES</debug_on>
|
|
|
|
<cs_id>" . $cs_id . "</cs_id>
|
|
|
|
</customer>
|
|
</xml>";
|
|
|
|
$reqEncoded = urlencode($req);
|
|
?>
|
|
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<form name="test_request" action="https://mps1.assecutor.de/test_sb/service/customer_request.php" method="post">
|
|
|
|
<input type="hidden" name="customerReq" value="<?php echo $reqEncoded ?>">
|
|
|
|
<input type="submit" value="Senden POST">
|
|
|
|
|
|
</form>
|
|
|
|
</body>
|
|
|
|
</html>
|