Free Microsoft Technical Roadshows 17 April 2005 (0) MS are giving a number of technical briefings including .NET and SQL Server 2005… Tuesday 12th and Wednesday 13th April 2005Edinburgh, The Corn Exchange Tuesday 24th and Wednesday 25th May 2005Birmingham, National Motorcycle Museum Wednesday 1st and Thursday 2nd June 2005Harrogate, Harrogate Pavilions Tuesday 7th and Wednesday 8th June 2005London, Earls Court Olympia Check out http://www.microsoft.com/uk/resources/techroadshow/default.mspx for more info. [...] SHARE:
Patterns Panacea 17 April 2005 (1) The “Patterns Movement” seems to be gaining momentum with more developers becoming aware of the oft-quoted benefits of pattern re-use. Patterns are supposed to be the abstracted solution to common development requirements, but I think the Movement needs to work on closing the circle with respect to concretising the usefulness of Patterns. In most articles [...] SHARE:
The PCMEF architectural Framework 17 April 2005 (0) The general idea behind PCMEF (Presentation Control Mediator Entity Foundation) is that of dependency and object intercommunication minimisation. PCMEF takes inspiration from established design patterns such as Data Mapper, MVC, Observer, Chain of Responsibility and Mediator. Objects in higher subsystems have a dependency on lower subsystems but reverse communication should be event-subscriber based (this implies that [...] SHARE:
Poet Programmer Analyst Artist 17 April 2005 (0) Is the development of software art or is it merely a sequence of logical events which produce an outcome? Certainly software development requires creative thought or is it merely logical thought? Perhaps it is merely a matter of perception; a non-developer will decide on the “beauty” of a system by the rounded boxes and smooth [...] SHARE:
Enterprise Library - A Day Out with the Logging and Instrumentation Application Block 10 March 2005 (0) Ok, I’ll start by saying I like it; reasons? No headache of installing, configuring, deploying EIF; Easy to configure using the nice little GUI Enterprise Library Configuration Tool - no manually messing around with .configs - it also validates the underlying config files when you try to save! Easy to deploy as private assemblies; Simplified logging; Easy to configure multiple [...] SHARE:
WebMethodAttribute.CacheDuration Property 27 February 2005 (0) When creating a web service based data abstraction layer / façade, if you have methods that return “type” tables such as counties/states or employee types; caching the response to these requests improves performance by reducing db lookups for data that rarely changes. Simply apply the CacheDuraction property to the WebMethod attribute specifying the number of [...] SHARE:
Debugging breakpoint inside web service web method 27 February 2005 (0) To cause debugging to stop at breakpoint inside a web service method when calling from windows app: - Set breakpoint in the win app on the line that calls the web method, then step into the web service code; Or a) Right-click Solution –> Set Startup Projects;b) [...] SHARE:
Enterprise Library Application Block Logging 17 February 2005 (0) The Enterprise Library Application Block has been recently released, as a user of the existing Logging Application Block (LAB) with cross web service request tracing it is a little disappointing to see no mention (as yet) of similar support in the new Logging and Instrumentation Application Block. As I’m currently mid-way through a development which uses [...] SHARE:
Logging Application Block Log Levels 15 February 2005 (0) LAB LogLevels (summarized from Logging Application Block documentation © 2003 Microsoft Corporation http://www.microsoft.com) None (level 0)No logging - not advised for production. Always (level 1)Default for system and all events that are raised without specifying the logging level. Eg, audit events or metering events can specify this log level. Error (level 2)Application running in production. All errors and [...] SHARE:
Windows Service Path Not Found Exception 15 February 2005 (0) If you get an invalid path / path not found error when trying to start a .net windows service or right-click properties for it check any PerformanceCounterInstaller(s) and ensure their CategoryName is not the same as the ServiceInstaller’s ServiceName. Why? Seems to be something to do with the registry entries created/deleted when these installers run. [...] SHARE: