User Travis Illig - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T17:48:02Zhttp://stackoverflow.com/feeds/user/8116http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1838568/error-rendering-control-a-cannot-be-cast-to-b-in-the-context-loadneither/1848075#18480750Answer by Travis Illig for Error Rendering control - [A] cannot be cast to [B] in the context LoadNeither Travis Illig2009-12-04T16:26:51Z2009-12-04T16:26:51Z<p>In order to make this work you'll need to put the control project and the test project in two different solutions. The problem is unique to issues where you have to debug another running instance of Visual Studio. You'll see this <a href="http://www.paraesthesia.com/archive/2009/11/03/debugging-visual-studio-add-ins-and-xmlserialization-problems.aspx" rel="nofollow">if you work on Visual Studio add-ins</a>, too.</p>
http://stackoverflow.com/questions/1108699/how-do-i-get-design-mode-to-work-for-templated-user-controls/1682724#16827241Answer by Travis Illig for How do I get design mode to work for templated user controls?Travis Illig2009-11-05T18:48:30Z2009-11-05T18:48:30Z<p>There is <a href="http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=104298" rel="nofollow">a Connect bug</a> filed on this as well as <a href="http://msdn.microsoft.com/en-us/library/36574bf6%28VS.80%29.aspx" rel="nofollow">several comments on the VS2005 version of the MSDN page</a>. Apparently this is a long-running defect that hasn't been fixed and hasn't got a solution. In ScottGu's <a href="http://weblogs.asp.net/scottgu/archive/2006/06/04/Supporting-Templates-with-ASP.NET-User-Controls.aspx" rel="nofollow">post about this feature</a>, he acknowledges this doesn't work (<a href="http://weblogs.asp.net/scottgu/archive/2006/06/04/Supporting-Templates-with-ASP.NET-User-Controls.aspx#451878" rel="nofollow">in the comments</a>) and <a href="http://weblogs.asp.net/scottgu/archive/2006/01/29/436854.aspx" rel="nofollow">points the commenters to the CompositeControl base class</a> if they want designer support.</p>
<p>Probably not the answer you were hoping for, but it sounds like there's no real solution for the issue except moving to server controls.</p>
http://stackoverflow.com/questions/64242/rhino-mocks-typemock-moq-or-nmock-which-one-do-you-use-and-why/890812#8908123Answer by Travis Illig for Rhino Mocks, TypeMock, Moq, or NMock? Which one do you use and why?Travis Illig2009-05-20T23:55:44Z2009-05-20T23:55:44Z<p>I'm a big fan of Typemock Isolator and use it both for my personal/open source projects and for work. The big benefit I get is the ability to test all of the bits that interface with sealed/static/otherwise locked-down members of the .NET framework and legacy code.</p>
<p>For example, I interface a lot with old/legacy code that wasn't remotely written with testability in mind. You run into stuff like object constructors that try to connect to databases. Being able to test my code that interfaces with this stuff is great; being able to increase test coverage on that legacy code - without having to rewrite it and potentially introduce new defects - is invaluable.</p>
<p>Another example: web apps. Even using ASP.NET MVC, you don't entirely escape having to interface with the ASP.NET pipeline objects (HttpApplication, HttpContext, etc.). Granted, in many places they've added abstractions around them, but your HttpModules and such don't get that, nor do your custom handlers. That interface code, thin though it may be, still warrants testing, and that's where Isolator comes in handy.</p>
<p>Ever tried to unit test a Visual Studio add-in? Even one written on top of something like CodeRush/Refactor? That's prime Isolator territory, too.</p>
<p>[<strong>Disclaimer</strong>: I've been named a "Typemock Expert" and am an active member of the Typemock community. I definitely have a bias, but I don't think it's without solid reason behind it.]</p>
http://stackoverflow.com/questions/169342/why-isnt-my-custom-wcf-behavior-extension-element-type-being-found4Why isn't my custom WCF behavior extension element type being found?Travis Illig2008-10-03T23:44:35Z2009-02-03T19:20:49Z
<p>I have a solution that contains two projects. One project is an ASP.NET Web Application Project, and one is a class library. The web application has a project reference to the class library. Neither of these is strongly-named.</p>
<p>In the class library, which I'll call "Framework," I have an endpoint behavior (an IEndpointBehavior implementation) and a configuration element (a class derived from BehaviorExtensionsElement). The configuration element is so I can attach the endpoint behavior to a service via configuration.</p>
<p>In the web application, I have an AJAX-enabled WCF service. In web.config, I have the AJAX service configured to use my custom behavior. The system.serviceModel section of the configuration is pretty standard and looks like this:</p>
<pre><code><system.serviceModel>
<behaviors>
<endpointBehaviors>
<behavior name="MyEndpointBehavior">
<enableWebScript />
<customEndpointBehavior />
</behavior>
</endpointBehaviors>
</behaviors>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
<services>
<service name="WebSite.AjaxService">
<endpoint
address=""
behaviorConfiguration="MyEndpointBehavior"
binding="webHttpBinding"
contract="WebSite.AjaxService" />
</service>
</services>
<extensions>
<behaviorExtensions>
<add
name="customEndpointBehavior"
type="Framework.MyBehaviorExtensionsElement, Framework, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"/>
</behaviorExtensions>
</extensions>
</system.serviceModel>
</code></pre>
<p>At runtime, this works perfectly. The AJAX enabled WCF service correctly uses my custom configured endpoint behavior.</p>
<p>The problem is when I try to add a new AJAX WCF service. If I do Add -> New Item... and select "AJAX-enabled WCF Service," I can watch it add the .svc file and codebehind, but when it gets to updating the web.config file, I get this error:</p>
<blockquote>
<p>The configuration file is not a valid configuration file for WCF Service Library.</p>
<p>The type 'Framework.MyBehaviorExtensionsElement, Framework, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' registered for extension 'customEndpointBehavior' could not be loaded.</p>
</blockquote>
<p>Obviously the configuration is entirely valid since it works perfectly at runtime. If I remove the element from my behavior configuration temporarily and then add the AJAX-enabled WCF Service, everything goes without a hitch.</p>
<p>Unfortunately, in a larger project where we will have multiple services with various configurations, removing all of the custom behaviors temporarily is going to be error prone. While I realize I could go without using the wizard and do everything manually, not everyone can, and it'd be nice to be able to just use the product as it was meant to be used - wizards and all.</p>
<p><strong>Why isn't my custom WCF behavior extension element type being found?</strong></p>
<p>Updates/clarifications:</p>
<ul>
<li>It does work at runtime, just not design time.</li>
<li>The Framework assembly is in the web project's bin folder when I attempt to add the service.</li>
<li>While I could add services manually ("without configuration"), I need the out-of-the-box item template to work - that's the whole goal of the question.</li>
</ul>
<p><a href="https://connect.microsoft.com/wcf/feedback/ViewFeedback.aspx?FeedbackID=386511" rel="nofollow">I filed this issue on Microsoft Connect</a> and it turns out you either have to put your custom configuration element in the GAC or put it in the IDE folder. They won't be fixing it, at least for now. I've posted the workaround they provided as the "answer" to this question.</p>
http://stackoverflow.com/questions/169342/why-isnt-my-custom-wcf-behavior-extension-element-type-being-found/443459#4434591Answer by Travis Illig for Why isn't my custom WCF behavior extension element type being found?Travis Illig2009-01-14T15:54:44Z2009-01-14T15:54:44Z<p>Per <a href="http://connect.microsoft.com/wcf/feedback/Workaround.aspx?FeedbackID=386511" rel="nofollow">the workaround</a> that Microsoft posted on <a href="http://connect.microsoft.com/wcf/feedback/ViewFeedback.aspx?FeedbackID=386511" rel="nofollow">the Connect issue</a> I filed for this, it's a known issue and there won't be any solution for it, at least in the current release:</p>
<blockquote>
<p>The reason for failing to add a new
service item: When adding a new item
and updating the configuration file,
the system will try to load
configuration file, so it will try to
search and load the assembly of the
cusom extension in this config file.
Only in the cases that the assembly is
GACed or is located in the same path
as vs exe (Program Files\Microsoft
Visual Studio 9.0\Common7\IDE), the
system can find it. Otherwise, the
error dialog will pop up and "add a
new item" will fail. </p>
<p>I understand your pain points.
Unfortunately we cannot take this
change in current release. We will
investigate it in later releases and
try to provide a better solution
then,such as providing a browse dialog
to enable customers to specify the
path, or better error message to
indicate some work around solution,
etc...</p>
<p>Can you try the work around in current
stage: GAC your custom extension
assembly or copy it to "Program
Files\Microsoft Visual Studio
9.0\Common7\IDE"?</p>
<p>We will provide the readme to help
other customers who may run into the
same issue.</p>
</blockquote>
<p>Unfortunately, it appears I'm out of luck on this one.</p>
http://stackoverflow.com/questions/377551/physicalinstalled-path-of-dll-installed-to-the-gac/382318#3823182Answer by Travis Illig for (Physical)(Installed) path of DLL installed to the GAC.Travis Illig2008-12-19T21:53:01Z2008-12-19T21:53:01Z<p>If something gets put in the GAC, it actually gets copied into a spot under %WINDIR%\assembly, like</p>
<pre><code>C:\WINDOWS\assembly\GAC_32\System.Data\2.0.0.0__b77a5c561934e089\System.Data.dll
</code></pre>
<p>I assume you're seeing something like that when you check the Location of the assembly in question when it's installed in the GAC. That's actually correct. (In .NET 1.1 there was a "Codebase" listed when you looked at a GAC assembly's properties, but that was only to show you where the original file was located when you ran gacutil - it didn't actually indicate what would be loaded.) You can read <a href="http://www.grimes.demon.co.uk/workshops/fusWSFour.htm" rel="nofollow">more about that here</a>.</p>
<p>Long story short, you may not be able to do what you want to do. Instead of looking in relation to some assembly that's being loaded (Assembly.GetExecutingAssembly()), you might want to switch the behavior to look relative to the primary application assembly (Assembly.GetEntryAssembly()) or put the file in some well-known location, possibly based on an environment variable that gets set.</p>
http://stackoverflow.com/questions/359870/localizing-system-generated-status-messages/361207#3612073Answer by Travis Illig for Localizing system generated status messagesTravis Illig2008-12-11T22:18:18Z2008-12-11T22:18:18Z<ul>
<li>Log event identifiers rather than messages.</li>
<li>Capture event specific data along with the event identifier.</li>
<li>When a user views the log, localize the event message based on the unique identifier.</li>
</ul>
<p>The problem you'll run into is if you try to insert dynamic data into the messages in a conversational fashion. For example, if you have to write "No messages found" vs. "One message found" vs. "X messages found" is problematic - in English we have different pluralities for zero, one, and more than one... but it's not necessarily like that in other languages. Things like numbers or dates are less problematic to insert in String.Format form, but you don't want to get in the business of trying to dynamically generate real language in a localized fashion.</p>
<p>I'd recommend following a pattern a lot like the Windows Event Log where you output an event ID, a localized message based on the event ID, and then capturing certain "fields" where you'll localize the field name and the display format of the field, like "Amount: $2.00" or whatever. It may not be the prettiest way to go, but unless you've got a full-time linguist dedicated to this and you intend on accounting for all the little nuances of every language, I'd punt and go with a simpler log output format.</p>
<p>In your given example, you'd separate the log message from the data, like:</p>
<p>Customer failed to finish payment.<br/>
Amount: XX</p>
<p>You'd log a message ID, like "13579" might be the unique ID for the event when a customer fails to finish a payment. Finally, you could store the value as a separate field.</p>
<p>How you go about figuring out how many fields to allocate to an event or how to store the data is... well, an exercise best left to the reader.</p>
http://stackoverflow.com/questions/139852/wcf-customheader-or-messagebody-for-context/248872#2488721Answer by Travis Illig for WCF customheader or messagebody for context?Travis Illig2008-10-30T00:03:32Z2008-10-30T00:03:32Z<p>I would say if it's only one or two operations that need it, make it part of the data contract - sort of like making it a parameter to a method call. If every operation requires it, put it in the header, since it's just as much context as username, roles, tenant, or other authentication information - sort of like something you'd put in a request context (e.g., HttpContext).</p>
http://stackoverflow.com/questions/184272/what-exactly-does-the-word-patch-mean-when-refering-to-submitting-a-patch/184297#1842970Answer by Travis Illig for What exactly does the word Patch mean when refering to 'submitting a patch'?Travis Illig2008-10-08T18:53:17Z2008-10-08T18:53:17Z<p>Generally it implies submitting a unified diff file with the aggregate changeset for a feature. You can <a href="http://en.wikipedia.org/wiki/Patch_(Unix)" rel="nofollow">read more about patches on Wikipedia</a>. Several version control systems (svn, git, etc.) will create a patch file for you based on a changeset.</p>
http://stackoverflow.com/questions/180743/system-outofmemoryexception-using-c-on-a-large-data-set/184198#1841983Answer by Travis Illig for System.OutOfMemoryException using C# on a large data setTravis Illig2008-10-08T18:35:06Z2008-10-08T18:35:06Z<p>I might recommend creating the MDB file and using a DataReader to stream the records into the MDB rather than trying to read in and cache the entire set of data locally. With a DataReader, the process is more manual, but you only get one record at a time so you won't fill up your memory.</p>
http://stackoverflow.com/questions/178863/change-theme-css-based-on-user/178949#1789490Answer by Travis Illig for Change Theme / CSS based on userTravis Illig2008-10-07T15:14:21Z2008-10-07T15:14:21Z<p>I think it depends on how savvy your users are about CSS. If they're web developers or have that inclination, having them write CSS is probably fine. If not, you'll either have to generate it statically based on their input and store it in the database OR you can just store the values entered and dynamically generate the CSS using a custom handler.</p>
<p>The custom handler approach would mean you could substitute values right in the middle of the CSS without having to worry about !important or the order in which the items are declared to ensure proper overrides happen.</p>
http://stackoverflow.com/questions/174863/how-to-turn-off-warning-for-no-xml-comment-in-vs-2005/174896#1748960Answer by Travis Illig for How to turn off warning for no xml comment in VS 2005Travis Illig2008-10-06T15:57:28Z2008-10-06T15:57:28Z<p>You can either turn off the documentation generation for the whole project in the project properties (you'll need to do that for each build configuration), you can disable the warnings on the whole project in the project properties, or you can disable the warning on individual code blocks using the <a href="http://msdn.microsoft.com/en-us/library/441722ys(VS.80).aspx" rel="nofollow">"#pragma warning" directive</a>.</p>
http://stackoverflow.com/questions/174806/using-subversion-with-a-really-really-big-site/174819#1748190Answer by Travis Illig for using subversion with a really really big siteTravis Illig2008-10-06T15:39:54Z2008-10-06T15:39:54Z<p>Subversion only gets diffs/updates, so you only have the full checkout the first time you get it. Later updates you'll only get changes.</p>
<p>To assist in merges, it might be good to have two working copies - one pointed to the main codeline, one pointed at your task branch. That way you don't have to switch your working copy from one Subversion codeline to another - that can be expensive, like checking out the code to begin with.</p>
http://stackoverflow.com/questions/169008/regex-for-parsing-directory-and-filename/169056#1690560Answer by Travis Illig for Regex for parsing directory and filenameTravis Illig2008-10-03T21:57:44Z2008-10-03T21:57:44Z<p>Most languages have path parsing functions that will give you this already. If you have the ability, I'd recommend using what comes to you for free out-of-the-box.</p>
<p>Assuming / is the path delimiter...</p>
<pre><code>^(.*/)([^/]*)$
</code></pre>
<p>The first group will be whatever the directory/path info is, the second will be the filename. For example:</p>
<ul>
<li><strong>/foo/bar/baz.log</strong>: "/foo/bar/" is the path, "baz.log" is the file</li>
<li><strong>foo/bar.log</strong>: "foo/" is the path, "bar.log" is the file</li>
<li><strong>/foo/bar</strong>: "/foo/" is the path, "bar" is the file</li>
<li><strong>/foo/bar/</strong>: "/foo/bar/" is the path and there is no file.</li>
</ul>
http://stackoverflow.com/questions/168931/unit-testing-the-app-config-file-with-nunit/169016#1690160Answer by Travis Illig for Unit testing the app.config file with NUnitTravis Illig2008-10-03T21:43:51Z2008-10-03T21:43:51Z<p>The simplest option is to wrap the methods that read configuration such that you can substitute in values during testing. Create an interface that you use for reading config and have an implementation of that interface get passed in as a constructor parameter or set on the object as a property (as you would using dependency injection/inversion of control). In the production environment, pass in an implementation that really reads from configuration; in the test environment, pass in a test implementation that returns a known value.</p>
<p>If you don't have the option of refactoring the code for testability yet still need to test it, Typemock Isolator provides the ability to actually mock the .NET framework configuration classes so you can just say "next time I ask for such-and-such appSettings value, return this known value."</p>
http://stackoverflow.com/questions/118042/can-you-host-multiple-tenants-on-a-single-asp-net-application-instance-over-ssl1Can you host multiple tenants on a single ASP.NET application instance over SSL?Travis Illig2008-09-22T22:36:54Z2008-09-23T13:14:58Z
<p>I have an ASP.NET application that will host multiple tenants (Software-as-a-Service style). Each tenant will have their own domain name (www.mydomain.com, www.yourdomain.com) and their own SSL certificate.</p>
<p><strong>Is there a way to host the application such that all of the tenants are on the same application <em>instance</em>?</strong></p>
<ul>
<li>I know you can have multiple IIS web sites pointing to the same shared location, but that won't work - it's not the same <em>instance</em>. That's different <em>instances</em> of the same <em>application</em>.</li>
<li>I also know you can use SSL host header mapping with wildcard certificates, but that won't work because all of the tenants would need to be subdomains of the same primary domain - yourdomain.commondomain.com, mydomain.commondomain.com. For the solution to be valid, everyone needs to have their own domain name, not be subdomains. (Ideally each tenant could opt to use an EV cert, too, and you can't have wildcard EV certs.)</li>
</ul>
http://stackoverflow.com/questions/104133/using-multiple-web-projects-with-different-languages-in-visual-studio/104144#1041441Answer by Travis Illig for Using multiple web projects with different languages in Visual StudioTravis Illig2008-09-19T18:04:37Z2008-09-19T18:04:37Z<p>You can do this using sub-web projects. This has been available in Visual Studio since 2005 and works with the Web Application Project style of web site. <a href="http://weblogs.asp.net/scottgu/archive/2006/08/16/tip_2f00_trick_3a00_-creating-sub_2d00_web-projects-using-the-vs-2005-web-application-project-option.aspx" rel="nofollow">ScottGu has a great blog entry describing the process.</a> You may face some interesting challenges getting pages to commingle in the same folder, but the sub-web project structure should still lend you some ideas.</p>
http://stackoverflow.com/questions/103178/where-can-i-find-microsoft-assemblies-that-are-not-already-in-visual-studio/103539#1035390Answer by Travis Illig for Where can I find Microsoft assemblies that are not already in Visual Studio?Travis Illig2008-09-19T16:38:39Z2008-09-19T16:38:39Z<p>If you're trying to add the assembly to the ".NET" tab in the Visual Studio "Add References" dialog box, there's a registry setting you need to make. <a href="http://support.microsoft.com/kb/306149" rel="nofollow">KB30149 explains it in greater detail.</a> The short version: You need to add an entry to the <code>HKEY_CURRENT_USER\SOFTWARE\Microsoft\.NETFramework\AssemblyFolders</code> registry key.</p>
<p>If you're trying to locate a physical file corresponding to an assembly in the GAC, drop to a command prompt and go to <code>%WINDIR%\Assembly</code> (e.g., <code>C:\WINDOWS\Assembly</code>). Navigate around in there - that's where GAC'd assemblies live.</p>
http://stackoverflow.com/questions/98026/how-can-i-get-that-huge-security-icon-on-my-secure-site/98056#980561Answer by Travis Illig for How can I get that huge security icon on my secure site?Travis Illig2008-09-18T23:38:01Z2008-09-18T23:38:01Z<p>The icon you see is from an Extended Validation Certificate (EV Certificate). They are notoriously higher-priced, though Verisign is not the only certificate authority that sells them. You can find them for around the $500 mark as well. <a href="http://support.microsoft.com/kb/931125" rel="nofollow">Microsoft maintains a list of CAs that work with IE7.</a> I selected two or three at random and found one that would sell me an EV Cert for just under $500.</p>
http://stackoverflow.com/questions/97646/how-do-i-determine-darker-or-lighter-color-variant-of-a-given-color/97937#979378Answer by Travis Illig for How do I determine darker or lighter color variant of a given color?Travis Illig2008-09-18T23:17:01Z2008-09-18T23:17:01Z<p>Rich Newman <a href="http://richnewman.wordpress.com/2007/05/07/using-hsl-color-hue-saturation-luminosity-to-create-better-looking-guis-part-2/" rel="nofollow">discusses HSL color</a> with respect to .NET System.Drawing.Color on his blog and even <a href="http://richnewman.wordpress.com/hslcolor-class/" rel="nofollow">provides an HSLColor class</a> that does all the work for you. Convert your System.Drawing.Color to an HSLColor, add/subtract values against the Luminosity, and convert back to System.Drawing.Color for use in your app.</p>
http://stackoverflow.com/questions/97511/guides-on-writing-documentation/97834#978344Answer by Travis Illig for Guides on writing documentationTravis Illig2008-09-18T22:58:53Z2008-09-18T22:58:53Z<p>In many cases, writing documentation about using an app bears a lot of similarity to writing any sort of how-to documentation, so you can use a lot of "standard writing" sorts of resources to assist you with the technical aspects of writing (grammar, structure, etc.).</p>
<p>A key thing you need to do is choose your audience. Are you writing API doc for developers on the system? End user documentation for the folks consuming the system? Administration documentation for the people deploying and maintaining the system? All of the above? It may be that you write a different type of documentation for each of those audiences.</p>
<p>In many languages, you can handle API documentation by documenting the code inline and extracting the documentation later into a central location. For example, C# offers XML documentation that can be rendered with a tool called Sandcastle and there's a tool called RDoc to extract comments from Ruby script and generate nice documentation. I'd recommend using this sort of approach if it's available to you because it's very easy to remember to change the API doc when you change the code if all of it travels around together.</p>
<p>For end users, a very clean presentation with a good organization will be key, so a more static-looking web site, PDF, or DOC file will be in order. You don't want to make the end user work to follow random trains of thought through something like a wiki. (My mom, for example, would give up using the system if all the doc was in a wiki - it's not friendly to non-techies.) Lots of screen shots, lots of guidance, and focus on how-to for common tasks. "How do I modify my user profile?" sorts of things.</p>
<p>For administrators, it'll be similar to end-user documentation, possibly with even more task-based focus for common admin tasks, but here it's okay to get more technical. Admin docs might be OK in a wiki sort of format, but I still might look at a more static web site than something that the community can mark up too much and confuse people with.</p>
<p>For developers, a wiki is great. You can throw your how-to stuff up there, links to the API docs, and let people thrive in a more self-help, deep tech sort of environment. The ability to contribute commentary, in some cases, might even be a key feature - if someone solves a problem or finds a defect, you'll want them to be able to add doc that explains workarounds or easy solutions to common issues. (It'll also help you improve the product from the back-end perspective.)</p>
<p>In all cases, I'd say look at existing doc you've read and like. Try to follow some of the patterns you've seen - what did you like about it? Do that.</p>
<p>All of that said, I can't stress enough the basics of writing. Good grammar, proper punctuation, correct spelling - these things don't sound important, but it definitely has a subconscious effect, if not a conscious one. Try buying a product and reading through the doc. If it's written poorly and has bad grammar and spelling, does it give you a sense of confidence in the product? No, it doesn't have an impact on the actual technical functionality, but it does impact the reader's psychological perspective, and maybe that's enough. On the other hand, reading through nicely written documentations with good illustration and proper grammar spelling... that gives the reader confidence.</p>
http://stackoverflow.com/questions/97528/custom-url-extensions-routing-without-iis-access/97736#977360Answer by Travis Illig for Custom URL Extensions/Routing Without IIS AccessTravis Illig2008-09-18T22:42:23Z2008-09-18T22:42:23Z<p>The 404 page really is your only option if you can't map the requests. I've seen several blog packages that do this to enable magic URLs like .../archive/YYYY/MM/DD and such - there's no such page, so it hits the 404 page and the 404 page does the redirection.</p>
http://stackoverflow.com/questions/97312/how-do-i-find-out-what-directory-my-console-app-is-running-in-with-c/97343#973433Answer by Travis Illig for How do I find out what directory my console app is running in with C#?Travis Illig2008-09-18T21:47:26Z2008-09-18T21:47:26Z<p>In .NET, you can use System.Environment.CurrentDirectory to get the directory from which the process was started. System.Reflection.Assembly.GetExecutingAssembly().Location will tell you the location of the currently executing assembly (that's only interesting if the currently executing assembly is loaded from somewhere different than the location of the assembly where the process started).</p>
http://stackoverflow.com/questions/96780/why-is-visual-studio-constantly-crashing/96890#968903Answer by Travis Illig for Why is Visual Studio constantly crashing?!Travis Illig2008-09-18T20:59:00Z2008-09-18T20:59:00Z<p>Try deleting your .user and .suo files - these are the user options files that VS creates. You get a .user file for each project and a .suo file for your solution. When they get corrupted, odd things happen. Deleting them will make you lose little things like which project is selected as the startup project when you start debugging, but it usually clears up odd behavior like this.</p>
<p>You may also want to clear out any temporary file locations, like the Temporary ASP.NET Files folders (if you're working in ASP.NET) just in case something odd is being cached somewhere.</p>
http://stackoverflow.com/questions/96718/organizing-extension-methods/96788#967886Answer by Travis Illig for Organizing Extension MethodsTravis Illig2008-09-18T20:48:31Z2008-09-18T20:48:31Z<p>I organize extension methods using a combination of namespace and class name, and it's similar to the way you describe in the question.</p>
<p>Generally I have some sort of "primary assembly" in my solution that provides the majority of the shared functionality (like extension methods). We'll call this assembly "Framework" for the sake of discussion.</p>
<p>Within the Framework assembly, I try to mimic the namespaces of the things for which I have extension methods. For example, if I'm extending System.Web.HttpApplication, I'd have a "Framework.Web" namespace. Classes like "String" and "Object," being in the "System" namespace, translate to the root "Framework" namespace in that assembly.</p>
<p>Finally, naming goes along the lines you've specified in the question - the type name with "Extensions" as a suffix. This yields a class hierarchy like this:</p>
<ul>
<li>Framework (namespace)
<ul>
<li>Framework.ObjectExtensions (class)</li>
<li>Framework.StringExtensions (class)</li>
<li>Framework.Web (namespace)
<ul>
<li>Framework.Web.HttpApplicationExtensions (class)</li>
</ul></li>
</ul></li>
</ul>
<p>The benefit is that, from a maintenance perspective, it's really easy later to go find the extension methods for a given type.</p>
http://stackoverflow.com/questions/96160/web-dev-where-to-store-state-of-a-shopping-cart-like-object/96401#964011Answer by Travis Illig for Web Dev - Where to store state of a shopping-cart-like object? Travis Illig2008-09-18T20:11:46Z2008-09-18T20:18:19Z<p>I'd say store the state somewhere on the server and correlate it to the user's session. While a cookie could ostensibly be an equal place to store things, if you consider security and data size, keeping as much data on the server as possible becomes a good thing.</p>
<p>For example, in a public terminal setting, would it be OK for someone to look at the contents of the cookie and see the list? If so, cookie's fine; if not, you'll just want an ID that links the user to the data. Doing that would also allow you to ensure the user is authenticated to the site in order to get to that data rather than storing everything on the machine - they'd need some form of credentials <em>as well as</em> the session identifier.</p>
<p>From a size perspective, sure, you're not going to be too concerned about a 4K cookie or something for a browser/broadband user, but if one of your targets is to allow a mobile phone or BlackBerry (not on 3G) to connect and have a snappy experience (and not get billed for the data), minimizing the amount of data getting passed to the client will be key.</p>
<p>The server storage also gives you some flexibility mentioned in some of the other answers - the user can save their cart on one machine and resume working with it on another; you can tie the cart to some form of credentials (rather than a transient session) and persist the cart long after the user has cleared their cookies; you get a little more in the way of fault tolerance - if the user's browser crashes, the site still has the data safe and sound.</p>
<p>If fault tolerance is important, you'll need some sort of persistent store like a database. If not, in application memory is probably fine, but you'll lose data if the app restarts. If you're in a farm environment, the store has to be centrally accessible, so you're again looking at a database.</p>
<p>Whether you choose to key by transient session or by credentials is going to depend on whether the users can save their data and come back later to get it. Transient session will eventually get cleaned up as "abandoned," and maybe that's OK. Tying to a user profile will let the user keep their data and explicitly abandon it. Either way, I'd make use of some sort of backing store like a database for fault tolerance and central accessibility. (Or maybe I'm overengineering the solution?)</p>
http://stackoverflow.com/questions/118042/can-you-host-multiple-tenants-on-a-single-asp-net-application-instance-over-sslComment by Travis Illig on Can you host multiple tenants on a single ASP.NET application instance over SSL?Travis Illig2008-12-04T16:29:50Z2008-12-04T16:29:50ZAs of today (Dec 4 2008) I have not found a solution that didn't involve decrypting the content before it hit the web server and forwarding on the decrypted (or re-encrypted) request. Unfortunately, for my issue, that sort of solution isn't really an option. So... no solution yet.http://stackoverflow.com/questions/246791/invoking-asynchronous-call-in-a-c-web-serviceComment by Travis Illig on Invoking asynchronous call in a C# web serviceTravis Illig2008-10-29T23:44:25Z2008-10-29T23:44:25ZCan you maybe provide a code snippet showing what you're talking about? There seems to be some confusion about what you have, what is currently asynchronous, and what you're trying to achieve.http://stackoverflow.com/questions/169342/why-isnt-my-custom-wcf-behavior-extension-element-type-being-found/180262#180262Comment by Travis Illig on Why isn't my custom WCF behavior extension element type being found?Travis Illig2008-10-08T18:21:21Z2008-10-08T18:21:21ZUnfortunately, that's not really an option.http://stackoverflow.com/questions/169342/why-isnt-my-custom-wcf-behavior-extension-element-type-being-found/170981#170981Comment by Travis Illig on Why isn't my custom WCF behavior extension element type being found?Travis Illig2008-10-06T15:37:59Z2008-10-06T15:37:59ZThe Framework assembly is available in the bin folder at design time. VS just doesn't seem to find it.http://stackoverflow.com/questions/169008/regex-for-parsing-directory-and-filename/169021#169021Comment by Travis Illig on Regex for parsing directory and filenameTravis Illig2008-10-03T21:59:08Z2008-10-03T21:59:08ZThis one assumes that there is a path and not just a filename.