User Michael Kniskern - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T18:49:28Zhttp://stackoverflow.com/feeds/user/26327http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1868133/additional-try-statement-in-catch-statement-code-smell5Additional try statement in catch statement - code smell?Michael Kniskern2009-12-08T16:31:31Z2009-12-08T19:56:57Z
<p>Situation:</p>
<p>My application need to process the first step in the business rules (the initial try-catch statement). If an certain error occurs when the process calls the helper method during the step, I need to switch to a second process in the catch statement. The back up process uses the same helper method. If an same error occurs during the second process, I need to stop the entire process and throw the exception. </p>
<p>Implementation:</p>
<p>I was going to insert another <code>try-catch</code> statement into the <code>catch</code> statement of the first <code>try-catch</code> statement.</p>
<pre><code>//run initial process
try
{
//initial information used in helper method
string s1 = "value 1";
//call helper method
HelperMethod(s1);
}
catch(Exception e1)
{
//backup information if first process generates an exception in the helper method
string s2 = "value 2";
//try catch statement for second process.
try
{
HelperMethod(s2);
}
catch(Exception e2)
{
throw e2;
}
}
</code></pre>
<p>Is this code smell? If yes, what would be a better design pattern to avoid this? </p>
<p><b>Edit</b></p>
<p>I caused some confusion and left out that when the first process fails and switches to the second process, it will send different information to the helper method. I have updated the scenario to reflect the entire process. </p>
http://stackoverflow.com/questions/341512/the-creator-of-this-fault-did-not-specify-a-reason-exception2"The creator of this fault did not specify a Reason" ExceptionMichael Kniskern2008-12-04T17:49:58Z2009-11-18T00:56:41Z
<p>I have the following code in WCF service to throw a custom fault based on certain situations. I am getting a "The creator of this fault did not specify a Reason" exception. What am I doing wrong?</p>
<pre><code>//source code
if(!DidNotPass)
{
InvalidRoutingCodeFault fault = new InvalidRoutingCodeFault("Invalid Routing Code - No Approval Started");
throw new FaultException<InvalidRoutingCodeFault>(fault);
}
//operation contract
[OperationContract]
[FaultContract(typeof(InvalidRoutingCodeFault))]
bool MyMethod();
//data contract
[DataContract(Namespace="http://myuri.org/Simple")]
public class InvalidRoutingCodeFault
{
private string m_ErrorMessage = string.Empty;
public InvalidRoutingCodeFault(string message)
{
this.m_ErrorMessage = message;
}
[DataMember]
public string ErrorMessage
{
get { return this.m_ErrorMessage; }
set { this.m_ErrorMessage = value; }
}
}
</code></pre>
http://stackoverflow.com/questions/1683279/visual-studio-2010-beta-2-and-entity-framework-walkthrough2Visual Studio 2010 Beta 2 and Entity Framework walkthroughMichael Kniskern2009-11-05T20:14:25Z2009-11-16T02:59:37Z
<p>I am in the process of evaluating Visual Studio 2010 Beta 2 and looking for possible replacements for current our data access layer.</p>
<p>The Entity Framework looks like a promising replacement to the data retrieval functionality in our applications.</p>
<p>Does anyone have a great walk-through/tutorial that demonstrates how to use the Entity Framework from soup to nuts?</p>
http://stackoverflow.com/questions/1681437/beginning-php-development2Beginning PHP developmentMichael Kniskern2009-11-05T15:52:17Z2009-11-06T06:52:10Z
<p>I am starting on a project where I will be making HTML and CSS edits to PHP site. I need to configure my home computer to run the site and do PHP development work on it.</p>
<p>What is the best recommendation for a beginner to start PHP development? I have an extensive background using the Microsoft programming stack and .NET development.</p>
<p>My home computer is currently using Windows Vista Home Premium x64.</p>
http://stackoverflow.com/questions/616210/reset-scroll-position-after-async-postback-asp-net2Reset scroll position after Async postback - ASP.NETMichael Kniskern2009-03-05T19:14:19Z2009-11-05T21:01:56Z
<p>What is the best way to reset the scroll position to the top of page after the an asynchronous postback? </p>
<p>The asynchronous postback is initiated from a ASP.NET GridView CommandField column and the ASP.NET update panel Update method is called in the GridView OnRowCommand.</p>
<p>My current application is an ASP.NET 3.5 web site. I am <b>NOT</b> using jQuery and do not want to implement it.</p>
<p><b>EDIT:</b> I have received excellent feedback from everyone, and I ended using the PageRequestManager method in a script tag, but my next question is:</p>
<p>How do I configure it to only execute when the user clicks the ASP.NET CommandField in my GridView control? I have other buttons on the page that perform an asynchronous postback that I do not want to scroll to the top of the page.</p>
<p><b>EDIT 1:</b> I have developed a solution where I do not need to use the PageRequestManager. See my follow up answer for solution.</p>
http://stackoverflow.com/questions/795645/windows-server-2008-hyper-v-on-x86-processor0Windows Server 2008 Hyper-V on x86 processorMichael Kniskern2009-04-27T23:11:14Z2009-11-01T02:00:03Z
<p>I notice there are two version of Windows Server 2008 w/ Hyper-V available for download on the MSDN Subscription License site:</p>
<ul>
<li>Windows Server 2008 Datacenter, Enterprise and Standard (x64)</li>
<li>Windows Server 2008 Datacenter, Enterprise and Standard (x86)</li>
</ul>
<p>I want to set up a development server for testing/developing using the Hyper-V software. According to the <a href="http://technet.microsoft.com/en-us/library/cc731898.aspx" rel="nofollow">pre-requisites</a>, you can only run Hyper-V on x64 based processor. Can a run Hyper-V on a x86 based processer? If not, why do Microsoft offer a x86 and x64 download?</p>
<p>This is a follow up to this <a href="http://stackoverflow.com/questions/795514/msdn-download-for-windows-servers-2008">question</a></p>
<p><b>Update:</b></p>
<p>The MSDN subscription site also offers a download for Windows Server 2008 Datacenter, Enterprise and Standard without Hyper-V (x64 and x86). Why don't they just offer one download for x86 version on Windows Server 2008, it is just confusing trying to determine the correct installion ISO....</p>
http://stackoverflow.com/questions/1004409/what-is-the-cost-of-coding-and-deploying-asp-net-mvc-or-stackoverflow-com-asp-ne/1004459#10044592Answer by Michael Kniskern for What is the cost of coding and deploying asp.net MVC or stackoverflow.com, ASP.NET MVC VS struts,springMichael Kniskern2009-06-16T23:47:45Z2009-10-28T23:52:35Z<p>You can develop an ASP.NET MVC site with very little out of pocket costs:</p>
<ul>
<li>ASP.NET MVC 1.0 (Free to download)</li>
<li>SQL Server Express 2008 with Service Pack 1 (Free to download)</li>
<li>Visual Web Developer 2008 Express with SP 1 (Free to Download)</li>
</ul>
<p>I can see your only overhead being the cost of hosting the site. Look for a hosting provider that has the ASP.NET MVC 1.0 and SQL Server 2008.</p>
<p>Download the <a href="http://www.microsoft.com/Web/downloads/platform.aspx" rel="nofollow">Microsoft Web Platform Installer</a> to see what is available for free from the Microsoft to assist with developing web applications.</p>
<p>Also, if you developing software to sell commerically you can enroll in the Mircosoft <a href="http://www.microsoft.com/BizSpark/" rel="nofollow">BizSpark</a> program. It is a program designed to encourge start up companies to use the Mircosoft development stack.</p>
<p><b>Update</b></p>
<p>Microsoft just recently announced the <a href="http://www.microsoft.com/web/websitespark/" rel="nofollow">WebsiteSpark</a> which is more geared towards start up web development shops that company that sell software. </p>
http://stackoverflow.com/questions/248603/natural-sort-order-in-c7Natural Sort Order in C#Michael Kniskern2008-10-29T22:04:33Z2009-10-28T15:56:50Z
<p>Anyone have a good resource or provide a sample of a natural order sort in C# for an <code>FileInfo</code> array? I am implementing the <code>IComparer</code> interface in my sorts.</p>
http://stackoverflow.com/questions/837753/what-is-the-offical-terminology-for-the-basic-net-objects-in-c0What is the offical terminology for the basic .NET objects in C#Michael Kniskern2009-05-08T00:48:57Z2009-10-27T00:41:43Z
<p>What is the official term for the basic object types available in the C#? I am creating API documentation and I need to explain any that one property of my API will accept any basic C# object (<code>string</code>, <code>Int32</code>, etc.) and it will not accept any complex data type (<code>struct</code>, <code>class</code>)</p>
http://stackoverflow.com/questions/1604110/sqldbtype-enumeration-mapping-c0SqlDbType enumeration mapping - C#Michael Kniskern2009-10-21T22:54:09Z2009-10-22T09:10:06Z
<p>What value in the <code>SqlDbType</code> enumeration should I use for the <code>numeric</code> T-SQL data type?</p>
http://stackoverflow.com/questions/1596251/parse-integer-from-string-containing-letters-and-spaces-c1Parse integer from string containing letters and spaces - C#Michael Kniskern2009-10-20T17:49:50Z2009-10-20T19:05:15Z
<p>What is the most efficient way to parse an integer out of a string that contains letters and spaces?</p>
<p>Example:
I am passed the following string: "RC 272". I want to retrieve 272 from the string.</p>
<p>I am using C# and .NET 2.0 framework.</p>
http://stackoverflow.com/questions/201988/communication-with-the-underlying-transaction-manager-has-failed-error-message1"Communication with the underlying transaction manager has failed" error messageMichael Kniskern2008-10-14T16:59:11Z2009-10-20T12:11:21Z
<p>A client of our has recently upgraded a ASP.NET 1.1 web application to ASP.NET that uses COM+ transaction processing and received the following exception while trying to process a transaction:</p>
<blockquote>
<p>Exception Type:
System.Transactions.TransactionManagerCommunicationException<br />
Message: Communication with the
underlying transaction manager has
failed.</p>
<p>Inner Exception Type:
System.Runtime.InteropServices.COMException
ErrorCode: -2147467259<br />
Message: Error
HRESULT E_FAIL has been returned from
a call to a COM component.</p>
</blockquote>
<p>Here are the following settings on MSDTC Security Settings:</p>
<blockquote>
<p>-- Network DTC Access<br />
-- Allow Inbound<br />
-- Allow Outbound<br />
-- Incoming Caller Authenication Required</p>
</blockquote>
<p>A Windows XP SP3 workstation is trying to establish a connection to a Windows Server 2003 machine.</p>
<p>Has anyone else experienced this error and know how to resolve it.</p>
http://stackoverflow.com/questions/973206/hresult-0x80010105-rpceserverfault-question1HRESULT: 0x80010105 (RPC_E_SERVERFAULT) questionMichael Kniskern2009-06-10T00:45:27Z2009-10-17T00:48:49Z
<p>For my company, I created a ASP.NET web service that uses a 3rd party payment prcoessing engine to authorize credit card transactions.</p>
<p>The web service is hosted on a seperate application server and connects to the payment processing server via an ActiveX object (.ocx extension). Lately, it has been generating a HRESULT: 0x80010105 (RPC_E_SERVERFAULT) exception when I try to establish an connection to the application using an "IsAvaiable" check.</p>
<p>Does anyone recommend an good place to start for researching this issue?</p>
<p>(I know contacting the vendor would be the first option, but I want to have my "ducks in a row" before we contact technical support)</p>
http://stackoverflow.com/questions/1569370/find-in-files-command-in-sql-server-management-studio0Find in Files command in SQL Server Management StudioMichael Kniskern2009-10-14T22:32:04Z2009-10-14T22:46:26Z
<p>Is there way to use the "Find in Files" command for searching all of the stored procedures and views for a particular database in SQL Server 2005 Management Studio?</p>
<p><b>Edit</b></p>
<p>I want to search all of the stored procedures in database X for string Y. </p>
http://stackoverflow.com/questions/185420/issues-with-client-consuming-a-net-web-service-upgraded-from-net-1-1-to-3-50Issues with client consuming a .net web service upgraded from .NET 1.1 to 3.5Michael Kniskern2008-10-08T23:59:12Z2009-10-01T19:00:02Z
<p>I am working on a web application that was recently converted from Visual Studio 2003 to Visual Studio 2008. The application contained some web services that were written using the .NET 1.1 Framework and Web Service Enhancements 2.0. They were converted to the .NET 3.5 framework using the VS 2008 Conversion Wizard Tool.</p>
<p>A client application which is still written using the .NET 1.1 framework has a reference to the updated web service and try to consume the web service and received the following error:</p>
<p>System.Web.Services.Protocols.SoapException: Server did not recognize the value of HTTP Header SOAPAction: (web service URI)</p>
<p>The URL Behavior is set to static for the reference and the proxy class inheritance was changed from System.Web.Services.Protocols.SoapHttpClientProtocol namespace to Microsoft.Web.Services2.WebServicesExtension namespace</p>
<p>If you need additional information or need to see some source code, please let me know.</p>
http://stackoverflow.com/questions/1501001/what-features-are-people-looking-forward-to-in-visual-studio-2010/1501064#15010641Answer by Michael Kniskern for What features are people looking forward to in Visual Studio 2010?Michael Kniskern2009-09-30T22:48:07Z2009-09-30T22:48:07Z<p>Scott Guthrie recently did a series of blog posts about the new features available in VS 2010. Here is a summary:</p>
<ul>
<li><a href="http://weblogs.asp.net/scottgu/archive/2009/08/25/clean-web-config-files-vs-2010-and-net-4-0-series.aspx" rel="nofollow">Clean Web.Config Files</a></li>
<li><a href="http://weblogs.asp.net/scottgu/archive/2009/08/26/starter-project-templates-vs-2010-and-net-4-0-series.aspx" rel="nofollow">Starter Project Templates</a></li>
<li><a href="http://weblogs.asp.net/scottgu/archive/2009/08/27/multi-targeting-support-vs-2010-and-net-4-series.aspx" rel="nofollow">Multi-Targeting Support</a></li>
<li><a href="http://weblogs.asp.net/scottgu/archive/2009/08/31/multi-monitor-support-vs-2010-and-net-4-series.aspx" rel="nofollow">Multi-Monitor Support</a></li>
<li><a href="http://weblogs.asp.net/scottgu/archive/2009/09/02/code-optimized-web-development-profile-vs-2010-and-net-4-0-series.aspx" rel="nofollow">Code Optimized Web Development Profile</a></li>
<li><a href="http://weblogs.asp.net/scottgu/archive/2009/09/04/asp-net-html-javascript-snippet-support-vs-2010-and-net-4-0-series.aspx" rel="nofollow">ASP.NET, HTML, JavaScript Snippet Support</a></li>
<li><a href="http://weblogs.asp.net/scottgu/archive/2009/09/15/auto-start-asp-net-applications-vs-2010-and-net-4-0-series.aspx" rel="nofollow">Auto-Start Applications</a></li>
</ul>
http://stackoverflow.com/questions/1311028/will-i-experience-pain-if-i-cut-back-to-visual-studio-express/1500308#15003082Answer by Michael Kniskern for Will I experience pain if I cut back to Visual Studio Express?Michael Kniskern2009-09-30T19:54:36Z2009-09-30T19:54:36Z<p>There is new program now available from Microsoft to allow web developers to access the Microsoft Stack similar to the BizSpark program.</p>
<p>It is called <a href="http://www.microsoft.com/web/websitespark/" rel="nofollow">Website Spark</a>. VS 2008 Professional Edition and SQL Server 2008 Web Editon are some of the tools available through the program.</p>
http://stackoverflow.com/questions/1494567/creating-ids-for-uniqueness-and-url-referentiality/1494605#14946051Answer by Michael Kniskern for Creating IDs for uniqueness and URL referentialityMichael Kniskern2009-09-29T20:00:25Z2009-09-29T20:00:25Z<p>I would agree that this is an acceptable practice because it keeps the user ID unique when using it over multiple databases and applications.</p>
<p>I use the same practice in my caching application block. The caching application block generates a GUID when an item is cached and the application uses that GUID to retrieve the item from the cache.</p>
http://stackoverflow.com/questions/1474702/link-to-a-file-share-through-an-anchor-tag0Link to a file share through an anchor tagMichael Kniskern2009-09-24T23:33:12Z2009-09-24T23:47:29Z
<p>How do I format an HTML anchor tag to link to a shared network folder?</p>
<p>I tried the following and it does not like it.</p>
<pre><code><a href="file:\\myserver\myfolder\myfile.docx">My Shared Folder</a>
</code></pre>
http://stackoverflow.com/questions/1474197/could-not-load-file-or-assembly-petersdatepackage0Could not load file or assembly 'PetersDatePackage'Michael Kniskern2009-09-24T21:16:26Z2009-09-24T21:35:47Z
<p>I have recently taken over an application that uses the Peter Blum Date and Time .NET control. I copied all the files to my aspnet_client directory and when I build the application I get the following error:</p>
<blockquote>
<p>Could not load file or assembly
'PetersDatePackage' or one of its
dependencies. The system cannot find
the file specified.</p>
</blockquote>
<p>Do you know how I can resolve this error?</p>
http://stackoverflow.com/questions/567204/best-iphone-apps-for-a-developer9"Best" iPhone apps for a developerMichael Kniskern2009-02-19T21:15:28Z2009-09-23T21:34:04Z
<p>As a developer who has an iPhone, I am looking for applications that are developer-centric. What iPhone applications do you find useful as a developer?</p>
<p><b>Update:</b> I am a .NET-centric developer. I have mostly done development is C#, ASP.NET and SQL server over the past few years</p>
http://stackoverflow.com/questions/1462250/foreach-loop-does-not-loop-through-all-item-in-list-c2foreach loop does not loop through all item in list - C#Michael Kniskern2009-09-22T19:56:45Z2009-09-23T07:16:26Z
<p>I have a basic <code>foreach</code> loop that calls a static method which makes a connection to a database and inserts some data. For some reason it will only iterate through the first item in the collection when I run the application without debugging. If I debug the application and set a break point on the <code>foreach</code> loop, it will iterate through all of the items in the collection.</p>
<p>If I set a break point and step over the <code>foreach</code> loop, it will demonstarte the same behavior as if I was running the application without debugging.</p>
<p>Does anyone know what would cause this type of behavior?</p>
<p>Here is a simplified version of the source code:</p>
<pre><code>List<MyObject> objectlist = new List<MyObject>();
//some code to populate list
foreach(MyObject myobject in objectlist)
{
string a = "a";
string b = "b";
MyLibrary.UpdateDatabase(a, b);
}
</code></pre>
<p>(I am using Visual Studio 2008 SP1)</p>
<p><b>Update</b></p>
<p>The process does not throw any exceptions with or without debugging the application.</p>
http://stackoverflow.com/questions/1462250/foreach-loop-does-not-loop-through-all-item-in-list-c/1462762#14627621Answer by Michael Kniskern for foreach loop does not loop through all item in list - C#Michael Kniskern2009-09-22T21:34:21Z2009-09-22T21:34:21Z<p>It was not iterating through the <code>foreach</code> loop when I was not debugging the application because the <code>myobject</code> object was not used in the <code>UpdateDatabase</code> method call.</p>
<p>My source code should look like this:</p>
<pre><code>List<MyObject> objectlist = new List<MyObject>();
//some code to populate list
foreach(MyObject myobject in objectlist)
{
MyLibrary.UpdateDatabase(myobject.a, myobject.b);
}
</code></pre>
http://stackoverflow.com/questions/1441122/window-service-and-c-design-pattern-question0Window Service and C# design pattern questionMichael Kniskern2009-09-17T20:23:46Z2009-09-18T12:35:47Z
<p>I have recently taken over a legacy windows service and it has been writing the following event in the system event log:</p>
<blockquote>
<p>Event ID: 7034 <br />Description: The
MyService service terminated
unexpectedly. It has done this X
time(s).</p>
</blockquote>
<p>I was looking over source code and found the following code pattern in the service class library:
(It has been simplified to protect the innocent..)</p>
<pre><code>public static void StartService()
{
//do some stuff...
ManageCycle();
}
public static void ManageCycle()
{
//do some stuff
ManageCycle();
}
</code></pre>
<p>What is this coding patten called and could it possibly cause the windows service to shutdown (i.e. memory leak)? </p>
http://stackoverflow.com/questions/1429063/why-does-windows-application-is-requiring-net-3-5-framework/1430217#14302170Answer by Michael Kniskern for Why does Windows application is requiring .Net 3.5 frameworkMichael Kniskern2009-09-15T23:53:36Z2009-09-15T23:53:36Z<p>Try building the application in release mode and deploy it to the server. You will need to grab the application from the /bin/release folder instead of the /bin/debug folder.</p>
<p>Also, check the target framework under the application section of the project properties.</p>
http://stackoverflow.com/questions/1429261/hierarchical-multi-column-sorting-for-the-net-gridview/1429393#14293931Answer by Michael Kniskern for Hierarchical (Multi-column) Sorting for the .net GridView?Michael Kniskern2009-09-15T20:19:34Z2009-09-15T20:19:34Z<p>ASPX page</p>
<pre><code><asp:GridView id="MyGridView" runat="server" AllowSorting="true" OnSorting="MyGridView_OnSorting">
<asp:BoundField DataField="ColumnA" SortExpression="A" />
<asp:BoundField DataField="ColumnB" SortExpression="B" />
<asp:BoundField DataField="ColumnC" SortExpression="C" />
</asp:GridView>
</code></pre>
<p>Code Behind</p>
<pre><code>protected void MyGridView_OnSorting(object sender, GridViewSortEventArgs e)
{
List<MyEntity> data = MyBLL.GetDataSource();
data.Sort(delegate(MyEntity x, MyEntity y) {
switch(e.SortExpression)
{
case "ColumnA":
return String.Compare(x.ColumnA, y.ColumnA);
break;
case "ColumnB":
return String.Compare(x.ColumnB, y.ColumnB);
break;
case "ColumnC":
return String.Compare(x.ColumnC, y.ColumnC);
break;
}
}
);
MyGridView.DataSource = data;
MyGridView.DataBind();
}
</code></pre>
http://stackoverflow.com/questions/373417/to-google-or-not-to-google-complexity-of-so-questions4To Google or not to Google...Complexity of SO questions? [closed]Michael Kniskern2008-12-17T01:48:54Z2009-09-15T17:05:23Z
<p>Since I discovered Stack Overflow, it has been excellent resource for answering program-related questions. Lately, I actually find myself coming here before doing a google search to even answer the simplest of questions. I have been so impressed the quality of feedback from the user community, I can just create a question and receive multiple answers in minutes.</p>
<p>Is this an appropriate behavior or should I always go to google before coming to SO for programming-related answers? </p>
http://stackoverflow.com/questions/637090/access-denied-when-trying-to-connect-to-remote-iis-server-c1"Access Denied" when trying to connect to remote IIS server - C#Michael Kniskern2009-03-12T01:41:18Z2009-09-11T20:59:59Z
<p>I receive an "Access Deined" COMException when I try to connect to a remote IIS 6 server from my C# application that is running under IIS 5.1.</p>
<p>Any ideas? I am experiencing all the same issues with the original questions.</p>
<p><b>Update - 4/1/09</b></p>
<p>I found this solution (<a href="http://www.codeproject.com/KB/cs/Start_Stop_IIS_Website.aspx" rel="nofollow">http://www.codeproject.com/KB/cs/Start_Stop_IIS_Website.aspx</a>) that consists of a window application connecting to an IIS server to start and stop web sites. I am able to run it on my workstation and connect to the IIS server.</p>
<p>Ugh....why can I run this stand alone application but not my ASP.NET application?</p>
<p><b>Original</b></p>
<p>I receive an "Access Denied" COMException when I try to connect to IIS from a remote machine using the DirectoryEntry.Exist method to check to see if the IIS server is valid.</p>
<pre><code>string path = string.Format("IIS://{0}/W3SVC", server);
if(DirectoryEntry.Exist(path))
{
//do something is valid....
}
</code></pre>
<p>I am a member of an active directory group that has been added to the Administrators groups to the IIS server I am trying to connect to.</p>
<p>Has anyone experience this issue and know how to resolve it?</p>
<p><b>UPDATE:</b> </p>
<p>@Kev - It is an ASP.NET application. Also, I can connect without an username and password to the remote server through IIS6 Manager.</p>
<p>@Chris - I am trying to connect to the remote server to display the number of virtual directorys and determine the .NET framework version of each directory. See <a href="http://stackoverflow.com/questions/636569/how-do-i-determine-the-asp-net-version-of-a-virtual-directory-or-website-using-c">this</a> SO question.</p>
<p>@dautzenb - My ASP.NET application is running under IIS 5.1 trying to connect to an IIS 6 server. I can see fault audits in the security log for my local ASPNET account on the remote server. When I try to debug the application, I am running under my domain account and still get the Access is denied.</p>
<p><b>UPDATE 2:</B></p>
<p>@Kev - I was able to establish to create a DirectoryEntry object using the following overload:</p>
<pre><code>public DirectoryEntry
(
string path,
string username,
string password
)
</code></pre>
<p>But, all of the properties contain a " threw an exception of type 'System.Runtime.InteropServices.COMException'" while I debug the app.</p>
<p>Also, the AuthenticationType property is set to Secure.</p>
<p><b>UPDATE 3:</b></p>
<p>The following two failure audit entries were in the remote IIS server's security event log every time I tried to establish a connection:</p>
<p>First event:</p>
<p>Event Category: Account Logon<br />
Event ID: 680<br />
Log attempt by: MICROSOFT_AUTHENTICATION_PACKAGE_V1_0<br />
Logon account: ASPNET<br />
Source Workstation: <br />
Error Code: 0xC0000234<br /></p>
<p>Second event:</p>
<p>Event Category: Logon/Logoff<br />
Event ID: 529<br />
Logon Failure:<br />
Reason: Unknown user name or bad password<br />
User Name: ASPNET<br />
Domain: (MyDomain)<br />
Logon Type: 3<br />
Logon Process: NtLmSsp<br />
Authentication Package: NTLM<br />
Workstation Name: (MyWorkstationId)<br />
Caller User Name: -<br />
Caller Domain: -<br />
Caller Logon ID: -<br />
Caller Process ID: -<br />
Transited Services: -<br />
Source Network Address: 10.12.13.35<br />
Source Port: 1708<br /></p>
<p>Impersonation is set to true and the username and password are blank. It is using the ASPNET account on the remote IIS server.</p>
http://stackoverflow.com/questions/1408009/software-engineering-application-development-contests/1408014#14080140Answer by Michael Kniskern for Software Engineering/Application Development ContestsMichael Kniskern2009-09-10T22:15:06Z2009-09-10T22:15:06Z<p><a href="http://meta.stackoverflow.com/questions/20420/countdown-app-for-devdays">Countdown Application for DevDays</a></p>
http://stackoverflow.com/questions/628565/display-lines-number-in-stack-trace-for-net-assembly-in-release-mode7Display lines number in Stack Trace for .NET assembly in Release mode Michael Kniskern2009-03-10T00:44:28Z2009-09-03T20:27:20Z
<p>Is there a way to display the lines in the stack trace for the .NET assembly build/deployed in Release mode?</p>
<p><b>UPDATE:</b> </p>
<p>My application is divided into three class library projects and one ASP.NET "website" project. The error I am trying to track down is in one of the three class library projects. I only deployed the pdb file for the class library project that is generating the "Object reference not set to an instance of an object" error.</p>
<p>The line numbers are still not showing up in the stack trace. Do I need to deploy the pdb files for all projects to get the line numbers in the stack trace?</p>
<p><b>Working solution</b></p>
<p>Deploying the pdb file for each application fixed the line number issue.</p>
http://stackoverflow.com/questions/1868133/additional-try-statement-in-catch-statement-code-smellComment by Michael Kniskern on Additional try statement in catch statement - code smell?Michael Kniskern2009-12-08T20:03:27Z2009-12-08T20:03:27Z@orip - yes, this is just example code. http://stackoverflow.com/questions/1868133/additional-try-statement-in-catch-statement-code-smell/1868167#1868167Comment by Michael Kniskern on Additional try statement in catch statement - code smell?Michael Kniskern2009-12-08T17:03:49Z2009-12-08T17:03:49Z@Jason - I have updated my question to reflect the true scenario. Sorry for the confusion.http://stackoverflow.com/questions/1868133/additional-try-statement-in-catch-statement-code-smell/1868167#1868167Comment by Michael Kniskern on Additional try statement in catch statement - code smell?Michael Kniskern2009-12-08T16:45:41Z2009-12-08T16:45:41Z@Henk - The second process is not using the same information as the first process. I would not consider it a second try with the same information, but a call to same method with different information.http://stackoverflow.com/questions/1868133/additional-try-statement-in-catch-statement-code-smellComment by Michael Kniskern on Additional try statement in catch statement - code smell?Michael Kniskern2009-12-08T16:43:47Z2009-12-08T16:43:47Z@Wim - The helper method is looking up employee information. If the employee is not found, it will need to switch to the back up employee. If the back up employee if not found, the whole process will stop and require human intervention to resolve the issue. http://stackoverflow.com/questions/1205191/what-are-things-that-make-a-programmers-life-miserable/1205631#1205631Comment by Michael Kniskern on What are things that make a programmer's life miserable?Michael Kniskern2009-11-25T23:04:29Z2009-11-25T23:04:29ZTo quote Randal from Clerks "This job would be great if it wasn't for the f---in' customers!"http://stackoverflow.com/questions/1688436/visual-studio-2008-software-assurance-to-2010/1691839#1691839Comment by Michael Kniskern on visual studio 2008 software assurance to 2010Michael Kniskern2009-11-23T22:24:00Z2009-11-23T22:24:00ZThanks for the resource. This has been helpfully with answering Microsoft licensing questions.http://stackoverflow.com/questions/1688436/visual-studio-2008-software-assurance-to-2010/1691839#1691839Comment by Michael Kniskern on visual studio 2008 software assurance to 2010Michael Kniskern2009-11-19T17:50:39Z2009-11-19T17:50:39ZDo you have any officially link from Microsoft verifying this information?http://stackoverflow.com/questions/1604110/sqldbtype-enumeration-mapping-c/1604120#1604120Comment by Michael Kniskern on SqlDbType enumeration mapping - C#Michael Kniskern2009-10-21T23:11:58Z2009-10-21T23:11:58ZThanks for the reference.http://stackoverflow.com/questions/1596251/parse-integer-from-string-containing-letters-and-spaces-c/1596269#1596269Comment by Michael Kniskern on Parse integer from string containing letters and spaces - C#Michael Kniskern2009-10-20T18:04:47Z2009-10-20T18:04:47ZI am getting the following error when I try to build this solution:
"The best overload method match for int.Parse(string, System.Globalization.NumberStyles) has some invalid arguments"http://stackoverflow.com/questions/1596251/parse-integer-from-string-containing-letters-and-spaces-cComment by Michael Kniskern on Parse integer from string containing letters and spaces - C#Michael Kniskern2009-10-20T17:56:33Z2009-10-20T17:56:33Z@Brandon - yes it will always be in that format.http://stackoverflow.com/questions/1569370/find-in-files-command-in-sql-server-management-studio/1569418#1569418Comment by Michael Kniskern on Find in Files command in SQL Server Management StudioMichael Kniskern2009-10-14T22:48:38Z2009-10-14T22:48:38ZThanks. That is the exact command I was looking for.http://stackoverflow.com/questions/1500196/how-to-show-the-delete-confirmation-dialog-box-in-asp-netComment by Michael Kniskern on How to show the delete confirmation dialog box in asp.netMichael Kniskern2009-09-30T20:10:04Z2009-09-30T20:10:04ZWhat version of the .NET framework are you using? Also, are you using the ASP.NET AJAX in your application?http://stackoverflow.com/questions/1495384/personal-mattersComment by Michael Kniskern on Personal mattersMichael Kniskern2009-09-29T23:06:53Z2009-09-29T23:06:53ZJack Daniels.....http://stackoverflow.com/questions/1489474/how-to-test-ecommerce-software-for-credit-cardsComment by Michael Kniskern on How to test eCommerce software for credit cards?Michael Kniskern2009-09-28T22:30:38Z2009-09-28T22:30:38ZAre you using in particular 3rd party e-commerce solution or did you develop your own?http://stackoverflow.com/questions/1474197/could-not-load-file-or-assembly-petersdatepackage/1474284#1474284Comment by Michael Kniskern on Could not load file or assembly 'PetersDatePackage'Michael Kniskern2009-09-24T21:43:03Z2009-09-24T21:43:03ZI had to go to our development environment and copy down the DLL from there. In our documentation there was not any indication of a required DLL file.