User Adron - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T04:55:09Z http://stackoverflow.com/feeds/user/29345 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/274062/name-generator-for-net 3 Name Generator for .NET Adron 2008-11-08T00:05:15Z 2009-11-11T04:52:48Z <p>Has anyone written, or know of a library, that generates fairly accurate looking Western European style names? i.e. John, Susan, Smith, Julien, April, etc., etc... </p> http://stackoverflow.com/questions/528500/net-best-practices/528516#528516 19 Answer by Adron for .NET best practices? Adron 2009-02-09T15:06:30Z 2009-10-12T12:26:06Z <p>First, check out <a href="http://msdn.microsoft.com/en-us/practices/default.aspx" rel="nofollow">patterns &amp; practices - "Use Microsoft's proven practices for software engineering.".</p> <p>Next check out http://www.idesign.net/idesign/DesktopDefault.aspx">IDesign: .NET Design and Process Solutions</a>.</p> <p>After you dig through those to get some ideas make sure to enable code analysis/<a href="http://en.wikipedia.org/wiki/FxCop" rel="nofollow">FxCop</a> on your code base. Start thoroughly going through each warning.</p> <p>Last, but not least, go check out <a href="http://en.wikipedia.org/wiki/JetBrains" rel="nofollow">JetBrains</a>' software and GET <a href="http://en.wikipedia.org/wiki/ReSharper" rel="nofollow">ReSharper</a>. ReSharper (or similar tool, some are available out there) is a must have if you want to be 100% efficient and ensure you code to a high standard with a minimal amount of headache! :)</p> <p>That will get you 99% covered on standards and best practices.</p> http://stackoverflow.com/questions/1161059/problems-of-measuring-programmer-productivity 4 Problems of Measuring Programmer Productivity... Adron 2009-07-21T18:56:20Z 2009-07-21T19:04:05Z <p>Ok, the question is usually, how can one measure a programmer's productivity.</p> <p>But I want to put a slight twist on the question. How does one measure one's own productivity when coding? Do you measure yourselves by problems solved, questions answered versus asked, or the dreaded "lines of code"?</p> http://stackoverflow.com/questions/1133201/import-webtrends-data-to-sql-server-using-ssis/1142099#1142099 0 Answer by Adron for Import WebTrends Data to SQL Server Using SSIS Adron 2009-07-17T08:50:24Z 2009-07-17T08:50:24Z <p>Just for context - I work at Webtrends <a href="http://developer.webtrends.com/people/adron.hall" rel="nofollow">http://developer.webtrends.com/people/adron.hall</a> - so if you need more insight feel free to ping me again via adron.hall at webtrends dot com.</p> <p>My first questions is are you using the site software version or the ondemand SaaS version? It also depends on which version.</p> <p>If you're using the latest version of software the best way to go about getting things from the Webtrends Analytics product data store is to use the ODBC connector that is available for the product. This you can download from the web UI and it installs with a single click. I can provide more documentation, just send me an e-mail and I'll send you the actual documentation file on this.</p> <p>The other method, and this is currently in beta and available only to OnDemand customers is to use the web services (REST based) that we've created. Check out the documentation here: <a href="http://product.webtrends.com/dxapi/index.html" rel="nofollow">http://product.webtrends.com/dxapi/index.html</a></p> <p>Please do send me an e-mail and I'll be sure to get you hooked up with the information you need.</p> <p>Thx - Adron</p> http://stackoverflow.com/questions/637377/vs-code-execution-different-than-code-file 2 VS Code Execution Different than Code File Adron 2009-03-12T04:33:56Z 2009-04-06T18:27:22Z <p>Has anyone ever been debugging in Visual Studio and it appears to execute different code then the code that is being stepped through? Sometimes it even steps into what appears to be white space in the file that is being stepped through but VS is executing something anyway?</p> <p>I've had this happen several times, once someone had me clear something in the Application Data directory under the user directory. However I can't remember what that was and wondered if anyone had some ideas.</p> http://stackoverflow.com/questions/641323/maximizing-wpf-doesnt-update-width 2 Maximizing WPF Doesn't Update Width? Adron 2009-03-13T03:01:09Z 2009-03-13T03:15:12Z <p>The width property of the screen doesn't seem to update to the fully maximized width when maximizing a window. If I resize it everything works fine, but not when maximizing.</p> <p>The code I have is as follows:</p> <pre><code> private void Window_SizeChanged(object sender, SizeChangedEventArgs e) { UpdateColumns(); } private void button1_Click(object sender, RoutedEventArgs e) { UpdateColumns(); } private void UpdateColumns() { ColumnCount = Math.Round(Width/150); statusBarItemColumnCount.Content = ColumnCount; button1.Content = ColumnCount + " " + Width; } private void Window_StateChanged(object sender, EventArgs e) { UpdateColumns(); } </code></pre> http://stackoverflow.com/questions/445895/dynamically-load-http-modules-possibly-with-unity 1 Dynamically Load HTTP Modules, Possibly with Unity? Adron 2009-01-15T07:06:01Z 2009-02-20T03:48:25Z <p>Has anyone seen any how-to, documentation, or otherwise about how to load HTTP Modules dynamically for IIS?</p> <p>Basically what I am trying to do is to load HTTP Modules, which I'll call HTTPModuleA, HTTPModuleB, and HTTPModuleC. The modules however could be changed out at any time with HTTPModuleD, HTTPModuleE, or HTTPModuleF. I basically would like to put them in the config file, but don't want to have references or anything. I'd like to be able to merely have them dropped into a particular path (the dll of the assembly that is), set the config file entry for the file/path, and have Unity, or something other framework just pick them up and load them. Possibly scanning for changes every 2-3 minutes or something.</p> <p>Any notions on how to get this done are much appreciated. Thx!</p> http://stackoverflow.com/questions/528436/removing-nonnumeric-and-nonalpha-characters-from-a-string 5 Removing nonnumeric and nonalpha characters from a string? Adron 2009-02-09T14:50:04Z 2009-02-09T16:50:08Z <p>What is the best way to remove all the special characters from a string - like these: </p> <p>!@#$%^&amp;*(){}|:"?>&lt;,./;'[]\=-</p> <p>The items having these characters removed would rather short, so would it be better to use REGEX on each or just use string manipulation?</p> <p>Thx</p> <p>Environment == C#/.NET</p> http://stackoverflow.com/questions/528544/switch-to-64-bit-or-stay-at-32-bit/528563#528563 0 Answer by Adron for Switch to 64 bit or stay at 32 bit? Adron 2009-02-09T15:19:31Z 2009-02-09T15:19:31Z <p>Buy two cheap servers instead of a single one. :)</p> <p>But in all seriousness, if there are issues, you might want to buy a 64 bit box, and then load a 32 bit OS on it.</p> <p>Then when the issues are cleared up, or you can clear them up yourself, you can do the change over. That's just one idea though.</p> <p>My other opinion though is to replace the Visual FoxPro Application with something a bit more modern and maintained. ;) You might be amazed how much more efficient some of the dev stacks are - especially for smaller offices.</p> <p>...as Kosi2801 says about virtualization. That could be applied with my suggestion also. Buy a nice 64 bit box and use VMWare's ESX Server. It might even work out BETTER than actually trying to run all the services on a single box. The tools VMWare has out are VERY impressive these days.</p> http://stackoverflow.com/questions/528518/wcf-system-servicemodel-security-securitynegotiationexception/528549#528549 0 Answer by Adron for WCF System.ServiceModel.Security.SecurityNegotiationException Adron 2009-02-09T15:14:52Z 2009-02-09T15:14:52Z <p>Is another security setting enabled besides the anonymous?</p> <p>If you have anonymous selected and another, and have basic or some other type selected you will run into this issue. With WCF you are pretty much limited, while hosting in IIS, to a single security authentication model.</p> <p>If you could elaborate a little bit I could possibly provide a better answer. :)</p> http://stackoverflow.com/questions/528484/separation-of-concerns-in-asp-net-cause-hierarchy-mess/528535#528535 1 Answer by Adron for Separation of concerns in asp.net cause hierarchy mess Adron 2009-02-09T15:12:24Z 2009-02-09T15:12:24Z <p>I'd have to say, with no particular solution, that a good separation of concerns is actually disrupted in the above nested hierarchy. It appears that the functional pieces should be further separated as to not be included every time the other is needed.</p> <p>Why is it necessary that you have viewstate and validation in the same space? Why not separate it altogether?</p> http://stackoverflow.com/questions/481090/limiting-access-to-a-wcf-rest-webhttpbinding-service-using-the-asp-net-membersh/481704#481704 1 Answer by Adron for Limiting access to a WCF REST (webHttpBinding) Service using the ASP.NET Membership Provider? Adron 2009-01-26T22:48:48Z 2009-01-26T22:48:48Z <p>The best source I've found is here: <a href="http://www.leastprivilege.com/FinallyUsernamesOverTransportAuthenticationInWCF.aspx" rel="nofollow">http://www.leastprivilege.com/FinallyUsernamesOverTransportAuthenticationInWCF.aspx</a></p> <p>The site also has tons of other information about setting up HTTP Modules to handle basic authentication (which I'm guessing you'll be using since it is kind of the standard).</p> <p>The HTTP Module authentication method is located on Codeplex with sample code and everything here: <a href="http://www.codeplex.com/CustomBasicAuth" rel="nofollow">http://www.codeplex.com/CustomBasicAuth</a></p> http://stackoverflow.com/questions/441421/httpmodule-event-execution-order 3 HTTPModule Event Execution Order? Adron 2009-01-14T00:13:00Z 2009-01-14T00:32:46Z <p>Does anyone know of a site or page, or know the order of execution for the events of the HTTPApplication class for HTTPModule event execution?</p> <p>I found the <a href="http://msdn.microsoft.com/en-us/library/system.web.httpapplication_events.aspx" rel="nofollow">MSDN Documentation</a> for all of the events, but it doesn't show a list of process steps and I haven't been able to find one.</p> http://stackoverflow.com/questions/428682/should-visual-studio-2008-throw-an-accessibility-error-508-with-a-100-table-dr/429062#429062 1 Answer by Adron for Should Visual Studio 2008 throw an accessibility error (508) with a 100% table driven layout? Adron 2009-01-09T18:00:57Z 2009-01-09T18:00:57Z <p>As you write here "100% table driven layout", the error would be correct. Layout should NOT be done with tables, but instead with DIV tags. The design world that has accepted CSS standards goes nuts when things aren't designed appropriately with DIVs, as they hate TABLE layouts.</p> http://stackoverflow.com/questions/232078/common-wcf-exception-connection-unexpectedly-closed 3 Common WCF Exception : Connection Unexpectedly Closed Adron 2008-10-24T00:20:25Z 2009-01-07T08:44:59Z <p>I have three projects. One is a WCF Services Project, one is a WPF Project, and one is a Microsoft Unit Testing Project. I setup the WCF Services project with a data object that looks like this:</p> <pre><code>[DataContract] public enum Priority { Low, Medium, High } [DataContract] public struct TimeInfo { [DataMember] public Int16 EstimatedHours { get; set; } [DataMember] public Int16 ActualHours { get; set; } [DataMember] public DateTime StartDate { get; set; } [DataMember] public DateTime EndDate { get; set; } [DataMember] public DateTime CompletionDate { get; set; } } [DataContract] public class Task { [DataMember] public string Title { get; set; } [DataMember] public string Description { get; set; } [DataMember] public Priority Priority { get; set; } [DataMember] public TimeInfo TimeInformation { get; set; } [DataMember] public Decimal Cost { get; set; } } </code></pre> <p>My contract looks like this:</p> <pre><code>[ServiceContract] public interface ITaskManagement { [OperationContract] List&lt;Task&gt; GetTasks(); [OperationContract] void CreateTask(Task taskToCreate); [OperationContract] void UpdateTask(Task taskToCreate); [OperationContract] void DeleteTask(Task taskToDelete); } </code></pre> <p>When I try to use the service in either the WPF Application or the Unit Test Project with this code:</p> <pre><code>var client = new TaskManagementClient(); textBox1.Text = client.GetTasks().ToString(); client.Close(); </code></pre> <p>I get the following error: "The underlying connection was closed: The connection was closed unexpectedly."</p> <p>The app.config for the WPF and Unit Test Projects look like this:</p> <pre><code>&lt;system.serviceModel&gt; &lt;bindings&gt; &lt;wsHttpBinding&gt; &lt;binding name="WSHttpBinding_ITaskManagement" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false"&gt; &lt;readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" /&gt; &lt;reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" /&gt; &lt;security mode="Message"&gt; &lt;transport clientCredentialType="Windows" proxyCredentialType="None" realm="" /&gt; &lt;message clientCredentialType="Windows" negotiateServiceCredential="true" algorithmSuite="Default" establishSecurityContext="true" /&gt; &lt;/security&gt; &lt;/binding&gt; &lt;/wsHttpBinding&gt; &lt;/bindings&gt; &lt;client&gt; &lt;endpoint address="http://localhost:9999/TaskManagement.svc" binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_ITaskManagement" contract="TaskManagement.ITaskManagement" name="WSHttpBinding_ITaskManagement"&gt; &lt;identity&gt; &lt;dns value="localhost" /&gt; &lt;/identity&gt; &lt;/endpoint&gt; &lt;/client&gt; &lt;/system.serviceModel&gt; </code></pre> <p>and the web.config of the WCF Service looks like this:</p> <pre><code> &lt;system.serviceModel&gt; &lt;behaviors&gt; &lt;serviceBehaviors&gt; &lt;behavior name="InternetBasedWcfServices.TaskManagementBehavior"&gt; &lt;serviceMetadata httpGetEnabled="true" /&gt; &lt;serviceDebug includeExceptionDetailInFaults="false" /&gt; &lt;/behavior&gt; &lt;behavior name="InternetBasedWcfServices.ScheduleManagementBehavior"&gt; &lt;serviceMetadata httpGetEnabled="true" /&gt; &lt;serviceDebug includeExceptionDetailInFaults="false" /&gt; &lt;/behavior&gt; &lt;/serviceBehaviors&gt; &lt;/behaviors&gt; &lt;services&gt; &lt;service behaviorConfiguration="InternetBasedWcfServices.TaskManagementBehavior" name="InternetBasedWcfServices.TaskManagement"&gt; &lt;endpoint address="" binding="wsHttpBinding" contract="InternetBasedWcfServices.ITaskManagement"&gt; &lt;identity&gt; &lt;dns value="localhost" /&gt; &lt;/identity&gt; &lt;/endpoint&gt; &lt;endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" /&gt; &lt;/service&gt; &lt;service behaviorConfiguration="InternetBasedWcfServices.ScheduleManagementBehavior" name="InternetBasedWcfServices.ScheduleManagement"&gt; &lt;endpoint address="" binding="wsHttpBinding" contract="InternetBasedWcfServices.IScheduleManagement"&gt; &lt;identity&gt; &lt;dns value="localhost" /&gt; &lt;/identity&gt; &lt;/endpoint&gt; &lt;endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" /&gt; &lt;/service&gt; &lt;/services&gt; &lt;/system.serviceModel&gt; </code></pre> <p>This is not the first time this has happened, and I'm guessing it is a configuration issue. But each time I've usually just blown away my service and put it back or created a new service project. Then everything works wonderfully. If anyone has any ideas, that would be awesome. Thx.</p> <p>**</p> <blockquote> <p>Updated: I've added comments for more of my troubleshooting on this problem. When an answer is available, if the answer is unpublished, I'll add it as an official "answer".</p> </blockquote> <p>**</p> http://stackoverflow.com/questions/395987/agile-scrum-adoption-how-did-it-go/409476#409476 2 Answer by Adron for Agile (Scrum) adoption - how did it go? Adron 2009-01-03T17:55:36Z 2009-01-03T17:55:36Z <p>The biggest issue, as already stated, that I too have experienced is the lack of buy in. It is very difficult to get people to truly become vested in the process.</p> <p>The other issue, which is also one that directly contributes to the above issue, and also in a large part one of the founding causes of Agile is the lack of management to stick to the outlines of the manifesto of Agile.</p> <p>In Scrum, Lean, or whatever version of Agile you are working with one cannot break from the manifesto points. If a process is being used to break away from those priorities then most likely the management is screwing up and the buy in will fall apart. The manifesto MUST be followed:</p> <p>Manifesto:</p> <ul> <li>Individuals and interactions over processes and tools</li> <li>Working software over comprehensive documentation</li> <li>Customer collaboration over contract negotiation</li> <li>Responding to change over following a plan</li> </ul> <p>Some scenarios might be when a gantt chart appears from one of the above processes for whatever reason. Gantt charts can be useful, but if all of a sudden a developer is reviewing a gantt chart with management, the last point is broken. Responding to change has slowed because encouragement of the plan is being favored over change. Instead a board with stickies should be used, simplify what is on the board with only the current working items and back burner items. This makes changes easy. Once anything is solidified in a "tool" it slows responding to changes. Sure, management needs to record and track things in some ways, but pushing that onto development only slows the responding to change, and pushing tools onto developers (unless they want them for development and can utilize them appropriately) messes up the first point, of the individuals over tools and process.</p> <p>In another way, don't stop development for the purpose of writing comprehensive documentation. Unless you only have a single developer, then someone should take the documentation load autonomously from the development role. Pushing these things together drastically slows development and for periods of time, can shut down any effort to actually get working software.</p> <p>The last point, is to always, ALWAYS stay in contact in some way with the customer or prospective customer. Talk to them regularly about what they want. Talk to them daily and show them as much as you can of UI, or even data flow work. Anything that they would understand they should see. Talk to them, educate them about the architecture and ideas going into the application and never forget that you are building the application for them.</p> <p>Summary:</p> <p>Biggest issue is buy in. Second is management sticking to the manifesto guidelines.</p> <p>If you can mitigate these two risks, you should be good to go. Anything else is cakewalk after getting buy in and getting management to understand that they'll need to be truly strong, and non-micro management managers. Specifically, managers might even need to become leads, or fill a different style of role.</p> <p>...hope I didn't stray off point too much. :)</p> http://stackoverflow.com/questions/395702/migrating-from-svn-to-perforce-tips-experience/396540#396540 0 Answer by Adron for Migrating from SVN to Perforce -- Tips? Experience? Adron 2008-12-28T19:12:30Z 2008-12-28T19:12:30Z <p>I'd second the notion that it just shouldn't be done. IMHO.</p> <p>If anything I'd move to GIT if anything, but wouldn't touch another source control system that is doing the same thing. It doesn't solve any problems really, and my experience leads me to the simple fact that it isn't going to save you any real time or money in the long run.</p> http://stackoverflow.com/questions/325275/in-wcf-should-you-have-large-maxbufferpoolsize-value-for-large-messages/396528#396528 0 Answer by Adron for In WCF, should you have large MaxBufferPoolSize value for large messages? Adron 2008-12-28T19:01:55Z 2008-12-28T19:01:55Z <p>If you're trying to transfer files and such, this seems like your only option. Otherwise I'd review why such large pieces of data are being sent across the service in the first place. If it is files and such, you'll just have to live with that large size and the possible repercussions. You also, again if it is files you're moving, might want to try an FTP component or something instead.</p> <p>I could provide more information with a little elaboration. I'll check back later to see if you've added anything to your question.</p> http://stackoverflow.com/questions/396507/how-do-you-describe-what-you-do-to-nontechnical-folks-who-ask/396522#396522 3 Answer by Adron for How do you describe what you do to nontechnical folks who ask? Adron 2008-12-28T18:55:31Z 2008-12-28T18:55:31Z <p>I often have conversations with a friend of mine who is, or was a carpenter. The number of analogies makes it self evident why the industry has stolen the term "Architecture".</p> <p>I'm often in the position of the foreman (project manager), lead carpenter (dev lead or senior dev) and very often the architect role (Architect). You can derive almost any anology and even ask carpenters and other on the job site (development group/team) what they think of the architect and it is eerie the similarity in statements between developers and carpenters. :)</p> <p>Anyway, the point is that you could easily draw parallels with building a house and build software. In enterprise software development instead of the house you have a skyscraper.</p> http://stackoverflow.com/questions/393580/wcf-authentication-without-ssl 3 WCF Authentication WITHOUT SSL Adron 2008-12-26T07:15:28Z 2008-12-26T12:49:07Z <p>Is there a way to setup authentication (ala "Basic Authentication") without actually setting up an SSL Certificate? I'd also like to do this in REST or regular SOAP WCF Services, preferably in REST, but would like to be able to mix the services. In other words, "I want to be able to send a regular old username and password just like in Basic Authentication but without the SSL." Is there a way to do this?</p> http://stackoverflow.com/questions/323088/asp-net-mvc-folder-controller-html-actionlink 0 ASP.NET MVC Folder Controller Html.ActionLink Adron 2008-11-27T06:59:08Z 2008-11-27T08:06:12Z <p>I have the following code in my Site.Master page of an almost empty ASP.NET MVC Project. </p> <pre><code>&lt;li&gt; &lt;%= Html.ActionLink("Home", "Index", "Home")%&gt; &lt;/li&gt; &lt;li&gt; &lt;%= Html.ActionLink("Feed List", "FeedList", "Home")%&gt; &lt;/li&gt; &lt;li&gt; &lt;%= Html.ActionLink("Monitored Feeds", "MonitoredFeeds", "Home")%&gt; &lt;/li&gt; &lt;li&gt; &lt;%= Html.ActionLink("About", "About", "Home")%&gt; &lt;/li&gt; </code></pre> <p>I haven't added anything more than a Folder to the Views Folder called Feeds. In the Feeds folder I have two Views; FeedList.aspx and MonitoredFeeds.aspx. I also added the following code to the HomeController as below.</p> <pre><code> [HandleError] public class HomeController : Controller { public ActionResult Index() { ViewData["Title"] = "The Reporter"; ViewData["Message"] = "Welcome to The Reporter."; return View(); } public ActionResult About() { ViewData["Title"] = "About Page"; return View(); } public ActionResult FeedList() { ViewData["Title"] = "Feed List"; return View(); } public ActionResult MonitoredFeeds() { ViewData["Title"] = "Monitored Feeds"; return View(); } } </code></pre> <p>No matter what I do though, whenever I click on the links to the pages, the following error is displayed.</p> <h2>Server Error in '/' Application.</h2> <p>The view 'FeedList' or its master could not be found. The following locations were searched: ~/Views/Home/FeedList.aspx ~/Views/Home/FeedList.ascx ~/Views/Shared/FeedList.aspx ~/Views/Shared/FeedList.ascx Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. </p> <p>Exception Details: System.InvalidOperationException: The view 'FeedList' or its master could not be found. The following locations were searched: ~/Views/Home/FeedList.aspx ~/Views/Home/FeedList.ascx ~/Views/Shared/FeedList.aspx ~/Views/Shared/FeedList.ascx</p> <p>Source Error: </p> <p>An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. </p> <p>Stack Trace: </p> <p>[InvalidOperationException: The view 'FeedList' or its master could not be found. The following locations were searched: ~/Views/Home/FeedList.aspx ~/Views/Home/FeedList.ascx ~/Views/Shared/FeedList.aspx ~/Views/Shared/FeedList.ascx] System.Web.Mvc.ViewResult.FindView(ControllerContext context) +493 System.Web.Mvc.ViewResultBase.ExecuteResult(ControllerContext context) +199 System.Web.Mvc.ControllerActionInvoker.InvokeActionResult(ActionResult actionResult) +105 System.Web.Mvc.&lt;>c__DisplayClass13.b__10() +39 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter(IResultFilter filter, ResultExecutingContext preContext, Func<code>1 continuation) +385 System.Web.Mvc.&lt;&gt;c__DisplayClass15.&lt;InvokeActionResultWithFilters&gt;b__12() +61 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ActionResult actionResult, IList</code>1 filters) +386 System.Web.Mvc.ControllerActionInvoker.InvokeAction(ControllerContext controllerContext, String actionName) +736 System.Web.Mvc.Controller.ExecuteCore() +180 System.Web.Mvc.ControllerBase.Execute(RequestContext requestContext) +96 System.Web.Mvc.ControllerBase.System.Web.Mvc.IController.Execute(RequestContext requestContext) +36 System.Web.Mvc.MvcHandler.ProcessRequest(HttpContextBase httpContext) +377 System.Web.Mvc.MvcHandler.ProcessRequest(HttpContext httpContext) +71 System.Web.Mvc.MvcHandler.System.Web.IHttpHandler.ProcessRequest(HttpContext httpContext) +36 System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +181 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean&amp; completedSynchronously) +75</p> <p><hr /></p> <p>Version Information: Microsoft .NET Framework Version:2.0.50727.3053; ASP.NET Version:2.0.50727.3053 </p> <p>Have I missed something? Do I need to add the Feeds folder somewhere? Does Feeds need to go where I have "Home" listed in the links? I've even tried that and still got the error.</p> <p>Thanks.</p> http://stackoverflow.com/questions/319952/how-to-deal-with-overachievers/321904#321904 0 Answer by Adron for How to deal with overachievers Adron 2008-11-26T19:39:38Z 2008-11-26T19:39:38Z <p>I've seen a LOT of poor answers for this one already.</p> <p>First, the things you do NOT want to do. Which you seem to be very aware of already.</p> <ol> <li>Do NOT stunt his enthusiasm.</li> <li>Do NOT stop him forcefully (i.e. removing tasks) from being the over acheiver.</li> <li>Don't try to shame, subvert, or do any of those other suggestions.</li> </ol> <p>Any of these things as you are aware is one of the sure fire ways to lose the developer. Either he/she'll become totally withdrawn and become an "average" developer, or they'll just leave the company/project. Either way, you end up with the same result of less productivity, lower throughput, and unfinished projects.</p> <p>So what do you need to do? First think about utilizing Agile with this person. Serious, tried and true pair programming and some other things. This spreads the "over acheiver" around to utilize what they know but also allows others to get up to that speed also.</p> <p>Another thing, YOU have to manage better. If he/she falls behind on tasks then YOU are responsible for identifying this and controlling the flow of tasks and or "user stories".</p> <p>All in all, this sounds like a case of waterfall or some other process getting in the way of an individual that could make much more of an impact toward the progress of a company/project/effort. Make sure to remove the barriers and let that person play a larger role.</p> <p>Psychologically, profitably, morally, and ethically this is the appropriate thing to do. Hope that at least plants some ideas.</p> http://stackoverflow.com/questions/52608/is-subversion-version-control-necessary-for-a-small-development-group-1-2-prog/288242#288242 2 Answer by Adron for Is Subversion (Version Control) Necessary For A Small Development Group (1-2 programmers)? Adron 2008-11-13T20:54:02Z 2008-11-13T20:54:02Z <p>Simple answer YES.</p> <p>Not to reiterate, but it cannot be said enough. You SHOULD HAVE source control. Subversion is ridiculously easy and almost zero overhead once it is setup. It literally shouldn't take more than 5-20 minutes to setup. You have other choices too, like GIT. So just pick one, and put your source in there - end of answer. :)</p> http://stackoverflow.com/questions/232078/common-wcf-exception-connection-unexpectedly-closed/234584#234584 2 Answer by Adron for Common WCF Exception : Connection Unexpectedly Closed Adron 2008-10-24T17:46:50Z 2008-11-13T20:42:57Z <p>I Found the Answer</p> <p>Ok, not sure if it is kewl answering my own question, but here we go. For some reason the enumeration needed to be marked with the [EnumMember] Attributes as below:</p> <pre><code>[DataContract] public enum Priority { [EnumMember] Low, [EnumMember] Medium, [EnumMember] High } </code></pre> <p>Once I did that my tests and services could be called without the error occurring. I'm still not sure why that specific error was displayed. The error doesn't seem to align in any correlation with the functional reason the error occurred, but this fix definitely smoothed everything out.</p> http://stackoverflow.com/questions/274533/choosing-best-security-option-for-wcf/279934#279934 2 Answer by Adron for Choosing best security option for WCF Adron 2008-11-11T03:30:26Z 2008-11-11T03:30:26Z <p>I believe the best security you could enable would be SSL over HTTP and a standard authentication scheme via a username and password. For a really great inclusive review of the various security aspects of WCF check out the Codeplex site: <a href="http://www.codeplex.com/WCFSecurity" rel="nofollow">http://www.codeplex.com/WCFSecurity</a></p> <p>Specifically this page: <a href="http://www.codeplex.com/WCFSecurityGuide" rel="nofollow">http://www.codeplex.com/WCFSecurityGuide</a></p> http://stackoverflow.com/questions/273606/wcf-service-to-get-a-list-of-guids-from-a-server-what-should-my-contract-look-li/273616#273616 1 Answer by Adron for WCF service to get a list of GUIDS from a server, what should my contract look like? Adron 2008-11-07T20:58:49Z 2008-11-07T20:58:49Z <p>The Guids, if you're going for SOA oriented services, will need to be set as strings. The client will be responsible for turning them back into whatever. As for the listing of the Guids, they'd be returned as an array. If you have a contract with a regular Generics List Object of Guids like this</p> <pre><code>[DataMember] List&lt;Guid&gt; SomeGuidsGoInHere {get;set;} </code></pre> <p>then you'll get an array of Guids back. Which could cause compatability issues. What you'll want to do is setup a List of strings like this.</p> <pre><code>[DataMember] List&lt;String&gt; SomeGuidsAsStringsGoInHere {get;set;} </code></pre> http://stackoverflow.com/questions/250749/is-anyone-aware-of-any-net-openid-provider-sample-code-that-might-exist/263547#263547 0 Answer by Adron for Is anyone aware of any .NET OpenID Provider sample code that might exist? Adron 2008-11-04T21:38:24Z 2008-11-04T21:38:24Z <p>BTW - There is ExtremeSwank which is on Google Gode too. I'd check it out also, looks like it is further along at this time.</p> <p>I have a blog entry I'm working up that should be published, at least starting on, tomorrow. Working up a WCF OpenID Provider Implementation. <a href="http://www.adronbhall.name" rel="nofollow">http://www.adronbhall.name</a>.</p> http://stackoverflow.com/questions/241631/how-can-one-avoid-illegal-characters-when-composing-a-url/241642#241642 0 Answer by Adron for How can one avoid illegal characters when composing a URL? Adron 2008-10-27T22:46:22Z 2008-10-27T22:46:22Z <p>Use the HtmlEncode and Decode methods on the server object. I believe that will remove most characters that should not be and takes care of other things such as spaces, etc.</p> <p>Here's the MSDN Article: <a href="http://msdn.microsoft.com/en-us/library/ms525347.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms525347.aspx</a></p> http://stackoverflow.com/questions/231943/what-is-the-most-disruptive-thing-in-a-developers-day/232087#232087 1 Answer by Adron for What is the most disruptive thing in a developer's day Adron 2008-10-24T00:23:12Z 2008-10-24T00:23:12Z <p>I'd say e-mail, in certain environments, and pretty ladies walking by the window. That can be very distracting. There are a million things that can be distracting. I think the more objective question would be, "How does one decrease the number of distractions during the course of a day?"</p> http://stackoverflow.com/questions/169195/does-scrum-alone-agile/230725#230725 0 Answer by Adron for Does SCRUM alone = agile? Adron 2008-10-23T17:52:26Z 2008-10-23T17:52:26Z <p>Yeah, I'd agree with some of the sentiment here. Be Agile is following the manifesto and assuring that you have the right alignment of priorities. SCRUM is just another variant with specific pieces written down. It is, if anything a management "tool".</p> <p>With that said, remember, the tools are secondary, your people are your priority. Don't over-focus on the management style, focus instead of the people and the product.</p> http://stackoverflow.com/questions/1133201/import-webtrends-data-to-sql-server-using-ssis/1142099#1142099 Comment by Adron on Import WebTrends Data to SQL Server Using SSIS Adron 2009-07-21T18:51:01Z 2009-07-21T18:51:01Z I just reread this again and realized you mentioned Windows 7. Currently the ODBC driver doesn't work with Windows 7. My suggestion is to use the new Web Services (REST based) to pull data. Much faster than ODBC. :) Let me know if this helps. http://stackoverflow.com/questions/323088/asp-net-mvc-folder-controller-html-actionlink/323187#323187 Comment by Adron on ASP.NET MVC Folder Controller Html.ActionLink Adron 2009-04-30T22:46:48Z 2009-04-30T22:46:48Z Actually I looked back at this and this is the best solution, it is what I was trying to achieve, but I clicked the other answer... :( Both are valid answers though. http://stackoverflow.com/questions/727672/c-httpexception-output-as-stream Comment by Adron on C# - HttpException output as stream? Adron 2009-04-07T22:56:19Z 2009-04-07T22:56:19Z It's being one of those days. Should be updated now. C# is the language. http://stackoverflow.com/questions/637377/vs-code-execution-different-than-code-file Comment by Adron on VS Code Execution Different than Code File Adron 2009-03-13T02:55:03Z 2009-03-13T02:55:03Z Reason 3 of the marked answer below did it. For some reason it seemed to be using/creating it incorrectly. Blew away the object directory and boom, worked like a charm. http://stackoverflow.com/questions/445895/dynamically-load-http-modules-possibly-with-unity/568211#568211 Comment by Adron on Dynamically Load HTTP Modules, Possibly with Unity? Adron 2009-03-02T22:38:39Z 2009-03-02T22:38:39Z How does one do that? Any pointers? http://stackoverflow.com/questions/395987/agile-scrum-adoption-how-did-it-go/396032#396032 Comment by Adron on Agile (Scrum) adoption - how did it go? Adron 2009-01-03T18:00:49Z 2009-01-03T18:00:49Z My issue has always been the buy in. People love it when a strong lead moves a team toward this type of approach - but then if they don't buy in, or take it as their own, or just get lazy, it's over and the productivity gain is lost. :( http://stackoverflow.com/questions/50114/wcf-wtf-does-wcf-raise-the-bar-or-just-the-complexity-level/357835#357835 Comment by Adron on WCF: WTF! Does WCF raise the bar or just the complexity level? Adron 2008-12-28T19:06:52Z 2008-12-28T19:06:52Z WCF is just as open as ASMX. Both are Microsoft based technologies. This statement is misleading at best, WCF does add functionality, and a whole host of things, but also provides very straight forward and simple ways to implement regular style web services also. http://stackoverflow.com/questions/219425/interface-contract-class-object Comment by Adron on Interface Contract, Class Object? Adron 2008-10-20T19:23:00Z 2008-10-20T19:23:00Z I see the difference now, thx for the answers. I've used them for years, albeit well and accurately from what I've seen, but I never really stopped to actually think the definitions through. http://stackoverflow.com/questions/217547/security-and-policy-injection-application-block/218075#218075 Comment by Adron on Security and Policy Injection Application Block Adron 2008-10-20T17:44:49Z 2008-10-20T17:44:49Z Well, just because it has a MS stamp of approval definitely doesn't mean it is the best. :) Thx for the answer! http://stackoverflow.com/questions/218122/dynamically-assigning-master-pages-using-mvc/218858#218858 Comment by Adron on Dynamically assigning master pages using MVC Adron 2008-10-20T15:58:16Z 2008-10-20T15:58:16Z U might want to add this as a comment to the main entry instead of as an answer. http://stackoverflow.com/questions/216110/tool-for-viewing-x-509-certificates/216142#216142 Comment by Adron on Tool for Viewing X.509 Certificates? Adron 2008-10-19T18:46:21Z 2008-10-19T18:46:21Z Thx VP. That's exactly what I was looking for. I can't believe I had not stumbled upon it in all my searches. http://stackoverflow.com/questions/216110/tool-for-viewing-x-509-certificates/216314#216314 Comment by Adron on Tool for Viewing X.509 Certificates? Adron 2008-10-19T18:36:43Z 2008-10-19T18:36:43Z Hey Romulo. I'll definitely check this tool out also. I'm doing a bit of development with Java that will connect to these WCF Web Services - so it wouldn't hurt to have something that can be run on other system. Thx!