Does anyone have a simple example on how to receive a server response
sent back to a web2py URL ("status_url"), and store that response as a
text message (e.g so that data can be programmatically processed
later)?

The server response sent back is an HTTP post array and it is sent
from a payment processor in after processing the following POST form:

{{extend 'm_layout.html'}}
<br><br><br>
<form action="https://www.moneybookers.com/app/payment.pl";
method="post">
<input type="hidden" name="pay_to_email"
value="[email protected]">

<input type="hidden" name="status_url" value="http://<some ip address>/
omniavx/member/payment_status">

<input type="hidden" name="return_url" value="http://<some ip address>/
omniavx/member/ovx_ecash_return">
<input type="hidden" name="language" value="EN">
<input type="hidden" name="amount" value="2.37">
<input type="hidden" name="currency" value="USD">
<input type="hidden" name="detail1_description" value="OmniaVX
eCash">
<input type="hidden" name="detail1_text" value="happy bargain
hunting!">
<input type="hidden" name="confirmation_note" value="OmniaVX -
changing the way the world does business...">
<input type="submit" value="Pay!">
</form>

Reply via email to