User Chris - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T08:55:02Z http://stackoverflow.com/feeds/user/1212 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1790085/resharper-gotchas/1790426#1790426 1 Answer by Chris for Resharper gotchas Chris 2009-11-24T14:29:01Z 2009-11-24T14:29:01Z <p>When I run across preprocessor directives that use #ifs to do conditional compilation, and the current configuration is set so that a block of code is hidden, it doesn't seem to see the #if'd code and will recommend yanking out a variable that block of code uses, thinking it's never called.</p> http://stackoverflow.com/questions/1723786/object-oriented-design-saving-complex-objects 1 Object-oriented design: Saving complex objects Chris 2009-11-12T17:05:05Z 2009-11-12T17:32:03Z <p>I have a complex domain model built on top of a legacy system that I've built most of the "get" methods for - typically just by passing around database primary key IDs. Easy enough. I'm now curious how to approach the task of creating new objects in the database and saving existing ones with new data and want to make sure I cover all my bases.</p> <p>The main domain objects that correspond to entities in the database number around 20-25 for the entire project. About 10 or so will need to be saved (the rest are just there for supporting data and don't need updating by the user). The objects to be saved have complex dependencies - object A has a list of object B which contains objects C, D, and E, for example, all of which might need to be saved when the original object A is.</p> <p>I'd like to build it so it's easy to use by the UI developer, but also enforces that only valid data gets saved (let's say maybe object B cannot save unless object C is in a valid state). This makes me shy away from allowing them to create an object from scratch and attempt to save it - I want to follow the principle that objects should only ever be alive in a valid state.</p> <p>The other alternative is exposing "CreateNew" and "Save" methods on the service objects that handle them, but the parameter list for such methods would be egregious.</p> <p>I'm thinking of requiring "CreateNew" and "Save" to accept something like a command object that they can create and pass so they know exactly what data is needed and what they can't try to control. I read up on the <a href="http://en.wikipedia.org/wiki/Command%5Fpattern" rel="nofollow">command pattern</a> but I don't need any of the main perks it provides.</p> <p>What considerations should I have to decide on an approach? This is C#3.5, if that factors into it at all.</p> http://stackoverflow.com/questions/1637550/oop-design-string-enum-interface-or-other 0 OOP design: string, enum, interface, or other? Chris 2009-10-28T14:21:17Z 2009-10-28T14:49:15Z <p>I'm starting on a project that pulls data from and writes back to a legacy system database. I've started on the domain model and am trying to improve this design over past systems, so I'd like some feedback on this one.</p> <p>This example is arbitrary, so no need for specific advice there, but let's say there's a table in the database called "WorkflowStep" that I'm writing a class for. There's a column in the table called "CurrentStatus" that defines what state the workflow is in. It's stored as a varchar. There are five distinct strings in the entire table for this column, and aren't likely to be changed...values like "Open," "Closed," "On Hold," and so on.</p> <p>The class needs to track this value, but in what fashion? I could go the easy route and just store it in a string, but that's not very well-defined and I'd envision future developers hunting for distinct values of the string to apply logic against. I could go with an enum to make things more well-defined, but that could lead into switch/case hell all over the place. I've read approaches where engineers make an interface, say "IStatus," and then make concrete classes that represent each possible state of the status, but some other columns in the same situation as this one could have a hundred distinct values, so 100 classes for each state seems like overkill.</p> <p>My main question: is one approach de-facto better than the others, and if not, what should I consider in order to choose an approach? </p> <p>Note that the project is still in its infancy and I'm not sure exactly how this "status" attribute of the class will be used. It could be for nothing, or it could prove vital: I'm not sure yet. </p> http://stackoverflow.com/questions/1625188/handling-net-object-relational-impedence-mismatch-in-a-special-case 0 Handling .NET object-relational impedence mismatch in a special case Chris 2009-10-26T14:34:56Z 2009-10-26T14:42:59Z <p>I would like to abstract out pure SQL calls in my code as much as possible. I'd like to research nHibernate or LINQ-to-SQL, but I'm wondering how the scenario I'm dealing with affects my decisions.</p> <p>The database I'm reading from is a legacy database, and I can't change its schema or anything - I'm stuck with what's there. The bigger problem comes in with writing back to it - it has to call a business layer via XML. I can't write directly to the database at all. So though I'm using SQL to pull data out of it, I'm using XML to hit a web service to write back to it. </p> <p>What sort of technologies or engineering approaches can I use to provide some sort of abstraction and/or make my life easier, if any?</p> http://stackoverflow.com/questions/1600553/in-what-order-should-i-place-properties-events-functions-function-overrides-e/1600878#1600878 2 Answer by Chris for In what order should I place properties, events, functions, function overrides, etc. in C# classes? Chris 2009-10-21T13:32:58Z 2009-10-21T13:32:58Z <p>Whatever <a href="http://code.msdn.microsoft.com/sourceanalysis" rel="nofollow">StyleCop</a> tells me to. :)</p> http://stackoverflow.com/questions/1596727/any-gotchas-with-remotely-coded-locally-run-net-web-apps-on-xp-machines 0 Any "gotchas" with remotely-coded, locally-run .NET web apps on XP machines? Chris 2009-10-20T19:13:32Z 2009-10-20T19:32:38Z <p>It looks like I am going to be on a project where, for deadline and expertise reasons, we are going to code a web app (.NET 3.5) that will be deployed to enterprise laptops to be run locally. Since my experience with developing web apps has only been with centralized servers that I can immediately jump on and take control of, I'm trying to look ahead to see what problems with this approach I need to take into consideration. Some concerns that come to mind:</p> <ul> <li>Does the IIS version on XP present any large-scale problems?</li> <li>How do we deploy metabase changes to IIS instances on the laptops and enforce their update?</li> <li>For that matter, how should the code be deployed in general? Small client application that polls for updates and pulls down the needed binaries and forces an IIS recycle?</li> </ul> <p>Client-app-versus-local-web-app conversation aside, can you think of any other problems that might show up with this approach?</p> http://stackoverflow.com/questions/1544410/enable-http-keep-alive-in-iis-cause-disruption 0 "Enable HTTP Keep-Alive" in IIS cause disruption? Chris 2009-10-09T15:08:27Z 2009-10-09T15:18:26Z <p>I have a production web site in IIS 6 where I need to change the value of the "Enable HTTP Keep-Alive" checkbox. Will that cause production disruptions? Recycles, app domain restarts, or similar?</p> http://stackoverflow.com/questions/1500104/offline-synchronization-options-with-net 3 Offline synchronization options with .NET Chris 2009-09-30T19:11:02Z 2009-09-30T19:24:02Z <p>I've been asked to research approaches to deal with an app we're supposed to be building. This app, hypothetically a Windows form written in C#, will issue commands directly to the server if it's connected, but if the app is offline, the state must be maintained as if it was connected and then sync up and issue data changes/commands to the server once it <strong>is</strong> connected. </p> <p>I'm not sure where to start looking. This is something akin to Google Gears, but I don't think I have that option if we go a Winform route (which looks likely, given that there are other functions the application needs that a web app couldn't perform). Is the <a href="http://msdn.microsoft.com/en-us/sync/default.aspx" rel="nofollow">Microsoft Sync framework</a> a viable option? Does Silverlight do anything like this? Any other options? I've Googled around a bit but would like the community input on what's best given the scenario.</p> http://stackoverflow.com/questions/700833/what-standards-does-your-team-enforce-for-a-major-version-code-deployment 12 What standards does your team enforce for a major-version code deployment? Chris 2009-03-31T13:03:01Z 2009-09-21T06:25:19Z <p>I'm curious as to what sort of standards other teams make sure is in place before code ships (or deploys) out the door in major releases.</p> <p>I'm not looking for specific answers to each, but here's an idea of what I'm trying to get an idea of.</p> <ul> <li>For server-based apps, do you ensure monitoring is in place? To what degree...just that it responds to ping, that it can hit all of its dependencies at any given moment, that the logic that the app actually services is sound (e.g., a service that calculates 2+2 actually returns "4")</li> <li>Do you require automated build scripts before code is released? Meaning, any dev can walk onto a new box, yank something from source control, and start developing? Given things like an OS and IDE, of course.</li> <li>How about automated deployment scripts, for server-based apps?</li> <li>What level of documentation do you require for a project to be "done?"</li> <li>Do you make dang sure you have a full-fledged backup plan for all of the major components of the system, if it's server-based?</li> <li>Do you enforce code quality standards? Think StyleCop for .NET or cyclomatic complexity evaluations.</li> <li>Unit testing? Integration tests? Performance load testing?</li> <li>Do you have standards for how your application's error logging is handled? How about error notification?</li> </ul> <p>Again, not looking for a line-by-line punchlist of answers to anything above, necessarily. In short, <strong>what non-coding items must a code release have completed before it's officially considered "done" for your team?</strong></p> http://stackoverflow.com/questions/1396350/asp-net-and-javascript-dynamic-show-hide-based-on-other-form-fields 0 ASP.NET and JavaScript dynamic show/hide based on other form fields Chris 2009-09-08T21:11:00Z 2009-09-08T21:40:48Z <p>I seem to keep running into these complex show/hide scenarios in ASP.NET web forms where the logic goes "if Field A equals blah, and Field B equals blahblah, then Field C is shown/hidden/validated/whatever." Before I run off and start building custom validators and custom controls so I can more easily manage it in markup or backend code, are there any libraries or simpler solutions I'm missing out there in the wild? jQuery makes the job easier, but I get the feeling I could abstract a lot of what I'm wrangling with out into a more elegant solution.</p> <p>All of the controls that are dependent on each other or could trigger events are my own custom controls already, so I get the feeling I could start writing a small framework to handle it like so:</p> <pre><code>&lt;my:DynamicShowHide runat="server"&gt; &lt;PrerequisiteFields&gt; &lt;PrerequisiteField ControlId="FieldA" Value="blah" /&gt; &lt;PrerequisiteField ControlId="FieldB" Value="blahblah" /&gt; &lt;/PrerequisiteFields&gt; &lt;DependentFields&gt; &lt;DependentField ControlId="FieldC" /&gt; &lt;/DependentFields&gt; &lt;/my:DynamicShowHide&gt; </code></pre> <p>...that way if the Prerequisite values were both evaluated as true, the DependentField would show, and hide if not.</p> <p>It seems (and feels) like I'm overengineering but I run into insanely large and complex decision trees like this more and more often. Anyone know of a better way or an existing library that does something along these lines?</p> http://stackoverflow.com/questions/1260578/rewriting-a-system-from-scratch-what-do-you-include-in-proposals 3 Rewriting a system from scratch: what do you include in proposals? Chris 2009-08-11T14:02:44Z 2009-08-11T14:53:38Z <p>Let's say I have an older system/framework that's showing its age a bit, but will soon be leveraged to do much more than it was first intended to do. It's a web app that didn't have a lot of common codebehind in it, so I've proposed that it will be less man-hour effort in the long run to rebuild it using more forward-looking code, with an eye for reducing maintenance effort (I've owned the legacy system for some time now and believe this to be true). Keep in mind the architecture of the legacy system does end up requiring a lot of troubleshooting and TLC: I don't care that it's not "pretty" or written "properly" if it works, but it doesn't "just work" as it is right now. I've done rewrites before successfully with a similar system, and it looks like the powers that be are open to me doing it, provided I propose it correctly.</p> <p>So now it's up to me to sell the idea. The previous system I mentioned I successfully rewrote was nothing formal, sort of an in-my-spare-time, but this has immediate impact on project timelines if I spend some upfront time in the rewrite. This means I better know my stuff. Having not officially justified a complete rewrite before, I'd like ideas on how to pitch it.</p> <p>Immediately I'll need to scope the rewrite, of course, but after that it's fuzzy. It'd help to have numbers proving the maintenance costs and savings after the rewrite, but that's tricky to estimate. Anything else?</p> http://stackoverflow.com/questions/1260273/am-i-being-unreasonable-in-rejecting-candidates-with-poor-spelling-and-grammar/1260311#1260311 9 Answer by Chris for Am I being unreasonable in rejecting candidates with poor spelling and grammar? Chris 2009-08-11T13:19:53Z 2009-08-11T13:19:53Z <p>Attention to detail notwithstanding, if their written communication is otherwise poor, that's a big drawback as well. Programmers who can communicate well, whether verbally or in writing, are a breath of fresh air.</p> <p>See Jeff Atwood's "<a href="http://www.codinghorror.com/blog/archives/000616.html" rel="nofollow">Is Writing More Important than Programming?</a>"</p> http://stackoverflow.com/questions/1234829/why-do-so-many-sites-disallow-the-use-of-non-alphanumeric-characters-in-passwords 6 Why do so many sites disallow the use of non-alphanumeric characters in passwords? Chris 2009-08-05T18:11:07Z 2009-08-08T07:44:14Z <p>When going through registration, a lot of sites will disallow the use of symbols in passwords. This drives me up the wall from a usability perspective since I include multiple symbols in all my passwords, and as a programmer that deals with web authentication from time to time, I can't figure out why it wouldn't be allowed. Am I missing something? Are they worried about SQL injection? Don't want to deal with escaping characters? Or is there something with non-Latin-alphabet characters that can mess things up?</p> <p>Similar question, about sites that restrict length <a href="http://stackoverflow.com/questions/702421/why-restrict-the-length-of-a-password">here</a>.</p> http://stackoverflow.com/questions/1201867/windows-workflow-why-do-they-get-stuck-in-persistence 1 Windows Workflow: Why do they get stuck in persistence? Chris 2009-07-29T17:35:50Z 2009-08-04T13:59:57Z <p>I have a Windows Workflow instance that's using SQL persistence, being hosted in the web runtime, since the workflows are started by ASP.NET form submissions. It runs great most of the time, but I've noticed instances where I have to kick things:</p> <p>I notice the nextTimer has gone way overdue, even by hours. Sometimes the ownerID and ownedUntil fields are null in the persistence database, sometimes not. The "unlocked" and "blocked" fields are always both "1".</p> <p>...and then the workflow runtime doesn't pick it back up until I null out the "owner" fields if they're populated and kick the application pool with a recycle, and things go along just fine after that for the most part. There are no errors (I have try/catch blocks around everything and write out anything caught into a trace file), so that's not it.</p> <p>The delay activities causing the persistence are all set to one minute, and the ownership duration for the runtime is 60 seconds as well. The code that it gets stuck on should always take less than a minute.</p> <p>As I write this, I'm curious if recycles of the app pool/app domain are causing it...when the workflow tries to call whatever method in the runtime, it's busy spinning up the app domain/pool and might leak over the 60 seconds ownership duration. That sound remotely plausible, and would that cause it to not rehydrate properly?</p> <p>Barring that sidetrack, what could cause this behavior I'm seeing? I don't want to babysit the runtime every day by unsticking stuck workflows.</p> http://stackoverflow.com/questions/26762/perforce-in-a-microsoft-shop 5 Perforce in a Microsoft Shop Chris 2008-08-25T20:17:10Z 2009-07-28T03:29:17Z <p>Our dev shop currently uses Visual SourceSafe. We all know how that could end up (badly), so we're investigating other systems. First up is Perforce. Does anyone have experience with using it and its integration into Visual Studio (2003/2005/2008)? Is it as good as any other, or is it pretty solid with good features, comparatively?</p> http://stackoverflow.com/questions/1065566/windows-workflow-custom-persistence-service-same-schema-and-logic 0 Windows Workflow: Custom persistence service, same schema and logic? Chris 2009-06-30T19:35:37Z 2009-07-12T20:06:35Z <p>So I've been using the Windows Workflow default SQL persistence service that handles everything on its own with no fuss. Now, one of the environments I deploy to does not have direct access to the database; it pushes stored procedure calls through a web service over a proxy for added security. This of course does not please the SQL persistence gods, though I'd like to be able to leverage it from that environment. So really the only difference I have between the default behavior and potentially the one I code for our environment would be another way of calling the stored procedures: remotely instead of direct access (the web service shuffles datasets back and forth).</p> <p>If you were to go about solving this problem so you could leverage the persistence services, what would you do? Theoretically I'd like to keep all the same tables and procedures, but I can't find a good reference as to what I need to call the stored procedures with.</p> http://stackoverflow.com/questions/1110812/is-in-process-the-only-way-classic-asp-can-store-session-state 1 Is in-process the only way classic ASP can store session state? Chris 2009-07-10T17:17:24Z 2009-07-11T00:35:45Z <p>I know it's a simple question, but I can't seem to drag it out of Google noise. I know .NET can use a session state service or a SQL database to back its session state, but I don't know if ASP offers any out-of-process options for storing it. Does it have any, or am I stuck with losing session variables on ASP applications when a load-balanced server is taken offline?</p> http://stackoverflow.com/questions/33469/caching-patterns-in-asp-net 5 Caching Patterns in ASP.NET Chris 2008-08-28T21:43:16Z 2009-07-10T08:52:19Z <p>So I just fixed a bug in a framework I'm developing. The pseudo-pseudocode looks like this:</p> <pre><code>myoldObject = new MyObject { someValue = "old value" }; cache.Insert("myObjectKey", myoldObject); myNewObject = cache.Get("myObjectKey"); myNewObject.someValue = "new value"; if(myObject.someValue != cache.Get("myObjectKey").someValue) myObject.SaveToDatabase(); </code></pre> <p>So, essentially, I was getting an object from the cache, and then later on comparing the original object to the cached object to see if I need to save it to the database in case it's changed. The problem arose because the original object is a reference...so changing someValue also changed the referenced cached object, so it'd never save back to the database. I fixed it by cloning the object off of the cached version, severing the reference and allowing me to compare the new object against the cached one.</p> <p>My question is: <strong>is there a better way to do this, some pattern, that you could recommend?</strong> I can't be the only person that's done this before :)</p> http://stackoverflow.com/questions/935244/nunit-the-process-cannot-access-the-file-because-it-is-being-used-by-anothe 2 NUnit: "The process cannot access the file ... because it is being used by another process." Chris 2009-06-01T15:10:26Z 2009-07-09T03:32:40Z <p>I'm using the NUnit GUI version, and it started to get upset at me when I have a test project loaded in there trying to test things. If I make a change in Visual Studio, and then try to rebuild the solution, it throws the error "Unable to copy file obj\Debug\foo.dll to bin\Debug\foo.dll. The process cannot access the file bin\Debug\foo.dll because it is being used by another process."</p> <p>This is the DLL I have loaded into the GUI, of course. It used to be OK, and just refresh the project reference after a build, but now it seems to be blocking it. How can I get back to that behavior?</p> <p>I've tried enabling/disabling the shadow copy setting by the way, with the same results either way.</p> <p>VS2008 SP1 and NUnit 2.4.8, if that matters.</p> http://stackoverflow.com/questions/1094120/will-creating-a-new-app-pool-disrupt-anything-in-iis-6 0 Will creating a new app pool disrupt anything in IIS 6? Chris 2009-07-07T18:52:31Z 2009-07-07T18:55:33Z <p>I have a website in IIS 6, let's call it "WebSite1." I have a virtual application underneath it, let's call it "VirtualApp1." Both of these are set up to use the same application pool, "AppPool1." I want to create a new application pool, "NewAppPool," and switch VirtualApp1 to using it, while leaving the rest of WebSite1 running under AppPool1.</p> <p>Will doing this cause disruption to anything in WebSite1? I know it will most likely trash VirtualApp1's appdomain, but I want to know if it's going to cause any appdomain/pool recycles that would disrupt WebSite1.</p> http://stackoverflow.com/questions/1039072/visual-studio-references-in-code-not-recognized 2 Visual Studio: references in code not recognized? Chris 2009-06-24T15:22:55Z 2009-06-24T15:44:22Z <p>I have a solution in VS2008 (C#) that contains multiple projects. I just retooled some of the .csproj files for our build process, and suddenly while coding Project B won't recognize references from Project A in the class code...think the red squiggly lines under a variable type I've created. However, building the solution generates no errors. Why's it behaving like this?</p> http://stackoverflow.com/questions/700795/functional-server-naming-conventions 2 Functional Server Naming Conventions Chris 2009-03-31T12:54:13Z 2009-06-20T16:35:40Z <p>I've seen "<a href="http://stackoverflow.com/questions/262657/the-coolest-server-names-closed">The Coolest Server Names</a>," and I've seen another <a href="http://stackoverflow.com/questions/631220/good-server-naming-convention">smaller-ish question</a> related to mine, which was unfortunately closed.</p> <p>It's a serious question though, as I'm on an internal applications dev team that manages the apps on a couple dozen servers. The networking folks typically don't care what we call the servers as long as they know about 'em, so we can come up with whatever conventions.</p> <p>The apps the servers deal with can be home-grown custom apps, or they can be larger vendor ones like SharePoint. They can be:</p> <ul> <li>In multiple networking environments that can't speak to each other (think firewalled-off external servers versus intranet-esque servers)</li> <li>In different physical locations (California office versus New York, etc.)</li> <li>In multiple deployment tiers (production, staging, testing, dev)</li> <li>Have one or many functions (web server, DB server, mail server, app server)</li> <li>Load-balanced or not</li> <li>Standby (for disaster recovery purposes) or primary</li> </ul> <p>Whew! Think it's even possible to come up with a convention that can address all of these aspects, or significant ones? It'd be nice to hear a server name (or DNS entry for it) and be able to immediately know what it does, and it works for getting new guys up to speed as well. "sharepoint-IPC-1 is down" could be parsed into "the internal production SharePoint web server in the California datacenter that's the first node in the load balancing is down!"...but that seems overly complicated at first glance.</p> <p>Another thing in the back of my mind is that an old mail relay server is getting decommissioned, which means we have to scour through a lot of old apps to repoint hardcoded server values (I know... :).</p> http://stackoverflow.com/questions/470134/can-perforce-and-sourcesafe-co-exist-in-visual-studio 1 Can Perforce and SourceSafe co-exist in Visual Studio? Chris 2009-01-22T17:41:08Z 2009-06-20T00:48:57Z <p>Visual Studio 2008, to be more specific. We're testing out moving to Perforce for source control, so I'd like to install the P4SCC plugin to monkey around with. However, I'd also like to continue using SourceSafe's IDE capabilities for projects that haven't been moved over yet. Can the two co-exist peacefully, or is it one or the other for a specific install of VS?</p> http://stackoverflow.com/questions/987041/net-centralizing-split-configuration 0 .NET: centralizing split configuration Chris 2009-06-12T14:47:51Z 2009-06-13T14:02:12Z <p>Let's say I have a large .NET solution that has some data access projects that are used by a couple of other project types, like a console app and a web app. I want them to both be able to use the data access project, but the data access app has to grab configuration from its configuration file...so web.config for the web project and app.config for the console/service apps. This makes me have to maintain configuration in two or more separate config files, something that I don't like. <strong>What's the best way to get them into a centralized location?</strong></p> <p>I want it to still be lightweight, so a configuration database might be overkill. I'm thinking maybe a centralized config file that gets copied by the build process to web.config/app.config when the respective projects are built, but I wanted to make sure I'm not missing another best practice somewhere. I've also thought about machine.config, but I'd like to isolate configuration as much as possible so as not to potentially disrupt other applications on a given machine. And, by using machine.config, I'd have to figure out a way to get the build script automatically updating that file remotely.</p> http://stackoverflow.com/questions/981690/windows-workflow-singleton-style-workflow 1 Windows Workflow: "singleton"-style workflow? Chris 2009-06-11T15:07:04Z 2009-06-11T21:09:19Z <p>I have a workflow that will watch certain databases and kick off other workflows when it notices a trigger. I only want one instance of this "observer" workflow to be going at any point in time; otherwise, if two or more were running, they'd both notice the change and both fire off the same workflow, which wouldn't work well.</p> <p>This "observer" workflow is persisted. So...how do I make it so that if the runtime doesn't have an instance of this workflow persisted already, it starts one, but if one is already there, just use the persisted one? </p> <p>Almost sounds like I could create a small run-once console app that kicked off the workflow I wanted, and then the "real" runtime just pulled the persisted one and never tries to create a new one, but that doesn't sound very elegant.</p> http://stackoverflow.com/questions/977941/windows-workflow-starting-a-separate-workflow-from-within-a-workflow 3 Windows Workflow: Starting a separate workflow from within a workflow Chris 2009-06-10T20:22:46Z 2009-06-11T03:27:25Z <p>This seems to be more complicated than I first guessed. I have a workflow that needs to kick off another workflow in the code. How is this done? Do I have to get a reference to the current workflow instance's WorkflowRuntime first?</p> http://stackoverflow.com/questions/400428/understanding-ssl-connections-with-nets-httpwebrequest 2 Understanding SSL connections with .NET's HttpWebRequest Chris 2008-12-30T14:43:48Z 2009-06-10T14:36:49Z <p>I can't seem to get my head around this one. I'm using HttpWebRequest to try and send some data out to another site. I'm attempting to figure out the best way to get our firewalls configured, but I'm at a loss. By watching the NetMon trace, it appears as though it's ignoring what I tell it; the HTTP headers I see go out from the request (not the browser-to-my-server request, but the my-server-to-remote-server request) don't add up.</p> <pre><code>Http: Request, CONNECT some.random.url:443 Command: CONNECT URI: some.random.url:443 Location: some.random.url:443 ProtocolVersion: HTTP/1.1 Host: some.random.url ProxyConnection: Keep-Alive HeaderEnd: CRLF </code></pre> <p>The TCP DstPort also seems to always start with HTTP(80). I can't seem to get it to handle 443 initially, no matter what; does SSL start out with a port 80 negotiate before it begins "real" transmission? To boot, this request seems to ignore any HttpWebRequest settings I try to set before initiating the request: even if I set HTTP 1.0, or keep-alive to false, it still starts off with the above headers.</p> <p>What's it doing? I'd like to know how to let it through, but I'm not sure why it's exhibiting that behavior?</p> <p>Code below, if it helps.</p> <pre><code>Uri newUri = new Uri("https://some.random.url:443/random"); System.Net.HttpWebRequest wr = (HttpWebRequest)WebRequest.Create(newUri); wr.Method = "POST"; wr.ContentType = "application/x-www-form-urlencoded"; ASCIIEncoding encoding = new ASCIIEncoding(); byte[] requestBytes = encoding.GetBytes("test"); wr.ContentLength = requestBytes.Length; System.IO.Stream stream = wr.GetRequestStream(); //FAILS HERE, ServerProtocolViolation </code></pre> <p>I've scoured over Google and other SSL/HttpWebRequest problems, but can't come up with a silver bullet.</p> http://stackoverflow.com/questions/970995/windows-workflow-persistence-and-polling 1 Windows Workflow: Persistence and Polling Chris 2009-06-09T16:01:14Z 2009-06-09T21:14:32Z <p>I'm currently learning the WF framework, so bear with me; mostly I'm looking for <em>where</em> to start looking, not necessarily a direct answer. I just can't seem to figure out how to begin researching what I'd like in The Google.</p> <p>Let's say I have a simple one-step workflow (much more complicated than that, but for simplicity's sake). This workflow needs to watch a certain record in the database to see when it changes. I don't have the capability to "push" via a trigger from the database when the row changes, so I need to poll for it every so often. </p> <p>This workflow needs to be persisted to the database to be durable against restarts and whatnot as this is a long-running workflow. I'm trying to figure out the best way to get it to check every 3 minutes or so and also persist to the database. Do the persistence capabilities of the framework allow for that? It seems to be time-based. And since the workflow won't be reawakened by an external event, how does it reload from the database and check the same step it did previously again? Does it attempt the last unfulfilled activity automatically upon reloading?</p> <p>Do "while" activities with a delay attached to it work at all, or can it be handled solely through the persistence services?</p> http://stackoverflow.com/questions/944902/asynchronous-architecture 1 Asynchronous architecture Chris 2009-06-03T13:56:23Z 2009-06-03T14:44:22Z <p>I have a C# library that is surfaced through a webpage UI. There's of course the UI layer, which makes calls through a business logic layer, which in turn hits the data access layer to retrieve the data. The data is actually retrieved via a web service which has the capability to query data asynchronously.</p> <p>I'm starting to learn how to deal with requests asynchronously to both speed up page time (grabbing multiple items from the web service as soon as I can with multiple threads), and for scalability by threads not being tied up all the time.</p> <p>Given the three-tier architecture of my code, would this mean that pages asynchronously make calls through the business layer (and therefore speed up by making concurrent requests), and the web service in the data layer in turn would also make its requests asynchronously? The logic of juggling all the callbacks is hurting my brain. Are there any resources out there for this type of approach?</p> http://stackoverflow.com/questions/935244/nunit-the-process-cannot-access-the-file-because-it-is-being-used-by-anothe/935471#935471 1 Answer by Chris for NUnit: "The process cannot access the file ... because it is being used by another process." Chris 2009-06-01T15:59:35Z 2009-06-01T15:59:35Z <p>Figured it out: the "Volume Shadow Copy" service was shut off for some reason. Turned it back on, and everything's back to normal.</p> http://stackoverflow.com/questions/1723786/object-oriented-design-saving-complex-objects/1723914#1723914 Comment by Chris on Object-oriented design: Saving complex objects Chris 2009-11-12T17:44:31Z 2009-11-12T17:44:31Z Nice find, had been looking for a link like that. Thanks! http://stackoverflow.com/questions/1723786/object-oriented-design-saving-complex-objects/1723914#1723914 Comment by Chris on Object-oriented design: Saving complex objects Chris 2009-11-12T17:32:01Z 2009-11-12T17:32:01Z I thought about checking them out, but a problem comes up with the &quot;legacy system&quot; part: though I can read from the database at will, it must pass through a web service when saving back. It can't write directly to the database, sadly. http://stackoverflow.com/questions/1637550/oop-design-string-enum-interface-or-other/1637668#1637668 Comment by Chris on OOP design: string, enum, interface, or other? Chris 2009-10-28T15:02:14Z 2009-10-28T15:02:14Z Exactly what I needed, thanks! http://stackoverflow.com/questions/1596727/any-gotchas-with-remotely-coded-locally-run-net-web-apps-on-xp-machines/1596755#1596755 Comment by Chris on Any "gotchas" with remotely-coded, locally-run .NET web apps on XP machines? Chris 2009-10-20T19:43:15Z 2009-10-20T19:43:15Z Excellent feedback, thank you. And I hear ya on the client app thing...but it's looking like with the deadline and the fact that nobody does client app development in our shop, we might be stuck. http://stackoverflow.com/questions/1544410/enable-http-keep-alive-in-iis-cause-disruption/1544455#1544455 Comment by Chris on "Enable HTTP Keep-Alive" in IIS cause disruption? Chris 2009-10-09T15:28:26Z 2009-10-09T15:28:26Z Yeah, I know it's definitely not what most sites should do, but we have insane crazy proxies between a couple of tiers that go nuts without other things being set correctly. http://stackoverflow.com/questions/1544410/enable-http-keep-alive-in-iis-cause-disruption/1544455#1544455 Comment by Chris on "Enable HTTP Keep-Alive" in IIS cause disruption? Chris 2009-10-09T15:19:45Z 2009-10-09T15:19:45Z Gracias. ASP.NET, if that matters, any considerations specific to it? http://stackoverflow.com/questions/1500104/offline-synchronization-options-with-net/1500129#1500129 Comment by Chris on Offline synchronization options with .NET Chris 2009-09-30T19:35:36Z 2009-09-30T19:35:36Z Very informative, thank you. http://stackoverflow.com/questions/1500104/offline-synchronization-options-with-net/1500151#1500151 Comment by Chris on Offline synchronization options with .NET Chris 2009-09-30T19:30:43Z 2009-09-30T19:30:43Z Correct interpretation, yep. I was thinking of using MSMQ so that it's a fire-and-forget method that will keep trying until it gets there, but it's essentially the same thing as your approach. Thank you! http://stackoverflow.com/questions/1201867/windows-workflow-why-do-they-get-stuck-in-persistence/1202666#1202666 Comment by Chris on Windows Workflow: Why do they get stuck in persistence? Chris 2009-08-07T15:26:42Z 2009-08-07T15:26:42Z Marked as accepted because it covered a lot of ground, thanks for the info! What it ended up being was ownership time. I upped instanceOwnershipDuration to allow for the full execution of whatever it was trying to do for every loaded activity, and it hasn't glitched since. http://stackoverflow.com/questions/1234829/why-do-so-many-sites-disallow-the-use-of-non-alphanumeric-characters-in-passwords Comment by Chris on Why do so many sites disallow the use of non-alphanumeric characters in passwords? Chris 2009-08-05T18:23:33Z 2009-08-05T18:23:33Z @Bill the Lizard: hah! +1. http://stackoverflow.com/questions/1201867/windows-workflow-why-do-they-get-stuck-in-persistence/1227703#1227703 Comment by Chris on Windows Workflow: Why do they get stuck in persistence? Chris 2009-08-04T14:57:34Z 2009-08-04T14:57:34Z I did something similar in global.asax's &quot;Application_End&quot; function, stopping the runtime there. Are our approaches two ways of doing the same thing? Never used the above calls. Thanks for the input, +1! http://stackoverflow.com/questions/1201867/windows-workflow-why-do-they-get-stuck-in-persistence/1202666#1202666 Comment by Chris on Windows Workflow: Why do they get stuck in persistence? Chris 2009-07-29T21:21:50Z 2009-07-29T21:21:50Z Excellent writeup, I'll try as much as I can tomorrow and report back. http://stackoverflow.com/questions/1201867/windows-workflow-why-do-they-get-stuck-in-persistence/1201896#1201896 Comment by Chris on Windows Workflow: Why do they get stuck in persistence? Chris 2009-07-29T17:52:48Z 2009-07-29T17:52:48Z I hadn't thought of that, but checked and they're in-sync to the second. Good idea though, thanks! http://stackoverflow.com/questions/1065566/windows-workflow-custom-persistence-service-same-schema-and-logic/1116789#1116789 Comment by Chris on Windows Workflow: Custom persistence service, same schema and logic? Chris 2009-07-14T15:11:59Z 2009-07-14T15:11:59Z Perfect perfect perfect, exactly what I was looking for. Many thanks! http://stackoverflow.com/questions/1110812/is-in-process-the-only-way-classic-asp-can-store-session-state/1110830#1110830 Comment by Chris on Is in-process the only way classic ASP can store session state? Chris 2009-07-10T17:22:23Z 2009-07-10T17:22:23Z Excellent find, many thanks!