.netCART Credit Card Decryption - IIS 7 App Pool and Decryption issue - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T11:25:12Zhttp://stackoverflow.com/feeds/question/878500http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/878500/netcart-credit-card-decryption-iis-7-app-pool-and-decryption-issue0.netCART Credit Card Decryption - IIS 7 App Pool and Decryption issueMasterMax13132009-05-18T16:08:23Z2009-06-02T15:20:10Z
<p>I've got a site using <a href="http://www.dotnetcart.com/" rel="nofollow">.netCART</a>. It's running fine in production with Windows Server 2003 and .NET 2.0. On the new server (Windows Server 2008) everything is working except for credit card decryption in the store admin. No errors are being sent, no exceptions thrown, just the encrypted string being output to the screen instead of a decrypted credit card number.</p>
<pre><code>Dim strCCEncrypt As String
strCCEncrypt = Trim(DataRow.Item("CreditCard"))
strCCEncrypt = tools.Decrypt(strCCEncrypt) 'tools is a .netCART utility
</code></pre>
<p>Has anyone had experience with .netCART, or seen this issue before? </p>
<p>EDIT:
After much investigating yesterday, it seems as though the problem is tied to the App Pool (which is running in classic pipeline mode on .NET 2.0), and Decryption. Can anyone tell me what the processes or services are that are tied to the default app pool which help handle decryption?</p>
http://stackoverflow.com/questions/878500/netcart-credit-card-decryption-iis-7-app-pool-and-decryption-issue/880449#8804490Answer by Joel Coehoorn for .netCART Credit Card Decryption - IIS 7 App Pool and Decryption issueJoel Coehoorn2009-05-19T00:31:27Z2009-05-19T00:31:27Z<p>Don't know where your specific problem is, but that code snippet is equivalent to this:</p>
<pre><code>Dim CCEncrypt As String = tools.Decrypt(DataRow("CreditCard").ToString().Trim())
</code></pre>
<p>To explain the changes:</p>
<ul>
<li>You can skip the <code>.Item</code> part because it's an indexer for DataRow</li>
<li>But you should call <code>.ToString()</code>, in case of other types or DbNulls</li>
<li>Then use the string type's <code>.Trim()</code> method rather than the VB <code>Trim()</code> function. <code>Trim()</code> and other old string functions exist solely for backwards compatibility. You're better off becoming accustom to the methods attached to the string type.</li>
<li>In .Net, it's no big deal to declare a variable and assign to it on the same line</li>
<li>And in .Net, Microsoft's style guidelines specifically recommend against any hungarian-notation type warts on variable names.</li>
</ul>
http://stackoverflow.com/questions/878500/netcart-credit-card-decryption-iis-7-app-pool-and-decryption-issue/940142#9401420Answer by MasterMax1313 for .netCART Credit Card Decryption - IIS 7 App Pool and Decryption issueMasterMax13132009-06-02T15:14:49Z2009-06-02T15:14:49Z<p>The end result of this problem was that I used Reflector to get the method out, provide the key manually to perform the decryption, since the decrypt method shown above just provided a call to a method that took the key.</p>
http://stackoverflow.com/questions/878500/netcart-credit-card-decryption-iis-7-app-pool-and-decryption-issue/940176#9401760Answer by Jeffrey Hines for .netCART Credit Card Decryption - IIS 7 App Pool and Decryption issueJeffrey Hines2009-06-02T15:20:10Z2009-06-02T15:20:10Z<p>Check the machinekey element in your web.config. Is it possible the credit cards were encrypted with a different key than you are trying to decrypt them with?</p>