Sign In
Mebyon Kernow
A blog by Morgan
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
Code
Debugging
Instrumentation
Pages
WCF
WF
WPF
Archive
Archives
March 2011
(1)
January 2011
(2)
September 2010
(1)
August 2010
(1)
July 2010
(1)
June 2010
(4)
April 2010
(1)
December 2009
(1)
November 2009
(1)
September 2009
(1)
August 2009
(2)
July 2009
(1)
May 2009
(2)
March 2009
(3)
February 2009
(1)
January 2009
(1)
December 2008
(3)
MSDN Blogs
>
Mebyon Kernow
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Mebyon Kernow
Using standard icons in a rehosted Workflow Designer
Posted
11 months ago
by
Clibbolasbolei
0
Comments
In this post I’ll show how you can easily use appropriate icons within the Workflow Designer toolbox. There are a number of posts out on the web that show varying ways to do this, however the method I’m proposing is most probably the easiest...
Mebyon Kernow
Reading summary results from the VS2010 load test database
Posted
over 1 year ago
by
Clibbolasbolei
0
Comments
I’m with a customer in the labs this week doing some performance work and one of the tasks we wanted to do was to programmatically read the load test database in order to retrieve a table of summary data from a test run. My customer has instrumented their...
Mebyon Kernow
VS2010: Could not read result repository, Named Pipes etc
Posted
over 1 year ago
by
Clibbolasbolei
0
Comments
I've just come across a problem with load testing on Visual Studio 2010 (which probably amounts to a RTFM issue, but who does that anyway?) When installing the load test controller I specified the machine name as '.'. Nothing in the setup told me this...
Mebyon Kernow
Workflow Activities and Data Templates
Posted
over 2 years ago
by
Clibbolasbolei
2
Comments
A.K.A. “Why won’t the workflow designer use my data template?” I was on site with a customer today writing some custom activities and found a problem that wasn’t immediately obvious how I could get around it (and indeed it’s taken me some hours of head...
Mebyon Kernow
Bug: Goal Based load test generates a LoadTestGoalCounterNotFoundException
Posted
over 2 years ago
by
Clibbolasbolei
0
Comments
I’m in the scalability labs with a customer this week and we’ve encountered an exception when setting up a goal based load test. We have a bunch of machines, and my customer has created a set of custom performance counters that report appropriate data...
Mebyon Kernow
Adding a Context Menu item to a Workflow 4 designer
Posted
over 2 years ago
by
Clibbolasbolei
1
Comments
I’m in a curious time-warp this week, as I’ve just been asked how to do something in WF4 that I wrote about for WF3 in September 2005 . Anyhow, a customer of mine asked how to add an item to the context menu for an activity within the design surface,...
Mebyon Kernow
Simplifying commands in MVVM and WPF
Posted
over 2 years ago
by
Clibbolasbolei
9
Comments
I’ve been using MVVM since I started WPF (I was a latecomer to the beauty that is WPF) and one of the things that’s always irked me is the amount of code you need to write in order to expose a command. I’ll typically write something like the following...
Mebyon Kernow
A practical State Machine example
Posted
over 2 years ago
by
Clibbolasbolei
1
Comments
Now that the State Machine Activity Pack has been released on Codeplex (see http://wf.codeplex.com for details) I thought I should resurrect one of the samples I regularly used in the 3.x days to show a state machine example. The point of this example...
Mebyon Kernow
Creating multiple activities from the toolbox
Posted
over 2 years ago
by
Clibbolasbolei
0
Comments
This blog post will show you how you can add a custom tool to the toolbox which, when selected, will drop a custom activity onto the designer surface. In addition I’ll also show how to get non-activity classes onto the toolbox. There are many times when...
Mebyon Kernow
Designers for custom activities
Posted
over 2 years ago
by
Clibbolasbolei
0
Comments
When writing a custom activity you’ll typically want to provide a custom designer which is used when rendering your activity on the design surface. Visual Studio will look for designers using a couple of methods – one old, one new. In this post I’ll show...
Mebyon Kernow
Setting up WCF with a load balancer using SSL in the middle
Posted
over 2 years ago
by
Clibbolasbolei
0
Comments
I was onsite today with a customer who was having problems getting WCF to work, and after much wailing and gnashing we finally arrived at a solution so I thought I would blog it. We were getting an EndpointNotFoundException with the error message “There...
Mebyon Kernow
How much is that logging in the Window(s)
Posted
over 3 years ago
by
Clibbolasbolei
0
Comments
Sorry for the awful pun, but now you’re probably thinking I’m mad, either that or you now have the lyrics of “How much is that doggy in the window” racing around in your head. Anyhow, the point of this post is to show something that I’ve carped on about...
Mebyon Kernow
INotifyPropertyChanged not working?
Posted
over 3 years ago
by
Clibbolasbolei
0
Comments
I was writing a helper class today for WPF and had a IsDirty flag which was firing a PropertyChanged event. However, when I used this in my UI the element that was bound to this flag was not updating. After a quick look through my code I noticed the following...
Mebyon Kernow
How to define and host workflow services with multiple receives
Posted
over 3 years ago
by
Clibbolasbolei
0
Comments
[Note – this article is based on Workflow 4 Beta 1, some things will change for Beta 2] First off let me apologise for the length of this post. If you just want the code, skip to the bottom. I don’t know about you but some words just don’t seem to make...
Mebyon Kernow
New .NET Attributes
Posted
over 3 years ago
by
Clibbolasbolei
0
Comments
The very first talk I gave on .NET was on custom attributes – some time way back in late 2000 or early 2001. At the time I was espousing the benefits of using custom attributes to add on details of unit tests and bug fixes. There have been many additions...
Mebyon Kernow
Polymorphism in WCF
Posted
over 3 years ago
by
Clibbolasbolei
1
Comments
Polymorphism in any OO language is taken as a given – and people would be shouting about it a lot if a language didn’t support it. However, when you’re writing a service interface with WCF you might also want to permit some form of polymorphic behaviour...
Mebyon Kernow
MsiExec taking 50% CPU
Posted
over 3 years ago
by
Clibbolasbolei
0
Comments
I’ve had a rather frustrating afternoon but it’s all sorted now. I’ve recently repaved my laptop with Windows 7 RC and installed loads of stuff at the same time, including VS2010 Beta 1. I’ve also more recently installed VS2008 as I needed it for the...
Mebyon Kernow
Differentiating process instances in Perfmon
Posted
over 3 years ago
by
Clibbolasbolei
2
Comments
If you’re running in a terminal services environment, or have multiple instances of a given application running on your machine, this tip will help you to work out which process is which in Perfmon. To see the issue, I’ve created a simple Windows Forms...
Mebyon Kernow
The following requested processes are not executing – error in adplus.vbs
Posted
over 3 years ago
by
Clibbolasbolei
1
Comments
I was doing some investigation on a customer site and needed to use adplus.vbs to take process dumps, however I was forever getting the above error and couldn’t for a while work it out. I thought I must have typed in the wrong process id, but after checking...
Mebyon Kernow
A new Home Server
Posted
over 3 years ago
by
Clibbolasbolei
3
Comments
I’ve been running WHS since an internal beta on a box that really wasn’t quite what I wanted – in that it was way too large. As far as I’m concerned a home server should be a small appliance that sits on your network, is on all the time, and consumes...
Mebyon Kernow
Developing .NET applications for deployment on Terminal Services or Citrix
Posted
over 3 years ago
by
Clibbolasbolei
6
Comments
If you develop .NET client applications that are deployed to users over Terminal Services (TS) or Citrix then this is the post for you. Why? – well, there’s a bit of an issue that not a lot of people know about, and it can really ruin your day. First...
Mebyon Kernow
Workflow v4 talk
Posted
over 3 years ago
by
Clibbolasbolei
2
Comments
I’ve been invited to do a session in Coventry for the NxtGenUG – this will be run on Monday June 15th at the Coventry flying club. If you fancy knowing some more about the new stuff in Workflow then please sign up here . I’ll cover a lot of detail on...
Mebyon Kernow
BigIP can save the day
Posted
over 3 years ago
by
Clibbolasbolei
2
Comments
In my role as an ADC I often get to run customer labs – this is where we take a customers application, install it on the hardware we have in Reading, and then exercise a number of load tests against it to see what opportunities there are for performance...
Mebyon Kernow
Periodic Execution in .NET
Posted
over 4 years ago
by
Clibbolasbolei
3
Comments
Frequently in my role I see code that is doing something like the following :- After Time (x) Do (y). Repeat ad infinitum. No user interface. I’ve deliberately put this in nothing approximating code as that’s what this article...
Mebyon Kernow
Method entry/exit logging
Posted
over 4 years ago
by
Clibbolasbolei
0
Comments
Frequently you need to add in some form of logging in your code on method entry and exit points, and typically this is done in a way which over-burdens you (the developer) with a fair bit of extra code. Now, the universal panacea would be to be able to...
Page 1 of 2 (26 items)
1
2