<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
	<channel>
		<title>gdp's Comments</title>
		<language>en-us</language>
		<link>https://www.intensedebate.com/users/750862</link>
		<description>Comments by jontroth</description>
<item>
<title>Jon Troth : PHP XML Solution for Chase Orbital Gateway</title>
<link>http://jontroth.com/php-xml-solution-chase-orbital-gateway/#IDComment144084898</link>
<description>Hi Jonathan, This link should answer your question ... scroll down to &amp;quot;Securely Store Customer Data&amp;quot;.  &lt;a href=&quot;http://bit.ly/hvgTxZ&quot; target=&quot;_blank&quot;&gt;http://bit.ly/hvgTxZ&lt;/a&gt; If this doesn&amp;#039;t answer your question then make sure you post back and explain what you need in more detail. Jon </description>
<pubDate>Tue, 19 Apr 2011 03:37:15 +0000</pubDate>
<guid>http://jontroth.com/php-xml-solution-chase-orbital-gateway/#IDComment144084898</guid>
</item><item>
<title>Jon Troth : PHP XML Solution for Chase Orbital Gateway</title>
<link>http://jontroth.com/php-xml-solution-chase-orbital-gateway/#IDComment131667455</link>
<description>Hi, I have not yet done the code for refund. I will email you once I have time to work on it. :)  Thank you for the interest in the post. Jon </description>
<pubDate>Tue, 1 Mar 2011 19:01:54 +0000</pubDate>
<guid>http://jontroth.com/php-xml-solution-chase-orbital-gateway/#IDComment131667455</guid>
</item><item>
<title>Jon Troth : PHP XML Solution for Chase Orbital Gateway</title>
<link>http://jontroth.com/php-xml-solution-chase-orbital-gateway/#IDComment125988101</link>
<description>Hey Quarfie,    add this to the class ...    private function profile(){    // pull your contact profile from $_post or the database  $profile-&amp;gt;phone = &amp;#039;&amp;#039;;   $profile-&amp;gt;shipping_street_a = &amp;#039;&amp;#039;; $profile-&amp;gt;shipping_street_b = &amp;#039;&amp;#039;; $profile-&amp;gt;shipping_city = &amp;#039;&amp;#039;; $profile-&amp;gt;shipping_zip = &amp;#039;&amp;#039;;   $profile-&amp;gt;billing_street_a = &amp;#039;&amp;#039;; $profile-&amp;gt;billing_street_b = &amp;#039;&amp;#039;; $profile-&amp;gt;billing_city = &amp;#039;&amp;#039;; $profile-&amp;gt;billing_zip = &amp;#039;&amp;#039;;   // pull your cc profile from $_post - never store this in a database  $profile-&amp;gt;cc_number = &amp;#039;&amp;#039;; $profile-&amp;gt;cc_cvv = &amp;#039;&amp;#039;; $profile-&amp;gt;cc_year = &amp;#039;&amp;#039;; $profile-&amp;gt;cc_month = &amp;#039;&amp;#039;;   return $profile;  }    When you call this class it would be like this ...    $order_code = &amp;quot;AC00001&amp;quot;; // an incremental order number from your database  $order_total = &amp;quot;100&amp;quot;;  // the order total ... this is $1.00 ... Orbital total values do not use a decimal point    $orbital = new Orbital();  $returned_value = $orbital-&amp;amp;gt;gateway_process( $order_code, $order_total );    $returned_value is either an error or a transaction array.    The customer information is either stored in a session, post or database ... so because so many people do it different ways I did not bother adding all the different ways ... just the core functions for orbital. I hope this helps.    Jon Troth </description>
<pubDate>Fri, 4 Feb 2011 20:51:55 +0000</pubDate>
<guid>http://jontroth.com/php-xml-solution-chase-orbital-gateway/#IDComment125988101</guid>
</item><item>
<title>Jon Troth : Tracking Anchor tags using Google Analytics</title>
<link>http://jontroth.com/tracking-anchor-tags-using-google-analytics/#IDComment102499569</link>
<description>This code is useful for href tags that have a hash in the link like ... &lt;a href=&quot;page.php#anchor_name&quot; target=&quot;_blank&quot;&gt;link&lt;/a&gt; ... you need something else to tracking internal links ... that&amp;#039;ll be my next post. :) </description>
<pubDate>Tue, 5 Oct 2010 16:54:29 +0000</pubDate>
<guid>http://jontroth.com/tracking-anchor-tags-using-google-analytics/#IDComment102499569</guid>
</item><item>
<title>Jon Troth : PHP XML Solution for Chase Orbital Gateway</title>
<link>http://jontroth.com/php-xml-solution-chase-orbital-gateway/#IDComment96464076</link>
<description>Sorry for the delay.  &lt;a href=&quot;http://jontroth.com/demo/orbital.zip&quot; target=&quot;_blank&quot;&gt;http://jontroth.com/demo/orbital.zip&lt;/a&gt;  Jon  </description>
<pubDate>Wed, 1 Sep 2010 18:59:35 +0000</pubDate>
<guid>http://jontroth.com/php-xml-solution-chase-orbital-gateway/#IDComment96464076</guid>
</item><item>
<title>Jon Troth : PHP XML Solution for Chase Orbital Gateway</title>
<link>http://jontroth.com/php-xml-solution-chase-orbital-gateway/#IDComment96461930</link>
<description>Hi Craig,  Sorry for the delay in this reply ... i hope it is not too late.  The DTD error is caused when your xml tags are in the wrong order.  Do you have the &amp;quot;Orbital_Gateway_XML_Specification&amp;quot; PDF?  Email me direct at jontroth at gmail.com  Jon  </description>
<pubDate>Wed, 1 Sep 2010 18:49:48 +0000</pubDate>
<guid>http://jontroth.com/php-xml-solution-chase-orbital-gateway/#IDComment96461930</guid>
</item><item>
<title>Jon Troth : PHP XML Solution for Chase Orbital Gateway</title>
<link>http://jontroth.com/php-xml-solution-chase-orbital-gateway/#IDComment84461273</link>
<description>Are you still in testing mode? Maybe send me your Chase Mod at jontroth@gmail.com and I&amp;#039;ll run through it for you.  </description>
<pubDate>Sat, 3 Jul 2010 03:12:50 +0000</pubDate>
<guid>http://jontroth.com/php-xml-solution-chase-orbital-gateway/#IDComment84461273</guid>
</item><item>
<title>Jon Troth : PHP XML Solution for Chase Orbital Gateway</title>
<link>http://jontroth.com/php-xml-solution-chase-orbital-gateway/#IDComment74596505</link>
<description>Setup a public function in the class like this ...  public function process( $order_code, $order_total ){ $this-&amp;gt;gateway_process( $order_code, $order_total ); }  In your script create a new instance of the class ...  $process = New Orbital();  Then send your order number and order total like this ...  $process-&amp;gt;process( &amp;quot;4EOR345&amp;quot;, &amp;quot;100&amp;quot; );  Remember that orbital does not like decimal points so $1.00 would be a value of 100.  In the &amp;quot;function xml_build()&amp;quot; there is a reference to $this-&amp;gt;profile() ... you&amp;#039;ll need to create that method to return an object containing all your users profile information that is relevant to the order.  The $MerchantID is the ID that Orbital provides you for the development site, and for the production site.  Hope this helps. Jon </description>
<pubDate>Mon, 10 May 2010 19:35:06 +0000</pubDate>
<guid>http://jontroth.com/php-xml-solution-chase-orbital-gateway/#IDComment74596505</guid>
</item><item>
<title>Jon Troth : PHP XML Solution for Chase Orbital Gateway</title>
<link>http://jontroth.com/php-xml-solution-chase-orbital-gateway/#IDComment72274628</link>
<description>Here is the basic class ... you&amp;#039;ll need to add the profile function and the error page, etc. Hope this helps.  &lt;a href=&quot;http://jontroth.com/demo/orbital.zip&quot; target=&quot;_blank&quot;&gt;http://jontroth.com/demo/orbital.zip&lt;/a&gt; </description>
<pubDate>Tue, 4 May 2010 04:42:21 +0000</pubDate>
<guid>http://jontroth.com/php-xml-solution-chase-orbital-gateway/#IDComment72274628</guid>
</item><item>
<title>Jon Troth : PHP XML Solution for Chase Orbital Gateway</title>
<link>http://jontroth.com/php-xml-solution-chase-orbital-gateway/#IDComment68756341</link>
<description>get_xml() is a function you would create that would return the Orbital XML request code based on the PTI47 DTD format. Did you need an example? </description>
<pubDate>Sun, 18 Apr 2010 23:20:05 +0000</pubDate>
<guid>http://jontroth.com/php-xml-solution-chase-orbital-gateway/#IDComment68756341</guid>
</item><item>
<title>Jon Troth : PHP XML Solution for Chase Orbital Gateway</title>
<link>http://jontroth.com/php-xml-solution-chase-orbital-gateway/#IDComment61523000</link>
<description>The &amp;quot;$xml = simplexml_load_string( $returnString );&amp;quot; converts the xml into an object so you can just pull information from the xml using the $xml object ... example $xml-&amp;gt;NewOrderResp-&amp;gt;TxRefNum would return the transaction number ... just do a print_r( $xml ); to view everything.  The curl is just a snippet that you can use to send your &amp;quot;request XML&amp;quot; to Orbital, and receive the &amp;quot;responce XML&amp;quot; from orbital. Once approved the rest is in you hands to do want you like with the returned data. If you have any specific questions just post them here and I will try to help you out. </description>
<pubDate>Thu, 11 Mar 2010 20:25:41 +0000</pubDate>
<guid>http://jontroth.com/php-xml-solution-chase-orbital-gateway/#IDComment61523000</guid>
</item>	</channel>
</rss>