<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Jonathan L Brown &#187; Programming Notes</title>
	<atom:link href="http://www.jonathanlbrown.com/category/programming-notes/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jonathanlbrown.com</link>
	<description>Developer, Entrepreneur</description>
	<lastBuildDate>Sun, 09 May 2010 17:18:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>AIM Authorize.Net Integration Hiccup</title>
		<link>http://www.jonathanlbrown.com/2010/01/30/aim-authorize-net-integration-hiccup/</link>
		<comments>http://www.jonathanlbrown.com/2010/01/30/aim-authorize-net-integration-hiccup/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 10:10:09 +0000</pubDate>
		<dc:creator>jonathan</dc:creator>
				<category><![CDATA[Programming Notes]]></category>

		<guid isPermaLink="false">http://www.jonathanlbrown.com/?p=19</guid>
		<description><![CDATA[Two hiccups while attempting to configure Authorize.Net AIM method, and how I fixed them: Using Curl, I was submitting by POST with an array.  This caused it to use multipart/form-data encoding, which sure looks like it doesn&#8217;t work.  To get it to use www-form-urlencode, I had to urlencode the arguments myself and pass the argument [...]]]></description>
			<content:encoded><![CDATA[<p>Two hiccups while attempting to configure Authorize.Net AIM method, and how I fixed them:</p>
<ul>
<li>Using Curl, I was submitting by POST with an array.  This caused it to use multipart/form-data encoding, which sure looks like it doesn&#8217;t work.  To get it to use www-form-urlencode, I had to urlencode the arguments myself and pass the argument string, not the array.</li>
<li>The ampersand (&amp;) is not a field separator &#8212; it&#8217;s a stop character.  The spec calls for all key/value pairs to end in an ampersand.  If you pull out any old library that will do the previous one &#8212; or, let&#8217;s say you had one homebrewed&#8230; &#8212; you might not have put an ampersand on the end.  Without the ampersand, you&#8217;ll get that dreaded (92) error.</li>
</ul>
<p>Do that, and, like magic, it works.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathanlbrown.com/2010/01/30/aim-authorize-net-integration-hiccup/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
