Note that there are some explanatory texts on larger screens.

plurals
  1. POHow to integrate Realex Payment's 3D secure process for my website?
    primarykey
    data
    text
    <p>For the integration of Realex Payment (3D secure) in my website I have used the following code, which I got from an example.</p> <p>For doing payment for our customer, I can <strong>request in xml file</strong> with merchantid, orderid, card holder name, exp date, card number, amount etc thus:</p> <pre><code>&lt;request type='auth' timestamp='123123123123'&gt; &lt;merchantid&gt;name of merchant&lt;/merchantid&gt; &lt;account&gt;internet&lt;/account&gt; &lt;orderid&gt; order id &lt;/orderid&gt; &lt;amount currency='GBP'&gt;20&lt;/amount&gt; &lt;card&gt; &lt;number&gt;1234567894561235&lt;/number&gt; &lt;expdate&gt;0912&lt;/expdate&gt; &lt;type&gt;Visa&lt;/type&gt; &lt;chname&gt;card holder name&lt;/chname&gt; &lt;/card&gt; &lt;autosettle flag='1'/&gt; &lt;md5hash&gt;1bb4baxse4534g541sdw233c4ac20ba&lt;/md5hash&gt; &lt;tssinfo&gt; &lt;address type='billing'&gt; &lt;country&gt; country code &lt;/country&gt; &lt;/address&gt; &lt;/tssinfo&gt; &lt;/request&gt; </code></pre> <p><strong>In the response</strong>, I am getting this:</p> <pre><code>&lt;response timestamp="20120808063848"&gt; &lt;merchantid&gt;Name Of Merchant&lt;/merchantid&gt; &lt;account&gt;internet&lt;/account&gt; &lt;orderid&gt;orderid&lt;/orderid&gt; &lt;authcode&gt;something&lt;/authcode&gt; &lt;result&gt;00&lt;/result&gt; &lt;cvnresult&gt;U&lt;/cvnresult&gt; &lt;avspostcoderesponse&gt;U&lt;/avspostcoderesponse&gt; &lt;avsaddressresponse&gt;U&lt;/avsaddressresponse&gt; &lt;batchid&gt; batchid &lt;/batchid&gt; &lt;message&gt;[ test system ] Authorised 111111 &lt;/message&gt; &lt;pasref&gt;14digit number&lt;/pasref&gt; &lt;timetaken&gt;1&lt;/timetaken&gt; &lt;authtimetaken&gt;1&lt;/authtimetaken&gt; &lt;cardissuer&gt; &lt;bank&gt; name of bank &lt;/bank&gt; &lt;country&gt; country name &lt;/country&gt; &lt;countrycode&gt; country code &lt;/countrycode&gt; &lt;region&gt;EUR&lt;/region&gt; &lt;/cardissuer&gt; &lt;md5hash&gt;3656d456Hfgfdac45dsf453d96a08d7d9&lt;/md5hash&gt; &lt;/response&gt; </code></pre> <p>Further ahead, we need to add <strong>3D secure process for verification</strong>.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload