1. Import
This commit is contained in:
48
html/tools/sendCustomerReqPostTest_DEL.php
Normal file
48
html/tools/sendCustomerReqPostTest_DEL.php
Normal file
@@ -0,0 +1,48 @@
|
||||
<?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>
|
||||
Reference in New Issue
Block a user