User stephbu - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T16:25:17Zhttp://stackoverflow.com/feeds/user/12702http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill/76450#764507Answer by stephbu for What is the single most effective thing you did to improve your programming skills?stephbu2008-09-16T20:15:45Z2009-11-21T16:14:57Z<p>Pair programming with other folk by far raised my quality, broadened my horizons, and helped me understand the practical issues of day to day development. Couple of big points:<br/></p>
<ul>
<li>it doesn't matter how elegant your
code is - if someone else can't
understand it you're already sunk.</li>
<li>be ready to divorce your code in a
heartbeat. The romance is in the
"doing" not the "outcome".</li>
</ul>
<p>In response to Thorbjørn's question about pros/cons of pair programming. I feel I've been lucky enough to sit next to devs with quite different backgrounds (languages, experiences etc.) </p>
<ul>
<li>Usually starting with a reasonable but often incomplete spec, we'd work through the problem and decompose it. While often there is complete consensus on approaching the problem - I learned most where our opinions deviated. (e.g. the sharing of negative experience of a particular approach)</li>
<li>Before coding we'd often spend much time at the whiteboard diagramming and walking how we thought the components would play out too. Having someone else validate your thoughts or poke holes in your supposedly watertight solution is quite humbling for the first time, but makes you better in the longterm.</li>
<li>Sometimes the hardest thing to do was compromise on the "right approach". Sometimes we'd step beyond pseudocode into class designer to role play what the code would look like. Often it became clear from doing this which approach was most natural. Much of it came down to a level of trust that we had in each other to do the right thing.</li>
<li>Worst aspect of pair programming was resisting the urge to grab the keyboard and just do it yourself because it was clear in your head how to do it. Giving space to let people's thoughts playout was sometimes where I learned the most.</li>
</ul>
<p>In general though sometimes frustrating, it is also sometimes <em>very rewarding</em>. I feel I get as much out of pair programming as I give.</p>
http://stackoverflow.com/questions/1588097/what-account-should-i-use-for-asp-net/1588134#15881342Answer by stephbu for What account should I use for ASP.NET?stephbu2009-10-19T11:18:29Z2009-10-19T11:18:29Z<p>You're gonna get lots of "it depends" answers but here's my 2 cents anyway.</p>
<p>Consider password change management, potential damage through compromise, as well as application needs e.g. trusted connectivity.</p>
<p>In most scenarios Network Service comes out best in these dimensions. </p>
<ol>
<li>it doesn't have a password, and never expires - no change management required </li>
<li>it cannot be used as interactive login on other machines</li>
<li>it can be used in trusted connections and ACL'd access to other hosts via the credential <code><domain>\<machinename>$</code></li>
</ol>
<p>Of course your app may have different needs - but typically we use Network Service wherever possible - we run 10,000's of machines.</p>
http://stackoverflow.com/questions/1069236/why-does-linq-send-spexecutesql-instead-of-directly-executing-the-sql/1069654#10696540Answer by stephbu for Why does LINQ send sp_executesql instead of directly executing the SQL?stephbu2009-07-01T15:05:29Z2009-07-01T15:05:29Z<p>This is a great question. This isn't really answer but an exploration of the reasoning already given by other answers. Feel free to update this "answer"</p>
<p>The obvious answer would have been "parameterized query cache". However parameters could just as easily been bound when the statement was executed directly <em>and</em> still get cached. </p>
<p>Syntax and details in this MSDN article...</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms175580%28SQL.90%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms175580(SQL.90).aspx</a></p>
<p>Performance claims I doubt without data since the cache appears to be the same for both direct and sp_execsql'd queries.</p>
<p>So if it's not those - what is it?</p>
http://stackoverflow.com/questions/986972/whats-the-advantage-of-using-com-over-a-plain-dll/986994#9869941Answer by stephbu for What's the advantage of using COM over a plain DLL?stephbu2009-06-12T14:40:38Z2009-06-12T14:40:38Z<ul>
<li>Registration and discovery</li>
<li>Out-of-process</li>
<li>Remote invocation </li>
</ul>
<p>are the few extra features that you would have got. Even transactional support can flow without the need for COM support these days.</p>
http://stackoverflow.com/questions/985377/which-tables-views-contain-the-list-of-objects-used-by-service-broker/985385#9853850Answer by stephbu for Which tables/views contain the list of objects used by Service Broker?stephbu2009-06-12T07:12:20Z2009-06-12T07:12:20Z<p>Nice article on the subject of service broker management views here...</p>
<p><a href="http://www.sqlteam.com/article/how-to-troubleshoot-service-broker-problems" rel="nofollow">Troubleshooting Service Broker Problems</a></p>
http://stackoverflow.com/questions/962346/who-wins-if-we-have-multiple-temporary-asynchronous-pluggable-protocol-for-same-s/962754#9627542Answer by stephbu for Who wins if we have multiple temporary Asynchronous pluggable protocol for same schema?stephbu2009-06-07T20:32:34Z2009-06-08T05:14:23Z<p>According to the docs when multiple handlers are registered for a namespace then last past the post wins, this also implies that temporary handlers trump those declared in the registry.</p>
<p>Excerpt from <a href="http://msdn.microsoft.com/en-us/library/aa767759.aspx" rel="nofollow">IInternetSession::RegisterNameSpace</a> on MSDN:</p>
<blockquote>
<p>Because pluggable protocol handlers are not chained, only the last handler to be registered will be active; therefore, it is better to create a new namespace, rather than reuse an existing one.</p>
</blockquote>
http://stackoverflow.com/questions/927490/how-can-i-share-message-classes-across-applications-when-using-nservicebus/934993#9349935Answer by stephbu for How can I share message classes across applications when using NServiceBus?stephbu2009-06-01T14:11:41Z2009-06-01T17:20:35Z<p>It may not be the answer you want but there are very few silver bullets here.</p>
<p>You've really only got a few choices, and as such then depends on the level of functionality and type-hardening you want in your message classes:</p>
<ol>
<li>Shared DLL's - benefit that it can be code + structure e.g. useful constructors, complex enumerators, debugging ToString implementations etc. Strong versioning. Requires separate project and distribution for DLL.</li>
<li>Shared Schema and Code Generation. Declare schema for your types and use code generation to create classes. Lots of different strategies here - some examples: <a href="http://msdn.microsoft.com/en-us/library/bb126445.aspx" rel="nofollow">T4 Templating</a>, <a href="http://msdn.microsoft.com/en-us/library/aa302301.aspx" rel="nofollow">Custom Code Generation</a>, Tools and libraries such as <a href="http://www.codesmithtools.com/" rel="nofollow">CodeSmith</a> or <a href="http://groups.google.com/group/protobuf/" rel="nofollow">Proto.Bufs</a>. Search will find you loads more. Can be pretty powerful - know many codeshops that start all projects through rapid prototyping with CodeGen from DB through to UI. You'd still need to distribute schema.</li>
<li>Serializing message with enough fidelity to generate types through Code DOM. Each message incurs the cost of carrying enough type metadata to be representative of all it's message instances. e.g. representations of nullable fields. There would also be an intrinsic 1st time "discovery" cost to generate the message wrapper types.</li>
<li>Serialize data in a weak structure such as name/value pairs, then generate dictionary-like wrapper classes. Weak typing - easy to extend tho'.</li>
</ol>
<p>Those really are the only choices. IMHO #2 then #1 in that order are typically the most useful patterns.</p>
http://stackoverflow.com/questions/861658/how-to-call-a-windows-service-from-asp-net/861689#8616892Answer by stephbu for How to call a windows service from asp.netstephbu2009-05-14T05:24:26Z2009-05-14T13:30:59Z<p>Some clarity would help - you could also interpret "call that service" as some sort of remote method call from ASP.NET to your service - e.g. to store some state in your Windows Service.</p>
<p>Host a service endpoint in the Windows Service e.g. using Remoting, WCF, or plain ol' TCP socket server. All of which could be called by clients hosted in ASP.NET.</p>
<p>There are plenty of remoting and WCF examples out there that do just that - search for hosting and one of those technologies.</p>
<p>Some MSDN linkage to read:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/kwdt6w2k%28VS.85%29.aspx" rel="nofollow">Remoting</a></p>
<p><a href="http://msdn.microsoft.com/en-us/library/bb332338.aspx" rel="nofollow">WCF</a></p>
<p>You should also read about <a href="http://msdn.microsoft.com/en-us/library/ms734677.aspx" rel="nofollow">Windows Process Activation</a> - you may be able to get away without writing a seperate service.</p>
http://stackoverflow.com/questions/517868/mature-and-robust-net-class-to-allow-disallow-xhtml-tags-attributes/843451#8434510Answer by stephbu for Mature and Robust .NET Class to allow/disallow XHTML tags/attributesstephbu2009-05-09T14:55:08Z2009-05-11T14:47:38Z<p>The <a href="http://code.msdn.microsoft.com/SgmlReader" rel="nofollow">SGMLReader</a> project is also very useful library for dealing with user generated markup. (all schemas not just XHTML) </p>
<p>e.g. use it as a 1st stage "cleaner" to parse a markup entered by someone in a textbox and convert it to valid XML. </p>
http://stackoverflow.com/questions/834676/iis7-2008-sql-service-connection-issues/834790#8347900Answer by stephbu for IIS7/2008 Sql/Service Connection Issuesstephbu2009-05-07T13:56:37Z2009-05-08T22:32:59Z<p>You're seeing the side-effect of Automatic Route Metric computation. When multiple addresses have route to an address and Automatic Metrics (in the Advanced... settings under TCP) is enabled, Windows will use try and predict the "fastest" path to that address.</p>
<p>I suspect both your interfaces (virtual or otherwise) have the similar route metrics so the choice is non-deterministic. You could encourage it from using your "back-edge" address for by setting a higher route-metric on your <em>.10/</em>.11 addresses. With automatic metrics disabled you could also prescribe an explicit static route using your 10.10.10.1 address.</p>
<p>More detail on TechNet - search on page for Automatic Metrics.</p>
<pre><code>http://technet.microsoft.com/en-us/library/bb727001.aspx
</code></pre>
<p>For better or worse. If both interfaces advertise a path with equal metrics - either interface can win. The behavior in the past was nondeterministic - it's changed.</p>
<p>The best approach is to use <code>route</code> at the command-line to either create a static persistent TCP route with lower or lowest cost between .1 and .2. Alternately increase the cost of every route on .14 & .15 addresses. I'd use the former since there is less to maintain and less side-effects on other communications.</p>
http://stackoverflow.com/questions/834605/reading-from-a-stream-not-knowing-how-much-to-expect-c/834627#8346276Answer by stephbu for Reading from a stream not knowing how much to expect [c#]stephbu2009-05-07T13:25:01Z2009-05-07T13:30:15Z<p>MemoryStream is your friend</p>
<pre><code>http://msdn.microsoft.com/en-us/library/system.io.memorystream
</code></pre>
<p>Construct with no default size and it will autoresize. Then just loop as you suggest reading a reasonable amount of data each time. I usually pick at minimum the MTU as the default buffer size.</p>
<p>To get the underlying byte[] array that it creates call </p>
<pre><code>memoryStreamInstance.GetBuffer()
</code></pre>
http://stackoverflow.com/questions/820063/vista-x64-gadget-development-oledb-problem-provider-cannot-be-found/820163#8201630Answer by stephbu for Vista x64, gadget development, OLEDB problem: "provider cannot be found"stephbu2009-05-04T13:45:18Z2009-05-04T13:53:39Z<p>There is no native Jet image registered/available for x64 - it is only available in 32bit processes on x64. The sidebar executable is being run as a native x64 image - hence it fails.</p>
<p>Your choices seem limited:</p>
<ol>
<li>Give up on Jet, e.g. switch to one of SQL Compact Edition, SQL Express or similar</li>
<li><p>Wrap your Jet calls in a surrogate 32bit COM object. Register the object as out-of-process in the 64bit registry. e.g.</p>
<p><a href="http://dnjonline.com/article.aspx?ID=jun07_access3264" rel="nofollow">http://dnjonline.com/article.aspx?ID=jun07_access3264</a></p></li>
<li><p>No x64 support</p></li>
</ol>
<p>Trying to force the sidebar to run in 32bit mode appears difficult/impossible let alone unreasonable.</p>
http://stackoverflow.com/questions/774136/retrieving-anchor-link-in-url-for-asp-net/774270#7742704Answer by stephbu for Retrieving Anchor Link In URL for ASP.Netstephbu2009-04-21T19:38:33Z2009-04-21T19:38:33Z<p>Being more explicit, the anchor tag is never sent as part of the HTTP request by any browser, it is only interpreted locally within the browser. Neither ASP.NET nor any other web-server technology, Microsoft or otherwise will see the anchor on that request.</p>
<blockquote>
<p><a href="http://www.isi.edu/in-notes/rfc1808.txt" rel="nofollow">RFC 1808</a><br />
Section 2.4.1 -
"Note that the fragment identifier is not considered part of the URL."</p>
</blockquote>
<p>As others have suggested the nearest you could get would be using client-side to read browser window location. </p>
http://stackoverflow.com/questions/117651/how-can-i-create-my-custom-shell-context-handlers-for-windows/117664#1176643Answer by stephbu for How can I create my custom Shell Context Handlers for Windows?stephbu2008-09-22T21:09:33Z2009-03-17T14:35:25Z<p>Resist writing Shell Extensions in managed languages - there are a multitude of things that could go bang if you pursue this route.</p>
<p>Have a browse through this thread for more details. It contains links to do it if really want, and sagely advice of why it can be done, but shouldn't.</p>
<p><a href="http://social.msdn.microsoft.com/Forums/en-US/netfxbcl/thread/1428326d-7950-42b4-ad94-8e962124043e/" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/netfxbcl/thread/1428326d-7950-42b4-ad94-8e962124043e/</a></p>
<p>You're back to unmanaged C/C++ as your only real tools here.</p>
http://stackoverflow.com/questions/220540/tibco-windows-process-activation2Tibco & Windows Process Activationstephbu2008-10-21T02:09:31Z2009-03-02T16:54:23Z
<p>I'm thinking about how I could scale out Tibco EMS queue listeners written in managed code (C# in this instance). I'm looking for predominantly isolation and clustering characteristics.</p>
<p>In MSMQ I could use Windows Process Activation Service to host and manage the number and lifetime of queue listeners. Is there a Tibco equivalent?</p>
<p>Otherwise I suspect I'll end up with a simple NT service to host EMS listeners. (which in turn could perform process-activation). Workable but fairly tricky to build a 24x7 monitorable, robust, production service.</p>
http://stackoverflow.com/questions/566350/what-allows-a-windows-authentication-username-to-work-flow-between-2-servers/566812#5668121Answer by stephbu for What allows a Windows authentication username to work (flow) between 2 servers?stephbu2009-02-19T19:35:00Z2009-02-19T19:35:00Z<p>The NTLM challenge between machines is a little more complex @Quassnoi indicates but it is similar. The machines may well be in the same domain or trusted domains, but the accounts you are using are local machine accounts, scoped only to the local machine's security access management. </p>
<p>Local SAM accounts patterned as machinename\userid are non-propagatable. You'd experience a series of negotiated fallbacks when you tried to authenticate against external resources using that account as follows:</p>
<ol>
<li>Pass current domain/username/password hash token - it'll fail, the account is untrusted</li>
<li>Fallback - revert passing hash of UserID + Password</li>
<li>Fallback - revert to connecting as anonymous credentials.</li>
</ol>
<p>The fallbacks can also be disabled through configuration, it is very common for anonymous authentication to be prevented.</p>
<p>As @Quassnoi indicates in this instance you managed to login using the #2 fallback.</p>
<p>To enable account credentials to propagate, you'd need the following to be true:</p>
<ol>
<li>machines would need to be members of domains with at least one-way trust between each other (they don't necessarily have to be members of the same domain). </li>
<li>use domain accounts - not local machine accounts - would look something like domainname\userid. A special case is the Network Service account which has a proxy account in the domain scenario - domainname\machinename$.</li>
</ol>
<p>How do you tell if your machine is a member of the domain? It's pretty easy if you've got interactive login to the machines. There are a few strategies</p>
<ol>
<li>interactively the System control panel will show workgroup or domain membership. (Right-click properties on Computer in the start menu) </li>
<li>at the command-line, <code>IPCONFIG /ALL</code> will also show the default DNS prefix which is typically the same as your domain name.</li>
</ol>
<p>I suspect your ISP would create a domain just to make it easy to manage and monitor their machines. Whether they'd let you create domain accounts is a different question.</p>
http://stackoverflow.com/questions/302110/what-causes-an-application-pool-in-iis-to-recycle/302147#3021473Answer by stephbu for What causes an application pool in IIS to recycle?stephbu2008-11-19T15:02:52Z2009-01-26T20:24:43Z<p>Two different effects - the AppPool process is the host for potentially multiple appdomains. Typically this can be recycled by a number of effects e.g. time - every 'n' hours, lack of requests, memory use etc. Configured in IIS Config Manager.</p>
<p>AppDomain - the hosted instance of your application root, can be cycled more frequently without affecting other AppDomains in the AppPool. Tess' post on AppDomain recycling is pretty insightful</p>
<blockquote>
<p><a href="http://blogs.msdn.com/tess/archive/2006/08/02/asp-net-case-study-lost-session-variables-and-appdomain-recycles.aspx" rel="nofollow">http://blogs.msdn.com/tess/archive/2006/08/02/asp-net-case-study-lost-session-variables-and-appdomain-recycles.aspx</a></p>
</blockquote>
<p>You are writing to a folder monitored for recompilation - this will trigger the appdomain recreation at some point.</p>
<p>Event log will help you determine cause initiated the recycled.</p>
http://stackoverflow.com/questions/283214/sql-table-and-column-parser-for-stored-procedures/283247#2832471Answer by stephbu for SQL Table and column Parser for stored proceduresstephbu2008-11-12T07:29:02Z2009-01-20T15:16:11Z<ul>
<li><b>UPDATE - 20 Jan 2009</b> *</li>
<li>Visual Studio DB Professional Edition shipped with a full T-SQL script DOM parser</li>
<li><a href="http://blogs.msdn.com/gertd/archive/2008/08/21/getting-to-the-crown-jewels.aspx" rel="nofollow">http://blogs.msdn.com/gertd/archive/2008/08/21/getting-to-the-crown-jewels.aspx</a> </li>
</ul>
<p>Not a concrete solution - but a line of thought.</p>
<p>Considered sysdepends as a potential solution - but it is notoriously unreliable at containing <em>all</em> the dependent object information.</p>
<p>but how about something Lex/Yacc derived? There are a few commercial parsers e.g.</p>
<blockquote>
<p><a href="http://www.sqlparser.com/download.php" rel="nofollow">http://www.sqlparser.com/download.php</a></p>
</blockquote>
<p>Not looked for open-source implementation but I think I would look for that route. Here's how I started my search:</p>
<blockquote>
<p><a href="http://www.google.com/search?hl=en&q=sql+lex+yacc+parse" rel="nofollow">http://www.google.com/search?hl=en&q=sql+lex+yacc+parse</a></p>
</blockquote>
<p>BNF syntax for ANSI SQL can be found here:</p>
<blockquote>
<p><a href="http://savage.net.au/SQL/" rel="nofollow">http://savage.net.au/SQL/</a></p>
</blockquote>
<p>With a lex implementation of choice, this seems a relatively straight forward engineering problem from here. (albeit with some heavylifting if you want to support MS SQL extensions) </p>
http://stackoverflow.com/questions/262426/vb-net-listing-drives-and-vmware/441646#4416461Answer by stephbu for VB NET Listing drives and VMWARE stephbu2009-01-14T01:58:21Z2009-01-14T01:58:21Z<p>Where's the cost in this code? Profiling would really help on a <em>bad</em> machine</p>
<p>I'd imagine the cost is somewhere in those DriveInfo calls - looking in reflector at the code behind DriveInfo:</p>
<p>.cctor seems pretty innocuous - just validates letter constraints.</p>
<p>.GetDriveType calls straight down into the equivalent Win32 API. Suspect this will try access the directory root since one of it's potential return results is DRIVE_NO_ROOT_DIR.</p>
<blockquote>
<blockquote>
<p><a href="http://msdn.microsoft.com/en-us/library/aa364939.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa364939.aspx</a></p>
</blockquote>
</blockquote>
<p>.IsReady - that appears to attempt "open" the drive root directory populate the FILE_ATTRIBUTE structure. Again that looks similar to GetDriveType - possibly expensive.</p>
<p>Both the latter API's have the potential to try and touch the drive filesystem. From there on down you're dependent on the behaviour of the device and it's drivers for the volume as to what "unmounted", "ready, "not ready" etc. means. e.g. trying to spin up a disk.</p>
<p>Since the delays are in the order of seconds I equally suspect that enumeration of the slow floppy/dvd/cd volumes is what takes the most time compared to other media types. Floppies especially used to have very long timeouts.</p>
http://stackoverflow.com/questions/372925/sql-server-bcp-insert-additional-columns/373558#3735580Answer by stephbu for SQL Server BCP insert additional columnsstephbu2008-12-17T03:18:18Z2008-12-17T03:18:18Z<p>SQL Server Integration Services and transforms would be my approach of choice. Its a pretty simple package to build the transformations required - and SSIS is pretty damn fast, easy to schedule etc.</p>
http://stackoverflow.com/questions/351265/httpwebrequest-wont-serialize/351330#3513300Answer by stephbu for HttpWebRequest Won't Serializestephbu2008-12-08T23:32:31Z2008-12-08T23:32:31Z<p>System.Net.HttpWebRequest serialization was marked as obselete in .NET 2.0.</p>
<p>Official documents here:</p>
<blockquote>
<p><a href="http://msdn.microsoft.com/en-us/library/aa497288.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa497288.aspx</a></p>
</blockquote>
<p>From an app perspective this is the best outcome. The predominant bulk of an HttpWebRequest instance is IO state that is typically not directly rehydratable. </p>
<p>As @Andrew-Rollings suggests instead implement a custom serialize to store/restore your request parameters, then recreate the HttpWebRequest instance from scratch.</p>
http://stackoverflow.com/questions/338156/table-naming-dilemma-singular-vs-plural-names/338421#3384217Answer by stephbu for Table Naming Dilemma: Singular vs. Plural Namesstephbu2008-12-03T19:24:11Z2008-12-03T19:24:11Z<p>We run similar standards, when scripting we demand [ ] around names, and where appropriate schema qualifiers - primarily it hedges your bets against future name grabs by the SQL syntax. </p>
<pre><code>SELECT [Name] FROM [dbo].[Customer] WHERE [Location] = 'WA'
</code></pre>
<p>This has saved our souls in the past - some of our database systems have run 10+ years from SQL 6.0 through SQL 2005 - way past their intended lifespans.</p>
http://stackoverflow.com/questions/335558/how-can-i-determine-if-sql-server-management-studio-express-2005-is-installed/336428#3364281Answer by stephbu for How can I determine if SQL Server Management Studio Express (2005) is installed?stephbu2008-12-03T07:40:10Z2008-12-03T07:51:26Z<p>Most reliable way to detect it would be to use the MSI database to detect the state of SQL Server Management Studio.</p>
<p>There is a COM object you can use to query the MSI database:</p>
<blockquote>
<p><a href="http://msdn.microsoft.com/en-us/library/aa369432.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa369432.aspx</a></p>
</blockquote>
<p>the Installer.Products property can tell you what products/packages are installed. Installer.ProductState can tell you the state of the product/package.</p>
<p>Most installer systems can also do the same checks - either use the API, Orca or similar MSI tool to find the product SQL Mgmt Studio Package/Product ID.</p>
http://stackoverflow.com/questions/330115/retrieving-product-information-from-an-unmanaged-executing-application-in-c-net/330355#3303550Answer by stephbu for Retrieving product information from an unmanaged executing application in C#/.NETstephbu2008-12-01T09:20:42Z2008-12-01T10:37:58Z<p>Let's assume you're after an EXE/DLL's PE header data that @divo's calls return e.g. Company, Product etc... These btw. are derived from calling Win32 Version Info API's - details up on MSDN:</p>
<blockquote>
<p><a href="http://msdn.microsoft.com/en-us/library/ms646981.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms646981.aspx</a></p>
</blockquote>
<p>The next challenge you face is enumerating the callstack to discover your caller's module context. I've not tried - but if you examine your own callstack, I doubt you'll see the unmanaged caller's frames marshalled into there. Suspect it stops at transitional frame injected before switching into the CCW. Also since it's COM, conceivably the caller could call from out of process - your caller would be a proxy process.</p>
<p>If that fails - you'd need the debugging API's to unwind the external stack - that introduces other constraints:</p>
<ul>
<li>elevated security permissions required to traverse the stack</li>
<li>potential performance impact unwinding the stack.</li>
</ul>
<p>On a call-by-call basis either of these could make the debugger approach impractical.</p>
<p><strong>Update</strong></p>
<p>Some research indicates there are plenty of bugs and gotchas for reading the stack above the CCW transitional frame even in the debugger. e.g. </p>
<blockquote>
<p><a href="http://support.microsoft.com/kb/317221" rel="nofollow">http://support.microsoft.com/kb/317221</a></p>
</blockquote>
<p>Mixed Unmanaged/Managed symbol resolution is pretty ugly - some thoughts here on how to do it... DaveBr's blog on debugging is pretty awesome too.</p>
<blockquote>
<p><a href="http://bytes.com/groups/net-vc/280340-stackwalk-callstack-symbol-resolve-managed-unmanaged-code-dbghelp-etc" rel="nofollow">http://bytes.com/groups/net-vc/280340-stackwalk-callstack-symbol-resolve-managed-unmanaged-code-dbghelp-etc</a></p>
<p><a href="http://blogs.msdn.com/davbr/archive/2005/10/06/478006.aspx" rel="nofollow">http://blogs.msdn.com/davbr/archive/2005/10/06/478006.aspx</a></p>
</blockquote>
<p>There is plenty of fodder on the steps taken marshalling calls between unmanaged/managed clients - e.g. </p>
<blockquote>
<p><a href="http://msdn.microsoft.com/en-us/library/ms973872.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms973872.aspx</a></p>
</blockquote>
http://stackoverflow.com/questions/327658/slow-msaccess-disk-writing/327783#3277830Answer by stephbu for Slow MSAccess disk writingstephbu2008-11-29T18:06:18Z2008-11-29T18:25:25Z<p>Mike, the virus scanner disabled improved things - but something still sounds out of whack... Agree with @Remou that a bulk insert would be much better performing if you could do it. </p>
<p>Assuming you can't bulk insert, just did a sample app (C#, sorry - but the VB.NET will be similar) to create a catalog, table and perform some inserts. I skipped the PK constraint on ID for now. </p>
<p>This was giving me around 1,000 rows in 550ms running in a VM with virus scanner on a laptop drive running with powersaving. You should be able to beat this easily with that fast drive. Where's the differences?</p>
<p>One thought is how are you inserting ID? Autogenerated and omitted from INSERT statement? Or you inserted a value and the column is marked PK? The latter would most certainly trigger an index seek (your sizable read IO???) to verify the uniqueness of the data against the table?</p>
<pre><code>using System;
using System.Data;
using System.Data.OleDb;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
String jetConnection = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=C:\\jetsample.mdb;";
ADOX.CatalogClass cat = new ADOX.CatalogClass();
cat.Create(jetConnection);
using(OleDbConnection conn = new OleDbConnection(jetConnection))
{
conn.Open();
using(OleDbCommand cmd = new OleDbCommand("CREATE TABLE test ([ID] INTEGER, [TestDouble] DOUBLE, [TestText] TEXT, [TestDate] DATE, [TestInt] INTEGER)",conn))
{
cmd.CommandType = CommandType.Text;
cmd.ExecuteNonQuery();
}
using (OleDbCommand cmd = new OleDbCommand("INSERT INTO [Test] VALUES (@id, @testDouble, @testText, @testDate, @testInt)", conn))
{
OleDbParameter id = cmd.Parameters.Add("@id", OleDbType.Integer);
OleDbParameter testDouble = cmd.Parameters.Add("@testDouble", OleDbType.Double);
OleDbParameter testText = cmd.Parameters.Add("@testText", OleDbType.VarWChar);
OleDbParameter testDate = cmd.Parameters.Add("@testDate", OleDbType.Date);
OleDbParameter testInt = cmd.Parameters.Add("@testInt", OleDbType.Integer);
DateTime start = DateTime.Now;
for (int index = 1; index <= 2000000; index++)
{
if (index % 1000 == 0)
{
System.Diagnostics.Debug.WriteLine(((TimeSpan)(DateTime.Now - start)).Milliseconds);
start = DateTime.Now;
}
id.Value = index;
testDouble.Value = index;
testText.Value = String.Format("{0} DBL", index);
testDate.Value = DateTime.Now.AddMilliseconds(index);
testInt.Value = index;
cmd.ExecuteNonQuery();
}
}
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/327253/code-typography/327255#3272550Answer by stephbu for code typographystephbu2008-11-29T06:22:41Z2008-11-29T06:22:41Z<p>Consolas - one of the new Truetype fonts introduced with Vista/Win2k8 has a much higher quality font hinting than Courier.</p>
<p>Generally 12-13pt for laptop/desktop respectively.</p>
http://stackoverflow.com/questions/314415/why-use-a-globalclass-what-are-they-for/314526#3145260Answer by stephbu for Why use a GlobalClass? What are they for? stephbu2008-11-24T15:45:16Z2008-11-24T15:45:16Z<p>@Jayne, @Josh, it's hard to tell - but the code in the question could also be a static accessor to a static field - somewhat different than @Josh's static helper example (where you use instance or context variables within your helper). </p>
<p>Static Helper methods are a good way to conveniently abstract stateless chunks of functionality. However in the example there is potential for the global variable to be stateful - Demeter's Law guides us that you should only play with state that you own or are given e.g. by parameters.</p>
<blockquote>
<p><a href="http://www.c2.com/cgi/wiki?LawOfDemeter" rel="nofollow">http://www.c2.com/cgi/wiki?LawOfDemeter</a></p>
</blockquote>
<p>Given the rules there occasional times when it is necessary to break them. You should trade the risk of using global state (primarily the risk of creating state/concurrency bugs) vs. the necessity to use globals.</p>
http://stackoverflow.com/questions/295538/how-to-provide-user-name-and-password-when-connecting-to-a-network-share/295691#2956911Answer by stephbu for How to provide user name and password when connecting to a network sharestephbu2008-11-17T14:35:27Z2008-11-17T14:35:27Z<p>If you can't create an locally valid security token, it seems like you've ruled all out every option bar Win32 API and WNetAddConnection*.</p>
<p>Tons of information on MSDN about WNet - PInvoke information and sample code that connects to a UNC path here:</p>
<blockquote>
<p><a href="http://www.pinvoke.net/default.aspx/mpr/WNetAddConnection2.html#" rel="nofollow">http://www.pinvoke.net/default.aspx/mpr/WNetAddConnection2.html#</a></p>
</blockquote>
<p>MSDN Reference here:</p>
<blockquote>
<p><a href="http://msdn.microsoft.com/en-us/library/aa385391" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa385391</a>(VS.85).aspx</p>
</blockquote>
http://stackoverflow.com/questions/287100/setting-up-ssl-in-active-directory-how-to/291835#2918351Answer by stephbu for Setting up SSL in Active Directory how-tostephbu2008-11-15T00:09:41Z2008-11-15T00:09:41Z<p>Sounds easy - but I ran into quite a few problems getting trusted connections with SSL working in our environment. The article was about ADAM but is just as applicable for AD.</p>
<p>I blogged about how I got this working a while back</p>
<blockquote>
<p><a href="http://stephbu.spaces.live.com/blog/cns!DF06426B82CDE7DF!559.entry" rel="nofollow">http://stephbu.spaces.live.com/blog/cns!DF06426B82CDE7DF!559.entry</a></p>
</blockquote>
<p>Dan and Erlend's postings were invaluable.</p>
<p>Took some backflips to get it done.</p>
http://stackoverflow.com/questions/290548/c-validate-a-username-and-password-against-active-directory/290558#2905587Answer by stephbu for C# Validate a username and password against Active Directory?stephbu2008-11-14T16:01:53Z2008-11-14T16:11:31Z<p>Probably easiest way is to PInvoke LogonUser Win32 API.e.g.</p>
<blockquote>
<p><a href="http://www.pinvoke.net/default.aspx/advapi32/LogonUser.html" rel="nofollow">http://www.pinvoke.net/default.aspx/advapi32/LogonUser.html</a></p>
</blockquote>
<p>MSDN Reference here...</p>
<blockquote>
<p><a href="http://msdn.microsoft.com/en-us/library/aa378184.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa378184.aspx</a></p>
</blockquote>
<p>Definitely want to use logon type</p>
<pre><code>LOGON32_LOGON_NETWORK (3)
</code></pre>
<p>This creates a lightweight token only - perfect for AuthN checks. (other types can be used to build interactive sessions etc.)</p>
http://stackoverflow.com/questions/1853227/is-there-an-added-cost-of-splitting-code-out-to-a-separate-library-from-your-main/1853240#1853240Comment by stephbu on Is there an added cost of splitting code out to a separate library from your main application?stephbu2009-12-05T20:09:28Z2009-12-05T20:09:28Z@BobTheBuilder I'm with @6letter and @dtb - start with maintainability, even at 40,000 requests/second (I own the MSN homepage - entirely C# page handler) loading assemblies on binding is the least of your worries.http://stackoverflow.com/questions/1848939/excel-com-interop-asp-net-cannot-write-file-to-disk-permissions/1849027#1849027Comment by stephbu on Excel Com Interop ASP.Net Cannot write file to disk. Permissions?stephbu2009-12-04T19:15:56Z2009-12-04T19:15:56ZYeah Excel runs out of process from it caller - Component Services (prev. known as Dcomcnfg) is the only way to set the account. Excel will start a seperate WinStation for that account if necessary - all environment and paths will be derived from that account too.
http://stackoverflow.com/questions/1720003/issue-with-url-routingsystem-web-routing-3-5-in-godaddy-non-mvc-appComment by stephbu on Issue with Url Routing(System.Web.Routing) 3.5 in Godaddy...(non-MVC App)stephbu2009-11-12T05:09:03Z2009-11-12T05:09:03ZA little bit more detail than "it doesn't work" would help.http://stackoverflow.com/questions/1581298/why-is-my-ms-access-database-always-brokenComment by stephbu on Why is my MS Access database always broken?stephbu2009-10-19T14:45:16Z2009-10-19T14:45:16ZAgree with many of the the thoughts here. A question in my head is how do you terminate the service, and does it terminate gracefully? For example if you use service control to stop the service and it fails to stop in the allotted time, service control manager kills the process.http://stackoverflow.com/questions/1588126/retrieve-calling-application-name-in-wcf/1588227#1588227Comment by stephbu on Retrieve calling application name in wcfstephbu2009-10-19T12:00:17Z2009-10-19T12:00:17ZAgree with @Marc, the nearest you're going to get is either a) arbitrary user supplied string like AppName b) mandatory credential e.g. an AppID, Cert, Token or other evidence to identify the caller - doesn't necessarily have to be a cert, I'd suggest that should ensure that you validate that you issued or trusted the evidence originally. e.g. a lookup into a db of issued tokens, or validating a cert root.http://stackoverflow.com/questions/1588097/what-account-should-i-use-for-asp-net/1588123#1588123Comment by stephbu on What account should I use for ASP.NET?stephbu2009-10-19T11:51:34Z2009-10-19T11:51:34Z@Daniel superuser.com? :) Agreed - this article was the canonical resource - shame P&P guys have never come back and refreshed it. Considering how far the industry has moved in the last 3-4 years, emphasis on customer legal risks through compromise, horsepower to enable virtualization and simplified one server - one role deployments, while consolidating resource utilization in the datacenter. Rightfully, config requirements like Custom Accounts are big red flags in design, security, and operational reviews in our company.http://stackoverflow.com/questions/1588097/what-account-should-i-use-for-asp-net/1588129#1588129Comment by stephbu on What account should I use for ASP.NET?stephbu2009-10-19T11:38:16Z2009-10-19T11:38:16ZTotally agree @tvanfosson, we usually only run one role per server to keep security simple. Makes it easy to troubleshoot, and typically at worst just reimage if things go amuck.http://stackoverflow.com/questions/1588097/what-account-should-i-use-for-asp-net/1588123#1588123Comment by stephbu on What account should I use for ASP.NET?stephbu2009-10-19T11:22:45Z2009-10-19T11:22:45ZI think this resource is pretty dated now and doesn't reflect industry practices such as frequent enforced password changes very well - Custom User accounts are a huge risk to application availability in such environments.http://stackoverflow.com/questions/1501295/running-asp-classic-and-net-on-linux/1502226#1502226Comment by stephbu on Running ASP Classic and .NET on Linuxstephbu2009-10-01T06:43:47Z2009-10-01T06:43:47ZJust for the record ASP "classic" shipped with Win2k8 r2 - implying at least 10 years of support from here.
Main variance is invariably COM objects such as XML and ADO, external to ASP rather than the scripting engines themselves. While many features were added over the engine's lives, they removed/altered very few features.http://stackoverflow.com/questions/774136/retrieving-anchor-link-in-url-for-asp-net/774270#774270Comment by stephbu on Retrieving Anchor Link In URL for ASP.Netstephbu2009-08-15T03:04:52Z2009-08-15T03:04:52ZMiky just because someone wrote a piece of code to parse anchors out of URLs - still doesn't mean it is sent by any browser over the wire.
Try it - use your favourite network monitor of choice to watch the wire. You won't see any anchor in the HTTP request.http://stackoverflow.com/questions/1069236/why-does-linq-send-spexecutesql-instead-of-directly-executing-the-sql/1069298#1069298Comment by stephbu on Why does LINQ send sp_executesql instead of directly executing the SQL?stephbu2009-07-01T14:30:01Z2009-07-01T14:30:01ZThis isn't a reason to use sp_executesql tho'. Parameterization is available on the SqlExecDirect calls through OLE/DB and ODBC too.http://stackoverflow.com/questions/1069236/why-does-linq-send-spexecutesql-instead-of-directly-executing-the-sqlComment by stephbu on Why does LINQ send sp_executesql instead of directly executing the SQL?stephbu2009-07-01T14:28:19Z2009-07-01T14:28:19ZOP you should clarify what you mean a little - I take it you're watching through SQL Profiler and see calls flowing by. I interpret your question as "why does L2S use sp_executesql rather than send the contained statements directly".http://stackoverflow.com/questions/1069236/why-does-linq-send-spexecutesql-instead-of-directly-executing-the-sql/1069276#1069276Comment by stephbu on Why does LINQ send sp_executesql instead of directly executing the SQL?stephbu2009-07-01T14:25:39Z2009-07-01T14:25:39ZYeah I guess I should qualify mine a bit better too :) SQLExecDirect through OLEDB/ODBC is just as a parameterizable. Unless there was more than a single statement being sent - it doesn't seem to make sense.http://stackoverflow.com/questions/1069236/why-does-linq-send-spexecutesql-instead-of-directly-executing-the-sql/1069276#1069276Comment by stephbu on Why does LINQ send sp_executesql instead of directly executing the SQL?stephbu2009-07-01T14:22:30Z2009-07-01T14:22:30ZThe article is talking about the EXECUTE tsql statement. The OP is wondering why sp_executesql is being sent rather than sending the "inner" statement directly (parameters and all).http://stackoverflow.com/questions/1069236/why-does-linq-send-spexecutesql-instead-of-directly-executing-the-sql/1069276#1069276Comment by stephbu on Why does LINQ send sp_executesql instead of directly executing the SQL?stephbu2009-07-01T14:20:01Z2009-07-01T14:20:01Z<a href="http://msdn.microsoft.com/en-us/library/ms175580.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a> as additional information about Execute supporting the same parameterized statement caching strategies.