<?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/692541</link>
		<description>Comments by AndrewMcc</description>
<item>
<title>blog.mugunthkumar.com : iPhone Tutorial – In-App Purchases</title>
<link>http://blog.mugunthkumar.com/coding/iphone-tutorial-%e2%80%93-in-app-purchases/#IDComment40343906</link>
<description>Thanks for the email. Below are the values of the properties.  It looks like I&amp;#039;m not the only one with this problem. &lt;a href=&quot;http://episteme.arstechnica.com/eve/forums/a/tpc/f/6330927813/m/543000230041&quot; target=&quot;_blank&quot;&gt;http://episteme.arstechnica.com/eve/forums/a/tpc/...&lt;/a&gt; The guys on this page describe similiar issue.  Below is the output from the NSLog statements I added.  2009-10-23 21:40:32.542 mobirock[5636:207] Buy Feature A Clicked 2009-10-23 21:40:32.545 mobirock[5636:207] sharedManager Called 2009-10-23 21:40:32.548 mobirock[5636:207] buyFeature Called com.rockvideomobile.mobiRockVideo.mobirock_30day  2009-10-23 21:40:32.550 mobirock[5636:207] SKPaymentQueue canMakePayments is True 2009-10-23 21:40:32.551 mobirock[5636:207] featureId=com.rockvideomobile.mobiRockVideo.mobirock_30day 2009-10-23 21:40:35.581 mobirock[5636:207] SKPayment Transaction Failed 2009-10-23 21:40:35.582 mobirock[5636:207] failedTransaction- transaction.error.code = (null) 2009-10-23 21:40:35.585 mobirock[5636:207] transaction:&amp;lt;SKPaymentTransaction: 0x136480&amp;gt; 2009-10-23 21:40:35.589 mobirock[5636:207] transaction.payment=&amp;lt;SKPayment: 0x11fe00&amp;gt; 2009-10-23 21:40:35.592 mobirock[5636:207] transaction.transactionIdentifier=E13E2AA9-C486-499F-8882-854C3C9F6D74 2009-10-23 21:40:35.596 mobirock[5636:207] transaction.transactionReceipt=(null) 2009-10-23 21:40:35.599 mobirock[5636:207] transaction.transactionDate=(null) 2009-10-23 21:40:35.603 mobirock[5636:207] Error Domain=SKErrorDomain Code=0 UserInfo=0x141580 &amp;quot;Cannot connect to iTunes Store&amp;quot;  </description>
<pubDate>Sat, 24 Oct 2009 02:08:20 +0000</pubDate>
<guid>http://blog.mugunthkumar.com/coding/iphone-tutorial-%e2%80%93-in-app-purchases/#IDComment40343906</guid>
</item><item>
<title>blog.mugunthkumar.com : iPhone Tutorial – In-App Purchases</title>
<link>http://blog.mugunthkumar.com/coding/iphone-tutorial-%e2%80%93-in-app-purchases/#IDComment40080671</link>
<description>Nope.  Just tried turning off wifi just in case.  3G connected to AT&amp;amp;T should have worked. I have downloaded a lot of apps before from App Store and songs from iTunes.  </description>
<pubDate>Fri, 23 Oct 2009 05:56:22 +0000</pubDate>
<guid>http://blog.mugunthkumar.com/coding/iphone-tutorial-%e2%80%93-in-app-purchases/#IDComment40080671</guid>
</item><item>
<title>blog.mugunthkumar.com : iPhone Tutorial – In-App Purchases</title>
<link>http://blog.mugunthkumar.com/coding/iphone-tutorial-%e2%80%93-in-app-purchases/#IDComment40077821</link>
<description>I have wifi and 3G.  The app is completely fed by the net and all the data is populating. </description>
<pubDate>Fri, 23 Oct 2009 05:45:37 +0000</pubDate>
<guid>http://blog.mugunthkumar.com/coding/iphone-tutorial-%e2%80%93-in-app-purchases/#IDComment40077821</guid>
</item><item>
<title>blog.mugunthkumar.com : iPhone Tutorial – In-App Purchases</title>
<link>http://blog.mugunthkumar.com/coding/iphone-tutorial-%e2%80%93-in-app-purchases/#IDComment40077638</link>
<description>Error Domain=SKErrorDomain Code=0 UserInfo=0x1c5b20 &amp;quot;Cannot connect to iTunes Store&amp;quot; </description>
<pubDate>Fri, 23 Oct 2009 05:44:42 +0000</pubDate>
<guid>http://blog.mugunthkumar.com/coding/iphone-tutorial-%e2%80%93-in-app-purchases/#IDComment40077638</guid>
</item><item>
<title>blog.mugunthkumar.com : iPhone Tutorial – In-App Purchases</title>
<link>http://blog.mugunthkumar.com/coding/iphone-tutorial-%e2%80%93-in-app-purchases/#IDComment40074833</link>
<description>transaction.error.code=NULL  transaction = &amp;lt;SKPaymentTransaction: 0x1ba0a0&amp;gt; </description>
<pubDate>Fri, 23 Oct 2009 05:34:01 +0000</pubDate>
<guid>http://blog.mugunthkumar.com/coding/iphone-tutorial-%e2%80%93-in-app-purchases/#IDComment40074833</guid>
</item><item>
<title>blog.mugunthkumar.com : iPhone Tutorial – In-App Purchases</title>
<link>http://blog.mugunthkumar.com/coding/iphone-tutorial-%e2%80%93-in-app-purchases/#IDComment40070997</link>
<description>I am still trying to get this new version to work without sucess.  It keeps returning a failed transaction.  - (void) failedTransaction: (SKPaymentTransaction *)transaction {     if (transaction.error.code != SKErrorPaymentCancelled)     {         // Optionally, display an error here. NSLog(@&amp;quot;failedTransaction- Transaction Failed %@&amp;quot;,transaction.error.code);     }     [[SKPaymentQueue defaultQueue] finishTransaction: transaction]; } in &amp;quot;- (void) buyFeature:(NSString*) featureId&amp;quot; featureId is equal to com.rockvideomobile.mobiRockVideo.mobirock_30day    I can see my two in app products in iTunes Connect.  Is it possible I am missing something there and they aren&amp;#039;t setup correct?  I did sign out of the App Store in Settings as well and do have a sandbox user setup.  But I never even get a message from iTunes.  Help.  This is the last part I need to get working and then I can call this project done.  </description>
<pubDate>Fri, 23 Oct 2009 05:19:41 +0000</pubDate>
<guid>http://blog.mugunthkumar.com/coding/iphone-tutorial-%e2%80%93-in-app-purchases/#IDComment40070997</guid>
</item>	</channel>
</rss>