<?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>Matt Thiessen &#187; Z350</title>
	<atom:link href="http://matt.thiessen.us/category/z350/feed/" rel="self" type="application/rss+xml" />
	<link>http://matt.thiessen.us</link>
	<description>Learning to make the hard things easy</description>
	<lastBuildDate>Sun, 05 Feb 2012 04:06:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>USPS Web Tools</title>
		<link>http://matt.thiessen.us/2009/03/usps-web-tools/</link>
		<comments>http://matt.thiessen.us/2009/03/usps-web-tools/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 22:06:11 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Z350]]></category>
		<category><![CDATA[shipping]]></category>

		<guid isPermaLink="false">http://matt.thiessen.us/?p=211</guid>
		<description><![CDATA[I was trying to add the USPS API into osCommerce. I received the following error when adding this shipping module: RateV3 is not a valid API name for this protocol This is because when you create an account for the Web Tools at USPS you only have access to their test server. The USPS test [...]]]></description>
			<content:encoded><![CDATA[<p>I was trying to add the <a href="http://www.usps.com/webtools/" target="_blank">USPS API</a> into <a href="http://www.oscommerce.com/" target="_blank">osCommerce</a>.  I received the following error when adding this <a href="http://www.oscommerce.com/community/contributions,487">shipping module</a>:</p>
<p><strong style="color:red">RateV3 is not a valid API name for this protocol</strong></p>
<p>This is because when you create an account for the Web Tools at USPS you only have access to their test server.  The USPS test server can only use RateV2, so test using this code below, then request to be switched to use the production server.  Then you can use RateV3 on the production server and the USPS module for osCommerce will work.</p>
<pre class="wp-code-highlight prettyprint">&lt;?php

$request1 = &lt;&lt;&lt; XMLREQUEST
&lt;RateV2Request USERID=&quot;xxxxxxxxxxxxx&quot;&gt;
&lt;Package ID=&quot;0&quot;&gt;
&lt;Service&gt;PRIORITY&lt;/Service&gt;
&lt;ZipOrigination&gt;10022&lt;/ZipOrigination&gt;
&lt;ZipDestination&gt;20008&lt;/ZipDestination&gt;
&lt;Pounds&gt;10&lt;/Pounds&gt;
&lt;Ounces&gt;5&lt;/Ounces&gt;
&lt;Container&gt;Flat Rate Box&lt;/Container&gt;
&lt;Size&gt;REGULAR&lt;/Size&gt;
&lt;/Package&gt;
&lt;/RateV2Request&gt;
XMLREQUEST;

$request = &quot;http://testing.shippingapis.com/ShippingAPITest.dll?API=RateV2&amp;XML=&quot; . rawurlencode($request1);

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $request);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_HTTPGET, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SLL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

$response = curl_exec($ch);
curl_close($ch);

echo($response);

?&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://matt.thiessen.us/2009/03/usps-web-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My 350Z</title>
		<link>http://matt.thiessen.us/2008/12/my-350z/</link>
		<comments>http://matt.thiessen.us/2008/12/my-350z/#comments</comments>
		<pubDate>Sun, 21 Dec 2008 22:19:57 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[Z350]]></category>
		<category><![CDATA[nissan 350Z]]></category>

		<guid isPermaLink="false">http://matt.thiessen.us/?p=23</guid>
		<description><![CDATA[I bought this 350Z in Davenport, Iowa at the LuJack&#8217;s dealer. It had 10,800 miles on it. It has the Touring trim which gives you Bluetooth Handfree phone, Bose 6-disk CD changer, Leather seats. It&#8217;s a kick in the butt to drive. Ask me sometime. I just my let you drive it.]]></description>
			<content:encoded><![CDATA[<p>I bought this 350Z in Davenport, Iowa at the LuJack&#8217;s dealer.  It had 10,800 miles on it.  It has the Touring trim which gives you Bluetooth Handfree phone, Bose 6-disk CD changer, Leather seats.</p>
<p><img src="http://matt.thiessen.us/wp-content/uploads/2008/12/dscn2672-300x225.jpg" alt="dscn2672" title="dscn2672" width="300" height="225" class="alignnone size-medium wp-image-24" /></p>
<p>It&#8217;s a kick in the butt to drive.  Ask me sometime.  I just my let you drive it.</p>
]]></content:encoded>
			<wfw:commentRss>http://matt.thiessen.us/2008/12/my-350z/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

