User Brian Adams - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T16:25:58Z http://stackoverflow.com/feeds/user/32992 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/252655/can-ado-net-data-services-use-named-pipes-as-a-transport 1 Can ADO.NET Data Services use named pipes as a transport Brian Adams 2008-10-31T05:12:54Z 2009-11-20T03:00:03Z <p>I am well aware that the Rest based approach is targeting HTTP. I would love to use the REST APIs and other goodness between processes on the same computer. Since ADO.NET data services is built on top of WCF it would seem reasonable to assume that the transport in configurable to work with any of the WCF supported transports. Anyone know if there is a way to configure it to send traffic via namedpipes?</p> http://stackoverflow.com/questions/271292/anyone-found-a-powershell-syntax-or-intellisence-plugin-for-visual-studio 1 Anyone found a PowerShell Syntax or Intellisence plugin for Visual Studio Brian Adams 2008-11-07T05:15:44Z 2009-07-24T16:41:50Z <p>Has anyone found a plugin for Visual Studio to allow for PowerShell syntax highlighting or intellisense? If not, does anyone have any idea why not? I keep hoping someone else with copious free time would have tackled this by now. I have hope since other folks have managed to take the limited documentation and build custom intellisense providers for other languages such as <a href="http://sentia.com.au/2008/05/i-love-haml-but-i.html" rel="nofollow">NHaml</a>.</p> <p>Edit: To clarifiy,I'm not looking for a list of IDEs that can be used to develop powershell. I spend 90% of my day in Visual Studio. It already does a really good job of slicing and dicing code. That is the IDE I prefer to use to edit all text and code. The lack of powershell syntax highlighting now that I work with powershell scripts is down right painful.</p> http://stackoverflow.com/questions/584819/how-can-i-access-certificate-extendedproperties-using-powershell 0 How can I access Certificate ExtendedProperties using powershell? Brian Adams 2009-02-25T05:34:55Z 2009-02-25T16:38:40Z <p>If you open the properties window of a certificate in the certificate manager in windows you will see both a friendlyname and description field. I'm trying to get to the description field programatically via powershell.</p> <p>When accessing the certificates via powershell's certificate provider cert: you get an object that only exposes the FriendlyName as Name.</p> <p>As far as I can tell, this is all a wrapper to the CAPICOM APIs. Neither the description or the get_extendedproperties method are exposed.</p> <p>How can I access the description field problematically via powershell? Please note that I tried to simply do</p> <pre><code>$store = new-object -com "CAPICOM.Store" </code></pre> <p>to use the CAPICOM api directly ala <a href="http://www.derkeiler.com/Newsgroups/microsoft.public.platformsdk.security/2006-04/msg00081.html" rel="nofollow">This Link</a>, but I get a 80040154 error on my 64bit Win2K8 box.</p> http://stackoverflow.com/questions/275707/how-do-i-reference-files-with-brackets-in-the-name/275719#275719 4 Answer by Brian Adams for How do I reference files with brackets in the name Brian Adams 2008-11-09T07:53:58Z 2009-02-05T17:55:18Z <p>Turns out the key was <code>-literalpath</code>. For details see <a href="http://www.microsoft.com/technet/scriptcenter/resources/pstips/jun08/pstip0620.mspx" rel="nofollow">this technet article</a></p> http://stackoverflow.com/questions/275707/how-do-i-reference-files-with-brackets-in-the-name 3 How do I reference files with brackets in the name Brian Adams 2008-11-09T07:24:56Z 2009-02-05T17:55:18Z <p>Create a file called Valid[File].txt and stick some text in it. Start powershell and go to the directory.<br /> <PRE> gc Valid[File].txt </PRE> should display the value in the file. It returns blank. If you use tab auto-completion it escapes the name: <PRE> gc 'Valid<code>[File</code>].txt' </PRE> but still returns nothing.</p> <p>How do I reference files with brackets in their names?</p> http://stackoverflow.com/questions/109343/batching-in-rest/438035#438035 1 Answer by Brian Adams for Batching in REST Brian Adams 2009-01-13T05:11:29Z 2009-01-13T05:11:29Z <p>The team with Astoria made good use of multi-part mime to send a batch of calls. Different from pipelining as the multi-part message can infer the intent of an atomic operation. Seems rather elegant.</p> <ul> <li><a href="http://blogs.msdn.com/astoriateam/archive/2008/04/06/batching-data-service-requests.aspx" rel="nofollow">Original blog post explaining rational</a> </li> <li><a href="http://msdn.microsoft.com/en-us/library/cc668802.aspx" rel="nofollow">MSDN Documentation</a></li> </ul> http://stackoverflow.com/questions/298011/can-the-dmv-views-get-reset-without-kicking-eveyone-out-of-the-db 0 Can the DMV views get reset without kicking eveyone out of the db? Brian Adams 2008-11-18T06:40:16Z 2009-01-13T04:59:52Z <p>I have seen posts that show three ways to reset the DMV views:</p> <ol> <li>Reset the SQL Service</li> <li>Detatch the database</li> <li>Close the database</li> </ol> <p>All of these methods seem to require taking the system off-line for a few moments. Is there a way to reset the statistics on demand without interrupting use of the database? When we have odd performance issues come up in production it is useful to limit the data in the dmv views to data collected during the duration of the performance issue to help describe the state of the system during the performance issue.</p> http://stackoverflow.com/questions/298011/can-the-dmv-views-get-reset-without-kicking-eveyone-out-of-the-db/438017#438017 0 Answer by Brian Adams for Can the DMV views get reset without kicking eveyone out of the db? Brian Adams 2009-01-13T04:59:52Z 2009-01-13T04:59:52Z <p>We ended up snap shotting the DMV views to pull delta's in the data. We are looking in to the SQL Server Performance Data warehouse which we assume does the same thing.</p> http://stackoverflow.com/questions/322446/how-do-you-inspect-for-and-test-for-known-ie-browser-features 2 How do you inspect for and test for known IE browser "features"? Brian Adams 2008-11-26T22:53:06Z 2008-11-28T13:53:10Z <p>My company makes its money off of a great user experience using IE6, 7, Firefox and Safari. 90% of our traffic ends up IE and probably 60% of that traffic is still IE6. IE6 has a bunch of known gotcha's such as accessing DOM objects while they are still being inserted crashing the browser. Almost none of these issues surface during routine testing, they almost always include some odd timing race condition that only affects our most important client of the week. </p> <p>What process or tools do you use to ensure that known patterns that crash IE are not present in your code? </p> <p>Added: For those suggesting sticking to 3rd party libraries: I agree that it will help a lot, but you still have to glue those APIs together with Javascript. Is there anyone that is not just crossing their fingers and waiting for someone out in the wild to let them know that there code has just crashed their system?</p> http://stackoverflow.com/questions/256548/is-there-a-way-to-log-or-intercept-first-chance-exceptions 0 Is there a way to log or intercept First Chance Exceptions Brian Adams 2008-11-02T05:15:57Z 2008-11-15T23:34:09Z <p>Short of using a profiler, is there any way inside a running program to detect first chance exceptions? Ideally, I would like to record more detailed state information that is not available once the catch block has taken over the final exception.</p> http://stackoverflow.com/questions/279524/hashtable-ondeserialization/287887#287887 0 Answer by Brian Adams for Hashtable.OnDeserialization Brian Adams 2008-11-13T19:02:51Z 2008-11-13T19:02:51Z <p>I suspect you have already googled, but I happened to across <a href="http://clevercoder.wordpress.com/2006/11/30/hashtable-serialization-and-the-ideserializationcallback-interface/" rel="nofollow">this</a> pattern yesterday. </p> <pre><code>public BoringClass(SerializationInfo info, StreamingContext context) { Hashtable hashtable = (Hashtable) info.GetValue("hash", typeof(Hashtable)); hashtable.OnDeserialization(this); Console.WriteLine("Value is: " + hashtable["testItem"]); } </code></pre> http://stackoverflow.com/questions/286081/service-unavailable-in-iis/286086#286086 0 Answer by Brian Adams for Service Unavailable in IIS Brian Adams 2008-11-13T02:27:25Z 2008-11-13T02:27:25Z <p>One reason you can get this is if the application pool has stopped.</p> http://stackoverflow.com/questions/271198/will-this-wcf-client-side-code-cause-a-memory-leak/271259#271259 0 Answer by Brian Adams for Will this WCF client side code cause a memory leak? Brian Adams 2008-11-07T04:39:09Z 2008-11-07T04:39:09Z <p>Don't forget that the proxy's don't correctly implement IDisposable. If an error occurs the code above will not clean up the connection and the handle will remain until the parent process is closed.</p> http://stackoverflow.com/questions/260503/how-do-you-update-an-asp-net-web-application/260659#260659 0 Answer by Brian Adams for How do you update an ASP.NET web application? Brian Adams 2008-11-04T02:43:07Z 2008-11-04T02:43:07Z <p>If it is a single file and a simple site that uses that app_code folder to store the code behinds, I simply xcopy up the new files. If I use http expiration headers I may need to do some better scheduling to make sure things like javascript files and css sheets match the rest of the site that was updated.</p> http://stackoverflow.com/questions/246685/postsharp-aspect-for-property-setters-calling-generic-method/260306#260306 1 Answer by Brian Adams for PostSharp aspect for property setters, calling generic method Brian Adams 2008-11-03T23:17:35Z 2008-11-03T23:17:35Z <p>It should be very simple. You override the OnEntry and set the return value based on your own code. At the end you use: eventArgs.ReturnValue = GetValue(x,y); eventArgs.FlowBehavior = FlowBehavior.Return; which will effectively intercept the original Get/Set calls.</p> <p>Refer to <a href="http://www.vbandrade.com.br/?tag=cache-aop-postsharp" rel="nofollow">this blog</a> which shows the cache aspect using the same pattern...</p> http://stackoverflow.com/questions/20663/do-you-use-aop-aspect-oriented-programming-in-production-software/257502#257502 0 Answer by Brian Adams for Do you use AOP (Aspect Oriented Programming) in production software? Brian Adams 2008-11-02T22:35:36Z 2008-11-02T22:35:36Z <p>We use PostSharp for our AOP solution. We have caching, error handling, and database retry aspects that we currently use and are in the process of making our security checks an Aspect.</p> <p>Works great for us. Developers really do like the separation of concerns. The Architects really like having the platform level logic consolidated in one location.</p> <p>The PostSharp library is a post compiler that does the injection of the code. It has a library of pre-defined intercepts that are brain dead easy to implement. It feels like wiring in event handlers. </p> http://stackoverflow.com/questions/257274/how-should-i-handle-session-timeouts-when-using-ajax-web-controls-on-an-aspx-page/257295#257295 1 Answer by Brian Adams for How should I handle Session timeouts when using AJAX Web controls on an Aspx page? Brian Adams 2008-11-02T20:15:44Z 2008-11-02T20:15:44Z <p>On the server side you can detect that the session is expired and return a strong typed exception. On the browser side, you can specifically detect for that error and simply have the page refresh. This assumes that when your page posts back for the refresh that your application detects expired sessions and has them login again.</p> http://stackoverflow.com/questions/257045/managing-the-migration-of-breaking-database-changes-to-a-database-shared-by-old-v 0 Managing the migration of breaking database changes to a database shared by old version of the same application Brian Adams 2008-11-02T16:49:29Z 2008-11-02T17:20:14Z <p>One of my goals is to be able to deploy a new version of a web application that runs side by side the old version. The catch is that everything shares a database. A database that in the new version tends to include significant refactoring to database tables. I would like to be rollout the new version of the application to users over time and to be able to switch them back to the old version if I need to. </p> <p>Oren had a good <a href="http://ayende.com/Blog/archive/2007/11/24/A-vision-of-enterprise-platform-Hot-amp-Distributed-Deployment.aspx" rel="nofollow" title="A vision of enterprise platform: Hot &amp; Distributed Deployment">post</a> setting up the issue, but it ended with:</p> <p>"We are still in somewhat muddy water with regards to deploying to production with regards to changes that affects the entire system, to wit, breaking database changes. I am going to discuss that in the next installment, this one got just a tad out of hand, I am afraid."</p> <p>The follow-on post never came ;-). How would you go about managing the migration of breaking database changes to a database shared by old version of the same application. How would you keep the data synced up?</p> http://stackoverflow.com/questions/256456/how-can-i-profile-serialization-overhead-in-my-application 1 How can I profile serialization overhead in my application Brian Adams 2008-11-02T03:05:41Z 2008-11-02T10:27:48Z <p>My application has a WCF service tier between the front-end and the database. Since we currently host in IIS6 we are using SOAP over HTTP. How can I find out how much real world time I am spending doing serialization activities in my application?</p> http://stackoverflow.com/questions/9974/query-times-out-from-web-app-but-runs-fine-from-management-studio/255869#255869 2 Answer by Brian Adams for Query times out from web app but runs fine from management studio Brian Adams 2008-11-01T18:01:36Z 2008-11-01T18:01:36Z <p>I've had similar problems. Try setting the with "WITH RECOMPILE" option on the sproc create to force the system to recompute the execution plan each time it is called. Sometimes the Query processor gets confused in complex stored procedures with lots of branching or case statements and just pulls a really sub-optimal execution plan. If that seems to "fix" the problem, you will probably need to verify statistics are up to date and/or break down the sproc.</p> <p>You can also confirm this by profiling the sproc. When you execute it from SQL Managment Studio, how does the IO compare to when you profile it from the ASP.NET application. If they very a lot, it just re-enforces that its pulling a bad execution plan.</p> http://stackoverflow.com/questions/255419/how-can-i-mute-unmute-my-sound-from-powershell/255560#255560 0 Answer by Brian Adams for How can I mute/unmute my sound from PowerShell Brian Adams 2008-11-01T05:29:05Z 2008-11-01T05:29:05Z <p>You could skin the cat another way by simply managing the Windows Audio Service. Stop it to mute, start it to unmute.</p> http://stackoverflow.com/questions/584819/how-can-i-access-certificate-extendedproperties-using-powershell/586788#586788 Comment by Brian Adams on How can I access Certificate ExtendedProperties using powershell? Brian Adams 2009-02-25T21:45:02Z 2009-02-25T21:45:02Z Great, that worked and gets me closer to solving the problem. I'll do some researching before asking about the 64 bit version of CAPICOM. http://stackoverflow.com/questions/256456/how-can-i-profile-serialization-overhead-in-my-application/256730#256730 Comment by Brian Adams on How can I profile serialization overhead in my application Brian Adams 2009-01-14T02:31:13Z 2009-01-14T02:31:13Z Thanks for the correction, it ws John's podcast on dotnetrocks. http://stackoverflow.com/questions/256456/how-can-i-profile-serialization-overhead-in-my-application/256730#256730 Comment by Brian Adams on How can I profile serialization overhead in my application Brian Adams 2009-01-13T04:56:17Z 2009-01-13T04:56:17Z Listen to a podcast you gave on this. Sounds interesting. The link to the WCF sample comes up empty, but I'll poke around some more and see how feasible this may be to remove serialization overhead as a major concern. http://stackoverflow.com/questions/322446/how-do-you-inspect-for-and-test-for-known-ie-browser-features/322462#322462 Comment by Brian Adams on How do you inspect for and test for known IE browser "features"? Brian Adams 2008-11-27T22:50:52Z 2008-11-27T22:50:52Z Yea, we use AJAX.NET + prototype but are moving to AJAX.Net + JQuery. Still get about one killer bug a quarter that forces us to rejigger or patch around the libraries. http://stackoverflow.com/questions/271292/anyone-found-a-powershell-syntax-or-intellisence-plugin-for-visual-studio/271323#271323 Comment by Brian Adams on Anyone found a PowerShell Syntax or Intellisence plugin for Visual Studio Brian Adams 2008-11-07T14:38:29Z 2008-11-07T14:38:29Z Actually, I was asking specifically for a Visual Studio solution or a time frame for when a VS solution would show up. I am not interested in other IDEs http://stackoverflow.com/questions/256548/is-there-a-way-to-log-or-intercept-first-chance-exceptions/256790#256790 Comment by Brian Adams on Is there a way to log or intercept First Chance Exceptions Brian Adams 2008-11-02T16:00:18Z 2008-11-02T16:00:18Z Happy to be corrected: If you don't handle all exceptions in each method and make sure all variables are defined outside the try-catch block then at the point the final exception is raised, you won't have access to all variables that were available in the execution context of the original exception. http://stackoverflow.com/questions/256456/how-can-i-profile-serialization-overhead-in-my-application/256604#256604 Comment by Brian Adams on How can I profile serialization overhead in my application Brian Adams 2008-11-02T15:49:32Z 2008-11-02T15:49:32Z ETW would probably work. Any idea what tracing profiles need to be included to trace the WCF execution? Any idea where to even look for a description of the WCF events? http://stackoverflow.com/questions/256456/how-can-i-profile-serialization-overhead-in-my-application/256602#256602 Comment by Brian Adams on How can I profile serialization overhead in my application Brian Adams 2008-11-02T15:46:41Z 2008-11-02T15:46:41Z This should isolate server time from transport time. Any idea if there is a way to hook in before 1st packet sent to isolate the protocol serialization from the actual network overhead? http://stackoverflow.com/questions/256456/how-can-i-profile-serialization-overhead-in-my-application Comment by Brian Adams on How can I profile serialization overhead in my application Brian Adams 2008-11-02T05:39:32Z 2008-11-02T05:39:32Z Server. 2K3 or 2K8. The code is a running in two iis6 app pools that are talking...