User Jason Stangroome - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T17:48:48Zhttp://stackoverflow.com/feeds/user/20819http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/361605/vs2008-iis7-web-project-non-admin-when/551863#5518631Answer by Jason Stangroome for VS2008, IIS7 web project, non-admin. When?Jason Stangroome2009-02-15T23:45:53Z2009-02-15T23:45:53Z<p>I'd like to see an IISAdmin group which grants a developer's user account permission to manage IIS without granting full adminstrator privileges to the entire PC.</p>
http://stackoverflow.com/questions/285572/powershell-yielding-to-os-in-tight-loops1PowerShell yielding to OS in tight loopsJason Stangroome2008-11-12T22:13:31Z2008-11-13T21:47:13Z
<p>I've previously encountered the suggestion to call System.Threading.Thread.Sleep(0); in tights loops in C# to prevent CPU hogging and used it to good effect.</p>
<p>I have a PowerShell script that has a tight loop and I'm wondering whether I should be calling [Thread]::Sleep(0) or Start-Sleep 0 or whether the PS engine will yield for me occasionally.</p>
http://stackoverflow.com/questions/274404/how-to-determine-the-orientation-of-the-screen-in-c-for-mobile-devices/274456#2744560Answer by Jason Stangroome for How to determine the orientation of the screen in C# for mobile devices?Jason Stangroome2008-11-08T06:30:53Z2008-11-08T06:30:53Z<p>Just guessing but my first attempt would be:</p>
<pre><code>var rect = System.Windows.Forms.Screen.PrimaryScreen.Bounds;
// or var rect = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea;
var ratio = rect.Width / rect.Height;
if (ratio == 1.0) // square screen.
if (ratio > 1.0) // landscape.
if (ratio < 1.0) // portrait.
</code></pre>
http://stackoverflow.com/questions/211498/is-there-a-net-equalent-to-sql-servers-newsequentialid/211822#2118220Answer by Jason Stangroome for Is there a .NET equalent to SQL Servers newsequentialid()Jason Stangroome2008-10-17T11:41:06Z2008-10-17T11:41:06Z<p>I've been lead to believe that random Guids can be beneficial to performance in some use cases. Apparently inserting to random pages can avoid contention that would otherwise occur in the end page when multiple people are trying to insert at the same time.</p>
<p>John's PInvoke suggestions is probably the closest to SQL's version but the UUidCreateSequential docs state that you shouldn't use it to identify an object that it's strictly local to the machine generating the Guid.</p>
<p>I'd be measuring the actual use case performance hit with realistic data in realistic quantities before I investigated sequential Guid generation any further.</p>
http://stackoverflow.com/questions/211744/best-way-to-gradually-convert-an-existing-asp-net-site-to-mvc/211789#2117890Answer by Jason Stangroome for Best way to gradually convert an existing ASP.NET site to MVCJason Stangroome2008-10-17T11:25:38Z2008-10-17T11:25:38Z<p>Scott Hanselman has a good blog post discussing how to combine MVC with Web Forms and other ASP.NET technologies.
<a href="http://www.hanselman.com/blog/PlugInHybridsASPNETWebFormsAndASPMVCAndASPNETDynamicDataSideBySide.aspx" rel="nofollow">http://www.hanselman.com/blog/PlugInHybridsASPNETWebFormsAndASPMVCAndASPNETDynamicDataSideBySide.aspx</a></p>
http://stackoverflow.com/questions/94864/tasklist-replacement-for-visual-studio/211784#2117840Answer by Jason Stangroome for Tasklist replacement for Visual StudioJason Stangroome2008-10-17T11:22:08Z2008-10-17T11:22:08Z<p>For semi-immediate programming tasks I use TODO comments in code and ReSharper for Visual Studio to view them.</p>
<p>For longer-term tasks I use Team Foundation Server to record work items.</p>
<p>For non-programming tasks I use Google Calendar.</p>
http://stackoverflow.com/questions/210544/why-is-asp-net-mvc-beta-crashing-my-iis7/211776#211776-1Answer by Jason Stangroome for Why is Asp.net MVC Beta crashing my IIS7?Jason Stangroome2008-10-17T11:17:28Z2008-10-17T11:17:28Z<p>Today. I had IIS 6 crash on Server 2003 when I upgraded an ASP.NET MVC Preview 5 web app to the Beta. I found event log entries that were slightly helpful.</p>
<p>Ultimately I rolled back the MVC version but subsequent Googling lead me to believe it was related to the fact Microsoft.Web.Mvc is now distributed separately and I didn't update that component.</p>
http://stackoverflow.com/questions/199633/how-to-show-compulsory-fields-on-a-windows-form/200828#2008280Answer by Jason Stangroome for How to show compulsory fields on a windows formJason Stangroome2008-10-14T11:48:51Z2008-10-14T11:48:51Z<p>I would use the ErrorProvider control, possibly with a different icon to represent "required" as opposed to "in error". I would also ensure the fields start with error icon shown next to them and the icon should only disappear once data has been provided for that field.</p>
<p>Only doing validation/notification of missing data when the user tries to save seems way too late.</p>
http://stackoverflow.com/questions/172436/net-table-adapters-get-vs-fill/200819#2008192Answer by Jason Stangroome for .NET Table Adapters: Get vs. Fill? Jason Stangroome2008-10-14T11:43:36Z2008-10-14T11:43:36Z<p>A particular gotcha of Fill, if the table already contains data is that you could get unique index exceptions when, for example, the query returns a row whose primary key is already in the table.</p>
<p>I've worked with a lot of data-bound Windows Forms code where edit controls or a grid on the form is bound to a table and then Fill is used to load more rows from the database to the table. This can cause some interesting event firing sequences and intermittent errors from experience.</p>
<p>Using Get to retrieve a new table with the new results then rebinding the form to the new table can avoid situations like this.</p>
<p>I doubt there is much performance difference between the two unless using Fill on a table with existing rows. In this case the table's BeginLoadData method is ignored which would normally have delayed event firing and index rebuilding until the end.</p>
http://stackoverflow.com/questions/156922/recommended-multithreading-book10Recommended Multithreading BookJason Stangroome2008-10-01T09:58:32Z2008-10-10T06:03:45Z
<p>I want to read a good book about multithreading and parallelism. I have a primarily .NET background but I think I would prefer a book focused on first principles and working into general patterns and algorithms and being overall less technology specific.</p>
<p>Obviously a discussion of the kind of low-level system architecture issues that the C# "volatile" keyword attempts to address (for example) would be important, just without being tied directly to a particular language.</p>
<p>Is there a particular book in this field that stands out among the others?</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/152675/datareader-within-try-block-causing-potential-null-reference-error/152719#1527197Answer by Jason Stangroome for DataReader within try block causing potential null reference errorJason Stangroome2008-09-30T11:57:00Z2008-09-30T11:57:00Z<p>Explicitly initialize the dr declaration to Nothing as such:</p>
<pre><code>Dim dr As DbDataReader = Nothing
</code></pre>
<p>And the warning will disappear.</p>
http://stackoverflow.com/questions/152487/msbuild-how-to-obtain-number-of-warnings-raised/152524#1525240Answer by Jason Stangroome for MSBuild: How to obtain number of warnings raised?Jason Stangroome2008-09-30T10:31:24Z2008-09-30T10:31:24Z<p>The C# compiler (csc.exe) has a /warnaserror switch will will treat warnings as errors and fail the build. This is also available as a setting in the .csproj file. I assume Delphi has a similar ability.</p>
http://stackoverflow.com/questions/152506/what-does-this-do-tasklist-m-mscor/152517#1525171Answer by Jason Stangroome for What does this do? tasklist /m "mscor*" Jason Stangroome2008-09-30T10:27:02Z2008-09-30T10:27:02Z<p>It would seem to list all processes using modules like mscoree.dll, mscorwks.dll, etc. This would be .NET processes and possibly processes hosting .NET plug-ins.</p>
http://stackoverflow.com/questions/139964/msbuild-directory-structure-limit-workarounds/152512#1525124Answer by Jason Stangroome for MSBuild directory structure limit workaroundsJason Stangroome2008-09-30T10:24:36Z2008-09-30T10:24:36Z<p>The <a href="http://technet.microsoft.com/en-us/library/bb491006.aspx" rel="nofollow">SUBST command</a> stills seems to exist so remapping the root of your build folder to a drive letter may save some characters if Judah Himango's solution is no good.</p>
http://stackoverflow.com/questions/44470/how-do-i-get-the-click-once-publish-version-to-match-the-assemblyinfo-cs-file-ver/152493#1524937Answer by Jason Stangroome for How do I get the Click Once Publish version to match the AssemblyInfo.cs File Version.Jason Stangroome2008-09-30T10:13:01Z2008-09-30T10:18:06Z<p>We use Team Foundation Server Team Build and have added a block to the TFSBuild.proj's AfterCompile target to trigger the ClickOnce publish with our preferred version number:</p>
<pre><code><MSBuild
Projects="$(SolutionRoot)\MyProject\Myproject.csproj"
Properties="PublishDir=$(OutDir)\myProjectPublish\;ApplicationVersion=$(PublishApplicationVersion);Configuration=$(Configuration);Platform=$(Platform)"
Targets="Publish" />
</code></pre>
<p>The PublishApplicationVersion variable is generated but a custom MSBuild task to use the TFS Changeset number but you could use <a href="http://msdn.microsoft.com/en-us/library/t9883dzc.aspx" rel="nofollow">your own custom task</a> or an <a href="http://msbuildtasks.tigris.org/" rel="nofollow">existing solution</a> to get the version number from the AssemblyInfo file.</p>
<p>This could theoretically be done in your project file (which is just an MSBuild script anyway) but I'd recommend against deploying from a developer machine.</p>
<p>I'm sure other CI solutions can handle this similarly.</p>
<p><hr /></p>
<p>Edit: Sorry, got your question backwards. Going from the ClickOnce version number to the AssemblyInfo file should be doable. I'm sure the MSBuild Community Tasks (link above) have a task for updating the AssemblyInfo file so you'd just need a custom task to pull the version number from the ClickOnce configuration xml.</p>
<p>However, you may also consider changing your error reporting to include the ClickOnce publish version too:</p>
<pre><code>if (System.Deployment.Application.ApplicationDeployment.IsNetworkDeployed)
{
Debug.WriteLine(System.Deployment.Application.ApplicationDeployment.CurrentDeployment.CurrentVersion);
}
</code></pre>
http://stackoverflow.com/questions/152338/wcf-unit-test/152427#1524276Answer by Jason Stangroome for WCF Unit TestJason Stangroome2008-09-30T09:52:22Z2008-09-30T09:52:22Z<p>As aku says, if you're testing service methods (ie code behaviour) then you can unit test that directly and bypass the WCF infrastructure. Of course, if your code depends on WCF context classes (like OperationContext) then I suggest introducing wrappers much like ASP.NET MVC does for HttpContext.</p>
<p>For testing connectivity, it will depend on the type of endpoints you have configured. In some cases you can just self-host your WCF service inside the unit test (like you would with a WCF Windows Service) and test that. </p>
<p>However, you may need to spin up the ASP.NET Development Web Server or even IIS if you want to test WCF behaviour specific to those hosting environments (ie SSL, authentication methods). This gets tricky and can start making demands on the configuration of everyone's development machine and the build servers but is doable.</p>
http://stackoverflow.com/questions/119588/asp-mvc-preview-5-and-iis-6-windows-authentication3ASP MVC Preview 5 and IIS 6 Windows AuthenticationJason Stangroome2008-09-23T07:31:01Z2008-09-25T08:53:08Z
<p>I've just built a basic ASP MVC web site for deployment on our intranet. It expects users to be on the same domain as the IIS box and if you're not an authenticated Windows User, you should not get access.</p>
<p>I've just deployed this to IIS6 running on Server 2003 R2 SP2. The web app is configured with it's own pool with it's own pool user account. The IIS Directory Security options for the web app are set to "Windows Integrated Security" only and the web.config file has:</p>
<pre><code><authentication mode="Windows" />
</code></pre>
<p>From a Remote Desktop session on the IIS6 server itself, an IE7 browser window can successfully authenticate and navigate the web app if accessed via <a href="http://localhost/myapp" rel="nofollow">http://localhost/myapp</a>.</p>
<p>However, also from the server, if accessed via the server's name (ie <a href="http://myserver/myapp" rel="nofollow">http://myserver/myapp</a>) then IE7 presents a credentials dialog which after three attempts entering the correct credentials eventually returns "HTTP Error 401.1 - Unauthorized: Access is denied due to invalid credentials".</p>
<p>The same problem occurs when a workstation browses to the web app url (naturally using the server's name and not "localhost").</p>
<p>The IIS6 server is a member of the only domain we have and has no firewall enabled.</p>
<p>Is there something I have failed to configure correctly for this to work?</p>
<p>Thanks,</p>
<p><hr /></p>
<p>I have tried the suggestions from Matt Ryan, Graphain, and Mike Dimmick to date without success. I have just built a virtual machine test lab with a Server 2003 DC and a separate server 2003 IIS6 server and I am able to replicate the problem.</p>
<p>I am seeing an entry in the IIS6 server's System Event Log the first time I try to access the site via the non-localhost url (ie <a href="http://iis/myapp" rel="nofollow">http://iis/myapp</a>). FQDN urls fail too. </p>
<blockquote>
<p><em>Source: Kerberos, Event ID: 4</em><br />
The kerberos client received a KRB_AP_ERR_MODIFIED error from the server host/iis.test.local. The target name used was HTTP/iis.test.local. This indicates that the password used to encrypt the kerberos service ticket is different than that on the target server. Commonly, this is due to identically named machine accounts in the target realm (TEST.LOCAL), and the client realm.</p>
</blockquote>
http://stackoverflow.com/questions/119588/asp-mvc-preview-5-and-iis-6-windows-authentication/132209#1322096Answer by Jason Stangroome for ASP MVC Preview 5 and IIS 6 Windows AuthenticationJason Stangroome2008-09-25T08:53:08Z2008-09-25T08:53:08Z<p>After extensive Googling I managed to find a solution on the following MSDN article:<br />
<a href="http://msdn.microsoft.com/en-us/library/ms998297.aspx" rel="nofollow">How To: Create a Service Account for an ASP.NET 2.0 Application</a></p>
<p>Specifically the Additional Considerations section which describes "Creating Service Principal Names (SPNs) for Domain Accounts" using the setspn tool from the Windows Support Tools:</p>
<blockquote>
<p>setspn -A HTTP/myserver MYDOMAIN\MyPoolUser<br />
setspn -A HTTP/myserver.fqdn.com MYDOMAIN\MyPoolUser</p>
</blockquote>
<p>This solved my problem on both my virtual test lab and my original problem server.</p>
<p>There is also an important note in the article that using Windows Authentication with custom pool users constrains the associated DNS name to be used by that pool only. That is, another pool with another identity would need to be associated with a different DNS name.</p>
http://stackoverflow.com/questions/119308/how-do-i-get-a-list-of-tables-affected-by-a-set-of-stored-procedures/119424#1194241Answer by Jason Stangroome for How do I get a list of tables affected by a set of stored procedures?Jason Stangroome2008-09-23T06:40:05Z2008-09-23T06:40:05Z<p>I'd do it this way in SQL 2005 (uncomment the "AND" line if you only want it for a particular proc):</p>
<pre><code>SELECT
[Proc] = SCHEMA_NAME(p.schema_id) + '.' + p.name,
[Table] = SCHEMA_NAME(t.schema_id) + '.' + t.name,
[Column] = c.name,
d.is_selected,
d.is_updated
FROM sys.procedures p
INNER JOIN sys.sql_dependencies d
ON d.object_id = p.object_id
AND d.class IN (0,1)
INNER JOIN sys.tables t
ON t.object_id = d.referenced_major_id
INNER JOIN sys.columns c
ON c.object_id = t.object_id
AND c.column_id = d.referenced_minor_id
WHERE p.type IN ('P')
-- AND p.object_id = OBJECT_ID('MyProc')
ORDER BY
1, 2, 3
</code></pre>
http://stackoverflow.com/questions/285572/powershell-yielding-to-os-in-tight-loops/285831#285831Comment by Jason Stangroome on PowerShell yielding to OS in tight loopsJason Stangroome2008-11-12T23:58:21Z2008-11-12T23:58:21ZThe MSDN doc on SpinWait suggests to me it isn't the right choice apart from the small warning saying it may help on Intel HT in certain situations. Hasn't HT been dropped from Intel Core CPUs?
Also, why choose "20" as the argument to SpinWait?http://stackoverflow.com/questions/274418/how-to-keep-your-stored-procedures-dry-in-c-netComment by Jason Stangroome on How to keep your Stored Procedures DRY in C#.NET?Jason Stangroome2008-11-08T05:59:12Z2008-11-08T05:59:12ZYou might find this an interesting read before creating CRUD stored procs for every table:
<a href="http://msdn.microsoft.com/en-us/library/ms978509.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>
http://stackoverflow.com/questions/211751/do-you-use-unit-testing-in-your-professional-projects/211780#211780Comment by Jason Stangroome on Do you use Unit Testing in your professional projects?Jason Stangroome2008-10-17T11:29:45Z2008-10-17T11:29:45ZTDD is the only way to fly, uh, I mean code.
Been doing TDD for the past six months in professional development. Prior to that was just unit testing. It takes time to learn but I would never go without it now.http://stackoverflow.com/questions/156922/recommended-multithreading-book/157012#157012Comment by Jason Stangroome on Recommended Multithreading BookJason Stangroome2008-10-14T07:46:39Z2008-10-14T07:46:39ZAfter two weeks, this answer has the most votes so I'll accept it and go buy the book.http://stackoverflow.com/questions/152675/datareader-within-try-block-causing-potential-null-reference-error/152718#152718Comment by Jason Stangroome on DataReader within try block causing potential null reference errorJason Stangroome2008-09-30T22:19:39Z2008-09-30T22:19:39ZThe compile-time warning that the original poster's code produces remains after applying your suggestion.http://stackoverflow.com/questions/152487/msbuild-how-to-obtain-number-of-warnings-raised/152524#152524Comment by Jason Stangroome on MSBuild: How to obtain number of warnings raised?Jason Stangroome2008-09-30T12:14:20Z2008-09-30T12:14:20ZSorry, didn't realise CC.NET gives up after first error.http://stackoverflow.com/questions/152675/datareader-within-try-block-causing-potential-null-reference-error/152718#152718Comment by Jason Stangroome on DataReader within try block causing potential null reference errorJason Stangroome2008-09-30T11:58:12Z2008-09-30T11:58:12ZThis solution does not work for me in VS2008 SP1.http://stackoverflow.com/questions/152506/what-does-this-do-tasklist-m-mscor/152517#152517Comment by Jason Stangroome on What does this do? tasklist /m "mscor*" Jason Stangroome2008-09-30T10:33:33Z2008-09-30T10:33:33ZYeah, I was getting no results until I opened a PowerShell window.http://stackoverflow.com/questions/152250/get-class-property-name/152293#152293Comment by Jason Stangroome on Get class property nameJason Stangroome2008-09-30T09:36:47Z2008-09-30T09:36:47ZThe VB compiler builds the lambda expression with an extra level so the VB equivalent needs to get a UnaryExpression from the propertySelector.Body then get the MemberExpression from the unary.Operand.
http://stackoverflow.com/questions/119588/asp-mvc-preview-5-and-iis-6-windows-authenticationComment by Jason Stangroome on ASP MVC Preview 5 and IIS 6 Windows AuthenticationJason Stangroome2008-09-25T08:58:42Z2008-09-25T08:58:42ZFYI: Setting up the virtual lab was surprisingly quick. I used MS Virtual PC and installed Windows Server 2003 from scratch for both the DC and the IIS server, and reproduced the problem in just 2 hours.http://stackoverflow.com/questions/119588/asp-mvc-preview-5-and-iis-6-windows-authentication/131703#131703Comment by Jason Stangroome on ASP MVC Preview 5 and IIS 6 Windows AuthenticationJason Stangroome2008-09-25T08:57:05Z2008-09-25T08:57:05ZI played with the Default Domain and Realm settings early on with no luck.http://stackoverflow.com/questions/119588/asp-mvc-preview-5-and-iis-6-windows-authentication/120345#120345Comment by Jason Stangroome on ASP MVC Preview 5 and IIS 6 Windows AuthenticationJason Stangroome2008-09-24T01:53:06Z2008-09-24T01:53:06ZThis idea didn't work.http://stackoverflow.com/questions/119588/asp-mvc-preview-5-and-iis-6-windows-authentication/119813#119813Comment by Jason Stangroome on ASP MVC Preview 5 and IIS 6 Windows AuthenticationJason Stangroome2008-09-24T01:09:37Z2008-09-24T01:09:37ZI've now tried the workarounds in KB896861 with no success. I am seeing Kerberos related errors in the event log though so I'm investigating those.http://stackoverflow.com/questions/119588/asp-mvc-preview-5-and-iis-6-windows-authentication/119689#119689Comment by Jason Stangroome on ASP MVC Preview 5 and IIS 6 Windows AuthenticationJason Stangroome2008-09-23T09:49:47Z2008-09-23T09:49:47ZYeah, using DOMAIN\user and also tried FQDN\user and user@FQDN.