<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.iis.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:cs="http://blogs.iis.net/"><channel><title>More Tips and Troubleshooting Help for Classic ASP Developers</title><link>http://blogs.iis.net/bills/archive/2009/02/20/more-tips-and-troubleshooting-help-for-classic-asp-developers.aspx</link><description>Back in May of 2007 I posted a tips for Classic ASP developers post which has since received more than 50 comments and 85,000 views.&amp;#160; Robert McMurray just posted a set of fabulous tutorials for Classic ASP developers.&amp;#160; If you’re out there and</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>re: More Tips and Troubleshooting Help for Classic ASP Developers</title><link>http://blogs.iis.net/bills/archive/2009/02/20/more-tips-and-troubleshooting-help-for-classic-asp-developers.aspx#3005426</link><pubDate>Fri, 13 Mar 2009 17:01:21 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:3005426</guid><dc:creator>Bret Bentzinger</dc:creator><description>&lt;p&gt;This error 80040e4d &amp;nbsp;means that the database refused the connection due to ACCESS DENIED. &amp;nbsp;So the actual user tring to connect to the database, does not have permissions to do so. &amp;nbsp;In this case it looks like the user is NT AUTHORITY\IUSR for the thread making the call, and it doesn&amp;#39;t look like a username and password is passed in to the connection string. &amp;nbsp; So unless the database e2mdev allows everyone and Anonymous access that call will fail. &amp;nbsp;I would doublecheck the security on the e2mdev database, and then make sure you are connecting as someone with access.&lt;/p&gt;
&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=3005426" width="1" height="1"&gt;</description></item><item><title>re: More Tips and Troubleshooting Help for Classic ASP Developers</title><link>http://blogs.iis.net/bills/archive/2009/02/20/more-tips-and-troubleshooting-help-for-classic-asp-developers.aspx#3004516</link><pubDate>Fri, 13 Mar 2009 10:27:18 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:3004516</guid><dc:creator>Anonymous</dc:creator><description>&lt;p&gt;our server is migrated to (windows 2008/sql2008/iis7) it throws error error &amp;#39;80040e4d&amp;#39; &amp;nbsp;while connecting database, i enabled Failed Request Tracing.&lt;/p&gt;
&lt;p&gt; The error log as below&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Url &lt;a rel="nofollow" target="_new" href="http://83.244.197.221:80/e2m/index.asp"&gt;83.244.197.221/.../index.asp&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;App Pool DefaultAppPool &lt;/p&gt;
&lt;p&gt;Authentication anonymous &lt;/p&gt;
&lt;p&gt;User from token NT AUTHORITY\IUSR &lt;/p&gt;
&lt;p&gt;Activity ID {00000000-0000-0000-3100-0080000000F2} &lt;/p&gt;
&lt;p&gt;Site 1 &lt;/p&gt;
&lt;p&gt;Process 4652 &lt;/p&gt;
&lt;p&gt;Failure Reason STATUS_CODE &lt;/p&gt;
&lt;p&gt;Trigger Status 500 &lt;/p&gt;
&lt;p&gt;Final Status 500 &lt;/p&gt;
&lt;p&gt;Time Taken 47 msec &lt;/p&gt;
&lt;p&gt;ASP_LOG_ERROR&lt;/p&gt;
&lt;p&gt;LineNumber 24 &lt;/p&gt;
&lt;p&gt;ErrorCode 80040e4d &lt;/p&gt;
&lt;p&gt;Description &lt;/p&gt;
&lt;p&gt;WARNINGS&lt;/p&gt;
&lt;p&gt;ModuleName IsapiModule &lt;/p&gt;
&lt;p&gt;Notification 128 &lt;/p&gt;
&lt;p&gt;HttpStatus 500 &lt;/p&gt;
&lt;p&gt;HttpReason Internal Server Error &lt;/p&gt;
&lt;p&gt;HttpSubStatus 0 &lt;/p&gt;
&lt;p&gt;ErrorCode 0 &lt;/p&gt;
&lt;p&gt;ConfigExceptionInfo &amp;nbsp;&lt;/p&gt;
&lt;p&gt;Notification EXECUTE_REQUEST_HANDLER &lt;/p&gt;
&lt;p&gt;ErrorCode The operation completed successfully. (0x0) &lt;/p&gt;
&lt;p&gt;and my database connection classic ASP code is as below &lt;/p&gt;
&lt;p&gt;Dim rsUSERSESSIONEXISTS&lt;/p&gt;
&lt;p&gt;				 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; set rsUSERSESSIONEXISTS = Server.CreateObject(&amp;quot;ADODB.Recordset&amp;quot;)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; rsUSERSESSIONEXISTS.ActiveConnection = &amp;quot;Driver={SQL Server};Server=&amp;quot; &amp;amp; Request.ServerVariables(&amp;quot;LOCAL_ADDR&amp;quot;) &amp;amp; &amp;quot;;Database=e2mdev&amp;quot; &lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; rsUSERSESSIONEXISTS.Source = &amp;quot;SELECT * FROM userinfo_userinfo&amp;quot;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; rsUSERSESSIONEXISTS.CursorType = 0&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; rsUSERSESSIONEXISTS.CursorLocation = 2&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; rsUSERSESSIONEXISTS.LockType = 3&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; rsUSERSESSIONEXISTS.Open()&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; rsUSERSESSIONEXISTS_numRows = 0&lt;/p&gt;
&lt;p&gt;please help me &lt;/p&gt;
&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=3004516" width="1" height="1"&gt;</description></item><item><title>March 2009 - Technical Rollup Mail - Internet</title><link>http://blogs.iis.net/bills/archive/2009/02/20/more-tips-and-troubleshooting-help-for-classic-asp-developers.aspx#2997762</link><pubDate>Tue, 10 Mar 2009 22:32:43 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2997762</guid><dc:creator>Technical RollUp</dc:creator><description>&lt;p&gt;News Biztalk Server New Case Studies Saiseikai Kumamoto Hospital - Japanese Regional Hospital Boosts&lt;/p&gt;
&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=2997762" width="1" height="1"&gt;</description></item><item><title>More Tips and Troubleshooting Help for Classic ASP Developers </title><link>http://blogs.iis.net/bills/archive/2009/02/20/more-tips-and-troubleshooting-help-for-classic-asp-developers.aspx#2996149</link><pubDate>Tue, 10 Mar 2009 11:00:02 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2996149</guid><dc:creator>Web Development Community</dc:creator><description>&lt;p&gt;You are voted (great) - Trackback from Web Development Community&lt;/p&gt;
&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=2996149" width="1" height="1"&gt;</description></item><item><title>More Tips and Troubleshooting Help for Classic ASP Developers &amp;#8230;</title><link>http://blogs.iis.net/bills/archive/2009/02/20/more-tips-and-troubleshooting-help-for-classic-asp-developers.aspx#2956367</link><pubDate>Sat, 21 Feb 2009 05:00:17 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2956367</guid><dc:creator>More Tips and Troubleshooting Help for Classic ASP Developers …</dc:creator><description>&lt;p&gt;Pingback from &amp;nbsp;More Tips and Troubleshooting Help for Classic ASP Developers &amp;amp;#8230;&lt;/p&gt;
&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=2956367" width="1" height="1"&gt;</description></item><item><title>Windows Vista &amp;raquo; More Tips and Troubleshooting Help for Classic ASP Developers</title><link>http://blogs.iis.net/bills/archive/2009/02/20/more-tips-and-troubleshooting-help-for-classic-asp-developers.aspx#2956270</link><pubDate>Sat, 21 Feb 2009 03:14:20 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2956270</guid><dc:creator>Windows Vista » More Tips and Troubleshooting Help for Classic ASP Developers</dc:creator><description>&lt;p&gt;Pingback from &amp;nbsp;Windows Vista &amp;amp;raquo; More Tips and Troubleshooting Help for Classic ASP Developers&lt;/p&gt;
&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=2956270" width="1" height="1"&gt;</description></item><item><title>Webmaster Crap  &amp;raquo; Blog Archive   &amp;raquo; More Tips and Troubleshooting Help for Classic ASP Developers &amp;#8230;</title><link>http://blogs.iis.net/bills/archive/2009/02/20/more-tips-and-troubleshooting-help-for-classic-asp-developers.aspx#2956211</link><pubDate>Sat, 21 Feb 2009 01:35:16 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2956211</guid><dc:creator>Webmaster Crap  » Blog Archive   » More Tips and Troubleshooting Help for Classic ASP Developers …</dc:creator><description>&lt;p&gt;Pingback from &amp;nbsp;Webmaster Crap &amp;nbsp;&amp;amp;raquo; Blog Archive &amp;nbsp; &amp;amp;raquo; More Tips and Troubleshooting Help for Classic ASP Developers &amp;amp;#8230;&lt;/p&gt;
&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=2956211" width="1" height="1"&gt;</description></item></channel></rss>