44 lines
668 B
PHP
44 lines
668 B
PHP
<?php
|
|
|
|
$cr_id = "8";
|
|
|
|
$req = "
|
|
<xml>
|
|
<contractor>
|
|
<auth>
|
|
<session_id>949734773drt319d05f415ehrzfnd05f415ehrz</session_id>
|
|
<passphrase>26d910334a78180326s83g</passphrase>
|
|
</auth>
|
|
<operation>GET</operation>
|
|
<debug_on>NO</debug_on>
|
|
|
|
<cr_id>" . $cr_id . "</cr_id>
|
|
|
|
</contractor>
|
|
</xml>";
|
|
|
|
$reqEncoded = urlencode($req);
|
|
?>
|
|
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<form name="test_request" action="https://mps1.assecutor.de/test_tp/service/contractor_request.php" method="post">
|
|
|
|
<input type="hidden" name="contractorReq" value="<?php echo $reqEncoded ?>">
|
|
|
|
<input type="submit" value="Senden POST">
|
|
|
|
|
|
</form>
|
|
|
|
</body>
|
|
|
|
</html>
|