<?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: ARBCreateSubscriptionRequest description / invoiceNumber problem in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARBCreateSubscriptionRequest-description-invoiceNumber-problem/m-p/23907#M12847</link>
    <description>&lt;P&gt;They are not showing up in the control panel, the code for the xml i'm posting is below and transactions go through fine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;$this-&amp;gt;sub_content = '&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;ARBCreateSubscriptionRequest xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;merchantAuthentication&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;name&amp;gt;' . $this-&amp;gt;api_login . '&amp;lt;/name&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;transactionKey&amp;gt;' . $this-&amp;gt;api_transKey . '&amp;lt;/transactionKey&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;/merchantAuthentication&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;refId&amp;gt;' . $this-&amp;gt;createRefId() . '&amp;lt;/refId&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;subscription&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;name&amp;gt;' . $this-&amp;gt;clientInfo["sub_name"] . '&amp;lt;/name&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;paymentSchedule&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;interval&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;length&amp;gt;' . $this-&amp;gt;clientInfo["sub_length"] .'&amp;lt;/length&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;unit&amp;gt;' . $this-&amp;gt;clientInfo["sub_units"] .'&amp;lt;/unit&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;/interval&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;startDate&amp;gt;' . $this-&amp;gt;clientInfo["sub_startDate"] . '&amp;lt;/startDate&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;totalOccurrences&amp;gt;' . $this-&amp;gt;clientInfo["sub_totalOccurrences"] . '&amp;lt;/totalOccurrences&amp;gt;';
			if ($useTrials == true) :
				$this-&amp;gt;sub_content .= '&amp;lt;trialOccurrences&amp;gt;' . $this-&amp;gt;clientInfo["sub_trialOccurrences"] . '&amp;lt;/trialOccurrences&amp;gt;';
			endif;
			$this-&amp;gt;sub_content .= '&amp;lt;/paymentSchedule&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;amount&amp;gt;' . $this-&amp;gt;clientInfo["amount"] .'&amp;lt;/amount&amp;gt;';
			if ($useTrials == true) :
				$this-&amp;gt;sub_content .= '&amp;lt;trialAmount&amp;gt;' . $this-&amp;gt;clientInfo["sub_trialAmount"] . '&amp;lt;/trialAmount&amp;gt;';
			endif;
			$this-&amp;gt;sub_content .= '&amp;lt;payment&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;creditCard&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;cardNumber&amp;gt;' . $this-&amp;gt;clientInfo["cardNumber"] . '&amp;lt;/cardNumber&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;expirationDate&amp;gt;' . $this-&amp;gt;clientInfo["cardExpiryMonth"]. "/" . $this-&amp;gt;clientInfo["cardExpiryYear"] . '&amp;lt;/expirationDate&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;/creditCard&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;/payment&amp;gt;';
			$this-&amp;gt;sub_content .= "&amp;lt;order&amp;gt;";
			$this-&amp;gt;sub_content .= "&amp;lt;invoiceNumber&amp;gt;BHA-" . substr(md5('BHA-' . microtime()), 0, 16) . "&amp;lt;/invoiceNumber&amp;gt;";
        	$this-&amp;gt;sub_content .= "&amp;lt;description&amp;gt;BHA Subscription&amp;lt;/description&amp;gt;";
	        $this-&amp;gt;sub_content .= "&amp;lt;/order&amp;gt;";
			$this-&amp;gt;sub_content .= '&amp;lt;billTo&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;firstName&amp;gt;' . $this-&amp;gt;clientInfo["firstName"] . '&amp;lt;/firstName&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;lastName&amp;gt;' . $this-&amp;gt;clientInfo["lastName"] . '&amp;lt;/lastName&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;/billTo&amp;gt;';
			//$this-&amp;gt;sub_content .= '&amp;lt;x_duplicate_window&amp;gt;' . 0 . '&amp;lt;/x_duplicate_window&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;/subscription&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;/ARBCreateSubscriptionRequest&amp;gt;';&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 02 Mar 2012 21:00:41 GMT</pubDate>
    <dc:creator>scriptworkz</dc:creator>
    <dc:date>2012-03-02T21:00:41Z</dc:date>
    <item>
      <title>ARBCreateSubscriptionRequest description / invoiceNumber problem</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARBCreateSubscriptionRequest-description-invoiceNumber-problem/m-p/23845#M12818</link>
      <description>&lt;P&gt;As the subject says, i'm currently passing both invoiceNumber and description in ARBCreateSubscriptionRequest -&amp;gt; subscription -&amp;gt; order and neither are coming through on my merchant email receipts. Any Ideas?&lt;/P&gt;</description>
      <pubDate>Thu, 01 Mar 2012 19:07:17 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARBCreateSubscriptionRequest-description-invoiceNumber-problem/m-p/23845#M12818</guid>
      <dc:creator>scriptworkz</dc:creator>
      <dc:date>2012-03-01T19:07:17Z</dc:date>
    </item>
    <item>
      <title>Re: ARBCreateSubscriptionRequest description / invoiceNumber problem</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARBCreateSubscriptionRequest-description-invoiceNumber-problem/m-p/23851#M12821</link>
      <description>&lt;P&gt;Are they displaying in your control panel? Or are they missing there too? Can you post the code you're using? Preferably in a code box, fourth option from the left in Rich Text mode.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Mar 2012 19:40:29 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARBCreateSubscriptionRequest-description-invoiceNumber-problem/m-p/23851#M12821</guid>
      <dc:creator>TJPride</dc:creator>
      <dc:date>2012-03-01T19:40:29Z</dc:date>
    </item>
    <item>
      <title>Re: ARBCreateSubscriptionRequest description / invoiceNumber problem</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARBCreateSubscriptionRequest-description-invoiceNumber-problem/m-p/23907#M12847</link>
      <description>&lt;P&gt;They are not showing up in the control panel, the code for the xml i'm posting is below and transactions go through fine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;$this-&amp;gt;sub_content = '&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;ARBCreateSubscriptionRequest xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;merchantAuthentication&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;name&amp;gt;' . $this-&amp;gt;api_login . '&amp;lt;/name&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;transactionKey&amp;gt;' . $this-&amp;gt;api_transKey . '&amp;lt;/transactionKey&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;/merchantAuthentication&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;refId&amp;gt;' . $this-&amp;gt;createRefId() . '&amp;lt;/refId&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;subscription&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;name&amp;gt;' . $this-&amp;gt;clientInfo["sub_name"] . '&amp;lt;/name&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;paymentSchedule&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;interval&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;length&amp;gt;' . $this-&amp;gt;clientInfo["sub_length"] .'&amp;lt;/length&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;unit&amp;gt;' . $this-&amp;gt;clientInfo["sub_units"] .'&amp;lt;/unit&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;/interval&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;startDate&amp;gt;' . $this-&amp;gt;clientInfo["sub_startDate"] . '&amp;lt;/startDate&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;totalOccurrences&amp;gt;' . $this-&amp;gt;clientInfo["sub_totalOccurrences"] . '&amp;lt;/totalOccurrences&amp;gt;';
			if ($useTrials == true) :
				$this-&amp;gt;sub_content .= '&amp;lt;trialOccurrences&amp;gt;' . $this-&amp;gt;clientInfo["sub_trialOccurrences"] . '&amp;lt;/trialOccurrences&amp;gt;';
			endif;
			$this-&amp;gt;sub_content .= '&amp;lt;/paymentSchedule&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;amount&amp;gt;' . $this-&amp;gt;clientInfo["amount"] .'&amp;lt;/amount&amp;gt;';
			if ($useTrials == true) :
				$this-&amp;gt;sub_content .= '&amp;lt;trialAmount&amp;gt;' . $this-&amp;gt;clientInfo["sub_trialAmount"] . '&amp;lt;/trialAmount&amp;gt;';
			endif;
			$this-&amp;gt;sub_content .= '&amp;lt;payment&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;creditCard&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;cardNumber&amp;gt;' . $this-&amp;gt;clientInfo["cardNumber"] . '&amp;lt;/cardNumber&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;expirationDate&amp;gt;' . $this-&amp;gt;clientInfo["cardExpiryMonth"]. "/" . $this-&amp;gt;clientInfo["cardExpiryYear"] . '&amp;lt;/expirationDate&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;/creditCard&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;/payment&amp;gt;';
			$this-&amp;gt;sub_content .= "&amp;lt;order&amp;gt;";
			$this-&amp;gt;sub_content .= "&amp;lt;invoiceNumber&amp;gt;BHA-" . substr(md5('BHA-' . microtime()), 0, 16) . "&amp;lt;/invoiceNumber&amp;gt;";
        	$this-&amp;gt;sub_content .= "&amp;lt;description&amp;gt;BHA Subscription&amp;lt;/description&amp;gt;";
	        $this-&amp;gt;sub_content .= "&amp;lt;/order&amp;gt;";
			$this-&amp;gt;sub_content .= '&amp;lt;billTo&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;firstName&amp;gt;' . $this-&amp;gt;clientInfo["firstName"] . '&amp;lt;/firstName&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;lastName&amp;gt;' . $this-&amp;gt;clientInfo["lastName"] . '&amp;lt;/lastName&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;/billTo&amp;gt;';
			//$this-&amp;gt;sub_content .= '&amp;lt;x_duplicate_window&amp;gt;' . 0 . '&amp;lt;/x_duplicate_window&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;/subscription&amp;gt;';
			$this-&amp;gt;sub_content .= '&amp;lt;/ARBCreateSubscriptionRequest&amp;gt;';&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Mar 2012 21:00:41 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARBCreateSubscriptionRequest-description-invoiceNumber-problem/m-p/23907#M12847</guid>
      <dc:creator>scriptworkz</dc:creator>
      <dc:date>2012-03-02T21:00:41Z</dc:date>
    </item>
    <item>
      <title>Re: ARBCreateSubscriptionRequest description / invoiceNumber problem</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARBCreateSubscriptionRequest-description-invoiceNumber-problem/m-p/23921#M12854</link>
      <description>&lt;P&gt;And what's the text of the email you're getting?&lt;/P&gt;</description>
      <pubDate>Fri, 02 Mar 2012 22:04:26 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARBCreateSubscriptionRequest-description-invoiceNumber-problem/m-p/23921#M12854</guid>
      <dc:creator>TJPride</dc:creator>
      <dc:date>2012-03-02T22:04:26Z</dc:date>
    </item>
    <item>
      <title>Re: ARBCreateSubscriptionRequest description / invoiceNumber problem</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARBCreateSubscriptionRequest-description-invoiceNumber-problem/m-p/24015#M12901</link>
      <description>&lt;P&gt;It is the standard merchant receipt, the only problem is it's missing the invoice number and description, their just blank on the email.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Mar 2012 19:37:23 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARBCreateSubscriptionRequest-description-invoiceNumber-problem/m-p/24015#M12901</guid>
      <dc:creator>scriptworkz</dc:creator>
      <dc:date>2012-03-05T19:37:23Z</dc:date>
    </item>
    <item>
      <title>Re: ARBCreateSubscriptionRequest description / invoiceNumber problem</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARBCreateSubscriptionRequest-description-invoiceNumber-problem/m-p/24019#M12903</link>
      <description>&lt;P&gt;If the XML is actually going through with a description AND no formatting error, it should be showing up in the control panel. Can you print out your XML the line before it's actually passed to Authorize.net to make absolutely sure the description hasn't magically disappeared somehow?&lt;/P&gt;</description>
      <pubDate>Mon, 05 Mar 2012 20:34:51 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ARBCreateSubscriptionRequest-description-invoiceNumber-problem/m-p/24019#M12903</guid>
      <dc:creator>TJPride</dc:creator>
      <dc:date>2012-03-05T20:34:51Z</dc:date>
    </item>
  </channel>
</rss>

