<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Authorize.net can setting Notification, like paypal  or ebay Notify!???? in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-can-setting-Notification-like-paypal-or-ebay/m-p/23325#M12563</link>
    <description>&lt;P&gt;hi TJPride,&lt;/P&gt;&lt;P&gt;&amp;nbsp; could you give me&amp;nbsp;some GetTransactionDetails&amp;nbsp;or GetTransactionList java example.&lt;/P&gt;&lt;P&gt;&amp;nbsp; I want to use GetTransactionDetails or GetTransactionList&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; get&amp;nbsp; payment message when our system is stop.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thx.&lt;/P&gt;</description>
    <pubDate>Tue, 21 Feb 2012 03:57:24 GMT</pubDate>
    <dc:creator>david-jiang</dc:creator>
    <dc:date>2012-02-21T03:57:24Z</dc:date>
    <item>
      <title>Authorize.net can setting Notification, like paypal  or ebay Notify!????</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-can-setting-Notification-like-paypal-or-ebay/m-p/23261#M12531</link>
      <description>&lt;P&gt;&amp;nbsp; Hi.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I want to integration&amp;nbsp; Authorize.net with ebay. when buyer in ebay&amp;nbsp; and choose Authorize.net payment.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; so our System want to receive the payment Message From Authorize Notification.&amp;nbsp; from ebay Message and Authorize Message ,our system can know the order&amp;nbsp; is payment or not payment.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;like Paypal Notification. when some people using the paypal payment. then Paypal send Notification to Our setting url.&lt;/P&gt;&lt;P&gt;and our system can receive the notification.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;I want to know the Authotize support&amp;nbsp; the way. if support , please give me idea! thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I use java to develop .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Feb 2012 02:31:40 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-can-setting-Notification-like-paypal-or-ebay/m-p/23261#M12531</guid>
      <dc:creator>david-jiang</dc:creator>
      <dc:date>2012-02-20T02:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: Authorize.net can setting Notification, like paypal  or ebay Notify!????</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-can-setting-Notification-like-paypal-or-ebay/m-p/23271#M12536</link>
      <description>&lt;P&gt;Yes, it is called "Silent Post". In your Authorize.net control panel, you can set a Silent Post URL, and every time a transaction processes through Authorize.net, you will get a post to that URL. You should start by logging $_POST (if using PHP) to a file and sending through a transaction in live mode, so you can see what the fields look like when they come through. For instance, here's a Silent Post page I use to record just my Authorize.net ARB transactions, you'll need to change it some if you want to record all transactions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;?php
// My database connection and query functions are here
require_once($_SERVER['DOCUMENT_ROOT'] . '/library/mysql.php');

$logfile = "{$_SERVER['DOCUMENT_ROOT']}/logs/callback.txt";
$handle = fopen($logfile, 'a');

// Eliminate fields you don't want to log
foreach (array('x_method', 'x_account_number', 'x_phone', 'x_fax', 'x_email', 'x_invoice_num', 'x_type', 'x_ship_to_first_name', 'x_ship_to_last_name', 'x_ship_to_company', 'x_ship_to_address', 'x_ship_to_city', 'x_ship_to_state', 'x_ship_to_zip', 'x_ship_to_country', 'x_tax', 'x_duty', 'x_freight', 'x_tax_exempt', 'x_po_num', 'x_cvv2_resp_code', 'x_cavv_response', 'x_test_request') as $key)
    unset($_POST[$key]);

fwrite($handle, print_r($_POST, true));

// --------------------------------------------

// Only transactions with a response code of 1 completed
// Only my ARB subscriptions have a customer ID attached
if ($_POST['x_response_code'] == 1 &amp;amp;&amp;amp; $_POST['x_cust_id']) {
    if (!$link = db_connect()) {
        fwrite($handle, "Unable to connect to database.\n");
        exit;
    }

    // Log payment entry in database
    $query = queryMysql("
    INSERT INTO payments SET company = {company}, payment = {payment}, type = 'MONTHLY', paid = NOW()",
    array(
        company =&amp;gt; $_POST['x_cust_id'],
        payment =&amp;gt; $_POST['x_amount']
    ));

    if (!$result = mysql_query($query, $link))
        fwrite($handle, "ERROR: Unable to add payment record to database.\n");
    else
        fwrite($handle, "Payment record added to database.\n");

    $query = queryMysql("
    UPDATE companies SET payment_due = payment_due + INTERVAL 1 MONTH WHERE idn = {company}",
    array(
        company =&amp;gt; $_POST['x_cust_id']
    ));

    if (!$result = mysql_query($query, $link))
        fwrite($handle, "ERROR: Unable to update company expiration date.\n");
    else
        fwrite($handle, "Company expiration date updated.\n");
}
else fwrite($handle, "ERROR: Bad response code and/or missing customer ID.\n");

// So I can see if it works without syntax errors when I call it myself
print 'Ran';
?&amp;gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Feb 2012 10:13:34 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-can-setting-Notification-like-paypal-or-ebay/m-p/23271#M12536</guid>
      <dc:creator>TJPride</dc:creator>
      <dc:date>2012-02-20T10:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: Authorize.net can setting Notification, like paypal  or ebay Notify!????</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-can-setting-Notification-like-paypal-or-ebay/m-p/23321#M12561</link>
      <description>&lt;P&gt;&amp;nbsp;Thanks for you help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;I know&amp;nbsp; Silent Post can do it. and I can get this meesage. but the message is not validate . I want&amp;nbsp; to validate this message.&amp;nbsp; Your know, this message maybe not our account transaction message.&lt;/P&gt;&lt;P&gt;so any idea??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Feb 2012 00:56:48 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-can-setting-Notification-like-paypal-or-ebay/m-p/23321#M12561</guid>
      <dc:creator>david-jiang</dc:creator>
      <dc:date>2012-02-21T00:56:48Z</dc:date>
    </item>
    <item>
      <title>Re: Authorize.net can setting Notification, like paypal  or ebay Notify!????</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-can-setting-Notification-like-paypal-or-ebay/m-p/23325#M12563</link>
      <description>&lt;P&gt;hi TJPride,&lt;/P&gt;&lt;P&gt;&amp;nbsp; could you give me&amp;nbsp;some GetTransactionDetails&amp;nbsp;or GetTransactionList java example.&lt;/P&gt;&lt;P&gt;&amp;nbsp; I want to use GetTransactionDetails or GetTransactionList&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; get&amp;nbsp; payment message when our system is stop.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thx.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Feb 2012 03:57:24 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-can-setting-Notification-like-paypal-or-ebay/m-p/23325#M12563</guid>
      <dc:creator>david-jiang</dc:creator>
      <dc:date>2012-02-21T03:57:24Z</dc:date>
    </item>
    <item>
      <title>Re: Authorize.net can setting Notification, like paypal  or ebay Notify!????</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-can-setting-Notification-like-paypal-or-ebay/m-p/23333#M12567</link>
      <description>&lt;P&gt;Download the Java SDK, read the documentation:&lt;/P&gt;&lt;P&gt;&lt;A href="http://developer.authorize.net/api/transaction_details/" target="_blank"&gt;http://developer.authorize.net/api/transaction_details/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd give samples if I had them, but I don't program in Java.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Feb 2012 06:28:41 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-can-setting-Notification-like-paypal-or-ebay/m-p/23333#M12567</guid>
      <dc:creator>TJPride</dc:creator>
      <dc:date>2012-02-21T06:28:41Z</dc:date>
    </item>
    <item>
      <title>Re: Authorize.net can setting Notification, like paypal  or ebay Notify!????</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-can-setting-Notification-like-paypal-or-ebay/m-p/23339#M12570</link>
      <description>&lt;P&gt;Hi TJPride&lt;/P&gt;&lt;P&gt;&amp;nbsp;thank you for help.&lt;/P&gt;&lt;P&gt;&amp;nbsp; I debug it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;I try change this code&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;net.authorize.reporting.Transaction transaction =&amp;nbsp; merchant.createReportingTransaction(net.authorize.reporting.TransactionType.&lt;FONT color="#ff0000"&gt;&lt;EM&gt;GET_SETTLED_BATCH_LIST&lt;/EM&gt;&lt;/FONT&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;to&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;net.authorize.reporting.Transaction transaction =&amp;nbsp; merchant.createReportingTransaction(net.authorize.reporting.TransactionType.&lt;FONT color="#ff0000"&gt;GET_TRANSACTION_DETAILS&lt;/FONT&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but return error message.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Feb 2012 07:13:29 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-net-can-setting-Notification-like-paypal-or-ebay/m-p/23339#M12570</guid>
      <dc:creator>david-jiang</dc:creator>
      <dc:date>2012-02-21T07:13:29Z</dc:date>
    </item>
  </channel>
</rss>

