- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
aim problem
โ08-27-2012 05:44 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Are you doing AIM or DPM? download the AIM sample code and see how it work. How are you sending data to authorize.net(code)?
โ08-27-2012 05:48 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
โ08-27-2012 06:04 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
โ08-27-2012 06:07 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
code is
<?php
require_once 'anet_php_sdk/AuthorizeNet.php'; // The SDK
$url = "http://localhost:8080/web/";
$api_login_id = 'XXXXXXX';
$transaction_key = 'XXXXXXXX';
$md5_setting = '24Y7Ds5pX'; // Your MD5 Setting
$amount = "5.99";
AuthorizeNetDPM::directPostDemo($url, $api_login_id, $transaction_key, $amount, $md5_setting);
?>
โ08-27-2012 06:07 AM - last edited on โ08-28-2012 07:28 AM by Michelle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
your relay response url $url = "http://localhost:8080/web/"; is not accessable from the outside(authorize.net can't access it for relay response).
โ08-27-2012 06:12 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
โ08-27-2012 06:21 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You will need a test site that can be acess from the outside or you won't be able to test the relay response feature.
โ08-27-2012 06:54 AM

