While processing payment in realexpayment system, I am getting following error :
320
An error has occurred processing your request. Please contact the merchant whose goods or services you are purchasing quoting the following error number: 61335
do anyone know what it could be?
I am posting parameters like this
<form method="POST" action="https://hpp.sandbox.realexpayments.com/pay">
<input type="hidden" name="TIMESTAMP" value="timestampvalue">
<input type="hidden" name="MERCHANT_ID" value="mymerchantid">
<input type="hidden" name="ORDER_ID" value="orderid">
<input type="hidden" name="AMOUNT" value="amount">
<input type="hidden" name="CURRENCY" value="currency(GBP)">
<input type="hidden" name="SHA1HASH" value="hashvalue">
<input type="hidden" name="AUTO_SETTLE_FLAG" value="1">
<input type="submit" value="Click To Pay">
</form>
hashvalue I am making by this algorithm: sha1(sha1(timestamp.merchantid.orderid.amount.currency).secretkey)