Skip to main content

Posts

Showing posts from 2009

Where are the documents and reports tab in Visual Studio 2010 Web Access?

In Visual Studio Team Foundation Server 2010, the Team Web Access site is installed by default.  At first things looked fine when I browsed to our company’s TFS website: But after a few seconds, I realized that something was wrong. The Documents and Reports tabs are missing! I immediately started checking all the possible but everything looked fine to me. Some searching on the web brought me the answer. On the MSDN forum is mentioned that the Documents and Reports tabs are removed by design from Web Access 2010. The project team decided  that the Project Portal is the best place to work with documents and reports and provides better features that weren't available in Web Access.

Visual Studio Unit Tests fails to run

After debugging some unit tests, I couldn't rerun my tests. I get a big warning icon and a very useful message telling me that the tests were not executed. After scrolling through the endless list of test run details I found following error message at the bottom; “Code coverage collection error: The Visual Studio performance and coverage logging engine is already running on the computer. Therefore, the test run cannot continue. Close the pending performance or code coverage session and then rerun the tests.” The solution is to shutdown the VSPerfMon.Exe process which gets left in memory when you debug a unit test and stop the debugger before the test finishes. More information can be found here at Microsoft Connect

Can the ScrumMaster become an impediment?

A ScrumMaster as one of the most important roles in the scrum process. He is the advocator of Scrum inside the organization. He ensures smooth functioning of the team by eradicating impediments and keeping the team shielded from external distractions. Bur can it be that the Scrum Master becomes the biggest impediment? On InfoQ an interesting summary is written collecting a lot of posts around the possible failure of the ScrumMaster role. I especially think that the multiple hats most Scrum Masters have to wear make it very difficult to do their job well. Can you think of some reasons why being a ScrumMaster can be hard or even impossible?

UX Patterns Explorer

One resource to remember: Quince . A very nice Silverlight site with User Interface and Usability patterns, each with an informative description and a lot of samples.

Database query plans: why should you care?

One of the subjects that always returns when you start discussing with your database administrator about whether or not you should use stored procedures are Query Execution Plans. Damien Guard did a very good developer focused introduction to query plans . Go check it out!

Why don't I see traffic sent to http://localhost when using Fiddler

If you want to monitor the traffic to a locally hosted webservice/ website you can use Fiddler . Fiddler is a Web Debugging Proxy which logs all HTTP(S) traffic between your computer and the Internet. As Internet Explorer and the .NET Framework are hardcoded not to send requests for localhost through any proxies, and as a proxy, Fiddler will not receive such traffic. A simple workaround is to use your machine name as the hostname instead of localhost. So, for instance, rather than hitting http:// localhost /helloworldservice.svc , instead visit http:// machinename /helloworldservice.svc .  More info on the Fidller website .

Web deployment in Visual Studio 2010

With Visual Studio 2010 a new way of deploying your web applications becomes available. In Visual Studio you just have to create an MSDeploy package . This package can than be deployed on your IIS 6.0 and 7.0 webserver using a command-line tool called msdeploy.exe. It supports moving configuration, content, SSL certificates and other types of data associated with a web server. You can choose to sync a single site or the entire web server. Flexibility is guaranteed by using a customizable manifest file. You can also skip sites or other objects, or you can perform regular expression replacements during a sync (like changing the home directory on the destination machine). MSDeploy will make it easy to version your web applications (including allowing you to quickly roll back to previous versions), as well as automatically provision them across multiple servers.  It also enables the full automation of deployment tasks (including via both command-line and PowerShell scripting APIs). A

Visual Studio 2010 and .NET Framework 4 Beta period extended

Microsoft took a brave and (if you ask me)wise decision . They postponed the launch of Visual Studio 2010 and .NET Framework 4.0 for a few extra weeks based on some negative customer feedback about performance. As we are using VSTS 2010 Beta 2 and TFS 2010 Beta 2 today, I’ll have to agree that performance is still an issue. Especially our TFS environment gets unpredictable drops in performance. Not the best thing that can happen when you’re trying to get some code released… I hope that this will buy Microsoft some extra time to fix all this issues because I’m really loving all the new great features that come with the 2010 wave!

TFS 2010 TFSAdminUtil became TFSConfig

If you are using Team Foundation Server 2010 today and you’re looking for the very useful TFSAdminUtil command line tool, search no longer, because it’s no longer there. Instead there is a new tool available, the TFSConfig tool . It offers the same features as the TFSAdminUtil and many more…

ADO.NET Data Services update

The ADO.NET Data Services team announced that the “Data Services Update for .NET Framework 3.5 SP1” (formerly known as “ADO Data Services v1.5”) has been released and is available for download. If your target is Windows7 or Windows 2008 R2 you can pick it up here .  For all other OS versions you can get the release from here . The list of new features is great; projections, data binding, row count, enhanced blob support, and especially the new "Data Service Provider" Interfaces   look promising!

Linq to NHibernate

As you probably know there is already a Linq to NHibernate provider available but it’s functionality is rather limited and far from complete. In the meanwhile a separate project is going on where Steve Strong is building a new provider from scratch based on AST .  This provider will give a lot of extra functionalities and features. Today Steve announced the latest updates on his work and it looks very promising. I cannot wait to start replacing the current provider. Of course, this is all in the trunk, so anyone wanting to play either needs to get the trunk source and build it, or take the much easier option of having Horn do the work. Horn builds the trunk on a daily basis, so look for a package built after around 2300GMT on the 16/12/2009 (the package URL on Horn has the datetime stamp in it, so it's pretty easy to spot).

Help! Where is my Javascript Intellisense in Visual Studio 2010 Beta 2?

For a current project we are using the great JQuery libraries. As we are developing in Visual Studio 2010, I want to use the JavaScript Intellisense. But it failed to work… It looks like there is an issue somewhere with the default settings that get set when Visual Studio 2010 first installs. To get Intellisense to work again, reset Visual Studio settings (Tools | Import and Export Settings): then go ahead and reset to your preferred default profile. And voila, Intellisense in JavaScript is back.

Reading performance counters on remote machines

One of the nice features of the Performance Monitor tool is that you can read performance counters on remote machines. That is of course when it works! When I tried to monitor the performance counters on a remote computer in Perfmon, I received an error message that resembles the following: Unable to connect to machine To resolve this issue, check the following actions. Action  1: Verify that the Remote Registry service is running on the remote computer Click Start , click Run , type cmd, and then click OK . At the command prompt, type tasklist -svc, and then press ENTER. Verify that a Svchost.exe host process is running that has RemoteRegistry in the Services column. If the service is not running, go to step 3. At the command prompt, type net start RemoteRegistry, and then press ENTER. Action 2: Verify that you have the required permissions You must be a member of the Administrators group on the remote computer. If the remote computer is runnin

Fatal Execution Engine Error when calling a WCF service in IIS

If you like nasty errors, this is one! It means more or less that the .NET framework itself has crashed. I have not seen this kind of errors a lot(luckily). Everytime we called a specific service, we succeeded in crashing the .NET framework.  After some investigation, we started to suspect the usage of IEnumerable<T> in one of our services. And finding this MS Connect call confirmed this suspicion. The fault could be found in the DataContractSerializer class. Microsoft indicated that the DataContractSerializer issue is fixed in .NET 4.0, but there is not a hotfix available for .NET 3.5sp1 at this time. The workaround they proposed  was to place all assemblies that contain types "T" used in contracts that have IEnumerable<T> into the GAC.  (In other words, if your contract has IEnumerable<T> elements, then all types T have to be strong-named & in the GAC.) Why does this work?  The bug with DataContractSerializer apparently does not manifest it

Failing app pools after Windows update

Today I arrived at work noticing that ALL our IIS applications were failing. As this not only influences our test and production enviroment but also our TFS server, nobody was able to do any kind of work. After checking out the system logs, I saw that a lot of updates where installed last weekend. It seems that the applications pools were unable to start after applying KB 973917 on Windows Server 2003 to add support for Extended Protection in Windows Authentication . The root cause of this issue is machines being in an unsupported state where SP1 version of IIS binaries exist on an SP2 installation. Product support has released KB 2009746 on how to resolve this issue. The summary of the resolution is to reinstall SP2 to such machines to update all IIS binaries to the SP2 version. You can get SP2 for Windows Server 2003 from the appropriate link in the article here: http://support.microsoft.com/kb/889100

Remove a test case from the Visual Studio 2010 Test and Lab Manager

Together with our test team we’re trying the new Visual Studio 2010 Test and Lab Manager. One of the questions of our lead test manager was how he could remove some useless test cases. As test cases are represented by work items, the answer is not so easy. Work Items by nature can’t be removed and this remains the same in Visual Studio 2010. Although it’s a tad inconvenient, you can delete work items from TFS by installing the Team Foundation Server Power Tools . Of the many features available as part of the power tools, there is a command called destroywi that can be used to delete work items.  For example, to delete the work item ID 1234, use the command: 1: tfpt destroywi /server:tfs-dev /workitemid:1234 Use this feature at your own risk. Of course from a user perspective this is not the best solution. So better is to just delete the test case from the suite by selecting it, and press the delete key, or the delete button on the toolbar. You can then edit the test case, and mov

Step by step guide for building and publishing an extension in Visual Studio 2010

Visual Studio 2010 supports more platforms and languages out of the box than any previous version of Visual Studio. However, one of Visual Studio’s greatest strengths isn’t in what ships with it, but how it can be extended to meet your individual development needs. Visual Studio 2010 exposes new APIs for building your extension and provides an ecosystem for publishing, sharing, and finding new extensions. Quan To, a program manager for the Visual Studio Platform Team shows how easy it is to build and publish an extension in VS2010 .

Visual designer for NHibernate

NHibernate is a very powerful Object Relational Mapper (ORM). But for a beginning NHibernate user, things seem very complex. One of the difficult parts is the creation if XML  mapping definitions by hand, an error-prone and time-consuming task. Visual NHibernate makes it easier and quicker to create and maintain NHibernate projects - even very complex ones. Point it at your existing projects and start modelling them right away - visually. The current feature list(it’s still in beta) supports: Visually design and inspect all of NHibernate's mapping scenarios: Single entity to single database table Single entity to multiple database tables Single table to multiple entities Supports all NHibernate collection types: Sets Bags Lists Maps Supported mapping types: one-to-one one-to-many many-to-many Mappings can be: unidirectional bidirectional Visual NHibernate also supports Components. Download the free trial and s

Visual Studio 2010 SDK Beta 2

If you want to experiment with the new extensibility options (MEF intregation, Wix deployment, WPF support,…) in VS 2010, download the Visual Studio 2010 SDK . Thanks to the removal of  all the documentation from the binaries, it’s a much smaller download. The Visual Studio 2010 SDK includes project templates that help developers create tool windows, menu commands, isolated shell projects, and editor extensions. The editor extensions include text adornments, colorizers, and margins. It also includes build tasks that help developers build and debug extensions. Building and debugging are managed in a second instance of Visual Studio named the experimental instance. The experimental instance provides a test bed for extensions without changing the primary installation of Visual Studio.

Distributed Transaction Coordinator(DTC) and Windows Vista

At one of my clients, I have the ‘luck’ to work with a DB2 database environment. After upgrading my system to Vista, I saw this heuristic processing error below: [IBM][CLI Driver][DB2] SQL0998N Error occurred during transaction or heuristic processing. Reason Code = "16". Subcode = "3-8004D00E". SQLSTATE=58005 From previous experiences, I learned it is caused by the distributed transaction coordinator that is always used when you’re opening a DB2 transaction inside a transactionscope.  By default in Vista, MSDTC settings are all locked down.  A blog post here describes how to use the dcomcnfg command to enable Inbound, Outbound and enable XA Transactions.  Enabling XA transactions and both inbound and outbound connections solved the problem.

Code Kata

Software developers don’t practice enough. Most of our learning takes place on the job, which means that most of our mistakes get made there as well. Other creative professions practice: artists carry a sketchpad, musicians play technical pieces, poets constantly rewrite works. In karate, where the aim is to learn to spar or fight, most of a student’s time is spent learning and refining basic moves. The more formal of these exercises are called kata. Dave Thomas took the idea of coding practice and made a series of what he calls Code Kata, which are small, thought-provoking exercises that programmers can do in the language of their choice. Each kata emphasizes a specific technique or thought process, providing a concrete flexing of one’s mental muscles. All kata are available for free on his weblog ( http://codekata.pragprog.com/ ). On the weblog, you’ll also find links to a mailing list and to others’ solutions to the exercises along with discussion about how the problems were sol

No warning on missing comments

By default if documentation is enabled, Visual Studio will give you warnings for each public class, method, field and so on that’s not documented. This is certainly useful for places where you’re writing some complex logic, but for some other places in your code and for generated code documentation isn’t always necessary. You can let the compiler ignore certain warnings for specific parts of your code by adding a pragma to your code file. Pragmas are a way to communicate with the compiler from your code. C# have it as well though the standard compiler (csc.exe) only understands two commands, warning and checksum . The code below has a pragma added that tells the compiler not to raise warnings with id 1591 (missing comments) 1: #pragma warning disable 1591 To re-enable this warning after a code-block, you can add following pragma: 1: #pragma warning restore 1591

VS 2010 Lab management

One of the great new features in Visual Studio 2010 is "Lab Management".  It enables you to automate the setup and configuration of test environments, saving you a bunch of time doing it every time you have a new build you want to test.  Installing and configuring is not very easy, Microsoft did a lot of work to make it much easier to get up and going, but you will have to invest time and hardware to get everything up and running.  The lab management team did a blog series to help you: Part 1 – Installation:  http://blogs.msdn.com/lab_management/archive/2009/11/18/Getting-started-with-Lab-Management-_2800_Part-1_2900_.aspx Part 2 – Configuration: http://blogs.msdn.com/lab_management/archive/2009/11/18/getting-started-with-lab-management-part-2.aspx Part 3 – Configuration continued: http://blogs.msdn.com/lab_management/archive/2009/11/20/getting-started-with-lab-management-part-3.aspx Part 4 -  End to end workflow: http://blogs.msdn.com/lab_management/archive/2009/11

Let your code be in good shape – Fitnesse free ebook

If you care about testing and if you try to use practices like TDD tooling support can help a lot. One of the tools that’s out there is Fitnesse. Fitnesse is a tool build on top of the   Framework for Integrated Testing ( FIT ), an acceptance testing framework originally developed for Java by Ward Cunningham. One of the central ideas of FIT was to promote collaboration and allow customers and business analysts to write and verify tests.  FIT makes it easy to run tests, but does not provide a way to create them. The original idea was to write tests in Word, Excel, or any tool that can output HTML. FitNesse is a web wiki front-end to FIT developed by Robert Martin and Micah Martin from ObjectMentor. If you are interested in starting to use it, certainly check the free Fitnesse ebook .

What’s new for ClickOnce in Visual Studio 2010

ClickOnce deployment enables you to deploy self-updating Windows and console applications that can be installed, updated, and run from a Web site. For more information, see ClickOnce Security and Deployment . In Visual Studio 2010, there are some small but useful improvements. Starting in Visual Studio 2010, you can target .NET Framework 4 or multiple versions of the .NET Framework in your ClickOnce deployment. You can also troubleshoot installation issues by using enhanced logging and you can create a custom installer . For Office solution developers, there are additional ClickOnce enhancements, such as deploying multiple Office solutions in a single ClickOnce installer and performing additional actions after the ClickOnce installer is finished. For WPF XAML browser applications (XBAPs), you can request elevation of privileges with ClickOnce. For more information, see WPF XAML Browser Applications Overview . I especially like the custom installer option. Now you can implement

ASMX services and Self-Signed Certificates

When you try to call a web service that uses a self-signed certificate from a client application you get the following error: The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel. This is because your system marks the certificate as invalid. There are 3 tests that must be checked before a certificate is marked as valid: The certificate must be issued by a trusted certification authority. The certificate is not outdated. The hostname must match the certificate subject. If one of those three tests return false then the certificate is marked as invalid. When you are just testing your application, you can make your client proxy ignore these tests and just call the service. Therefore create a class file that contains the following code:   1: using System.Net.Security; 2: using System.Security.Cryptography.X509Certificates; 3:   4: class Certificates 5: { 6: public static bool Vali

Running a 32-Bit Assembly on a 64-Bit IIS server

Last week, I was installing a web application on our 64-Bit webserver. After deployment I got following error when trying to load the website: Could not load file or assembly 'Name' or one of its dependencies. An attempt was made to load a program with an incorrect format. This error occurs when you have the following settings: IIS running on a 64-Bit Operating System The Assembly DLL in question has been compiled for 32Bit - check the project properties under the build tab, if under platform target you have x86 then it is 32-Bit only. By default a 64-Bit IIS machine is using an Application Pool that is not allowing a 32-Bit DLL to be processed. You have to enable 32-Bit support for the Application Pool yourself. Therefore open IIS Manager, find the application pool for the site and select the Advanced Settings. Notice that there is an option called " Enable 32-Bit Applications" . Enable this and you should be good to go .

TFS Power Tools 2010 available

The TFS Power Tools finally made it into a 2010 version.  Brian Harry wrote about them a couple of weeks ago: http://blogs.msdn.com/bharry/archive/2009/11/18/tfs-2010-power-tools-coming-soon.aspx . As most of the power tool features moved into the final product, there aren’t a lot of feature enhancements. Here are the links: 1. TFS MSSCCI Provider: http://visualstudiogallery.msdn.microsoft.com/en-us/f959ea32-5ac3-424a-a709-5001a158ebe8 2. TFPT: http://visualstudiogallery.msdn.microsoft.com/en-us/0e69a28f-020c-488b-80b3-f4c89a20621d

Truncate your SQL Server Transaction logs

If your SQL Server Transaction logs are exploding, you can shrink them using following commands: Check first if their are any pending transactions: 1: DBCC OPENTRAN(<TransactionLogName>) If there are no pending transactions, you can safely execute following command: 1: USE DatabaseName 2:   3: GO 4:   5: DBCC SHRINKFILE(<TransactionLogName>, 1) 6:   7: BACKUP LOG <DatabaseName> WITH TRUNCATE_ONLY 8:   9: DBCC SHRINKFILE(<TransactionLogName>, 1)

WorkItemTypeDeniedOrNotExistException

Configuring a new laptop comes with a lot of work. You have to install all the software you are used to, apply all the updates, change the configuration and so on. So after installing Visual Studio 2008, I continued with the SP1 upgrade.  But after the installation was done, I got the following error when I tried to open a work item in Team Explorer: Could not load type 'Microsoft.TeamFoundation.WorkItemTracking.Client.WorkItemTypeDeniedOrNotExistException' from assembly 'Microsoft.TeamFoundation.WorkItemTracking.Client, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. As the TFS administrator inside my organization, I had seen this error mentioned before, so I knew how to solve it. Running the VS2008 SP1 install for a second time will patch Team Explorer up to the required level.

Buy of your guilt

I think we all have written bad code before. And of course, we all want to rewrite this code if we could have a second chance. But most of the time, this is not possible. So you have to deal with the fact that  this bad code is still there (and hunting you down!). A horrible idea that keeps you awake at night. But from today on, you no longer have sleepless nights as you could do something simple and easy, buy of your guilt! Go to codeoffsets.com , buy bad code offsets and free your mind from this trouble. Your money will be well spend on supporting open-source projects to the greater benefit of everyone. This is not a joke!

Creating a Self Signed Certificate in IIS 7.0

In IIS 6.0, creating a self signed certificate was not available out-of-the-box.  You had to use tools like SelfSSL.exe to get the job done. In IIS 7.0 this feature is standard available and very easy to use as you can see in the Tip/Trick: Enabling SSL on IIS 7.0 Using Self-Signed Certificates blog post by Scott Guthrie.

Configuring Bindings for SSL in IIS 6.0

After configuring bindings in IIS 7.0 , I had to do the same thing in IIS 6.0. In IIS 6.0 it’s a little funkier than just clicking on the right action link. To configure this for SSL host headers in IIS 6.0 click Start , click Run , type 1: cmd   in the Open box, and then click OK . Type the following command at the command prompt: 1: cscript.exe %SystemDrive%\inetpub\AdminScripts\adsutil.vbs set /w3svc/<site identifier>/SecureBindings ":443:<host header>" where site identifier is the unique id that every website gets in IIS(if you have only one site, it’s 1) and host header is the host header for the Web site, for example, www.microsoft.com .

Scrum for Team System Version 3 Beta 2 released

Yesterday the Scrum For Team System template Version 3 was released. This version works for Visual Studio 2010 Beta 2 and brings a lot of new features and possibilities to the Scrum template. The linked zip files contain the latest version of the Scrum for Team System process template and client side tools. http://www.scrumforteamsystem.com/dl/SfTSv3.Beta2.x86.zip http://www.scrumforteamsystem.com/dl/SfTSv3.Beta2.x64.zip I especially like the Scrum masters workbench .

Touchpad issues with my Dell E6500

My new laptop is a Dell Latitude E6500. As I was installing some software, I noticed that the touchpad was very slow. Even after changing the mouse speed to the maximum, I still had to do multiple sweeps to get the cursor from one side of the screen to the other.  It was really annoying me, so I started to look for a solution. On the Dell website under the Input Device Drivers section, I found a driver update for the Touchpad. This replaces the default mouse driver with a touchpad specific driver. It makes working with the touchpad a lot smoother and now it’s also possible to disable the touchpad when an external pointer device is attached. Thank you, Dell!

Scrum but…

The last time one of my favorite phrases that I hear a lot is  “We are using scrum, but…” and then you hear a lot of reasons why they had to ‘modify’ scrum so it works for them. If you want to know more about this black art, have a look at this video .

And another (small) NHibernate update: NHibernate 2.1.2 is released

After a first small update some weeks ago, the NHibernate team released a second update for NHibernate 2.1 last weekend. NHibernate 2.1.2 can be downloaded here . The list of changes is rather small: Bug     *  [NH-2011] - Many-to-many inside a component will not be saved when using SaveOrUpdateCopy or Merge Improvement     * [NH-2022] - Allow overriding in Query By Example Patch     * [NH-2007] - SesssionIdLoggingContext patch for big resultsets     * [NH-2019] - Clarification about the use of <import> for polymorphic queries

Configuring an incremental build in TFS

By default, the TFS build server will execute a full build. This means that the existing workspace is cleaned up and all the source code is loaded from the TFS server. When your network connection is slow or when you have a lot of code on your build server, this can take a lot of time. To optimize this experience you can choose to execute an incremental build instead of a full build. To specify an incremental build, you must set the SkipClean, SkipInitialiseWorkspace, and ForceGet properties in the TFSBuild.proj file. Each of these properties configures a step to enable the incremental build experience: When Team Foundation Build performs a full build, it cleans the files in the intermediate build folder and sources folder in Clean target. In an incremental build this target must be skipped because these files must be intact for the next build. To achieve this, set the property SkipClean to true . As a part of a full build, Team Foundation Build deletes the old, and recreates a

SOA: The good, the bad, the ugly

Jens Andexer Executive IT Architect @ IBM  and Willem Bekker, Head of Architecture Initiatives @ Standard Bank talk about Service Oriented Architectures and their characteristics.  They focus not only the good qualities of this style of architecture but also about the bad and even the ugly parts. If you want to look beyond the hype and make an informed decision then this article is a must read!

Microsoft Application Architecture Guide, Second Edition

A final version is now available of the Microsoft Patterns & Practices Application Architecture Guide(second edition). It contains the architectural recommendations of the P&P team for the Microsoft application platform. Here are the relevant links: HTML version of Microsoft Application Architecture Guide, second edition . PDF version of the Microsoft Application Architecture Guide, second edition . Printed version of the Microsoft Application Architecture Guide, second edition . Knowledge Base for the Microsoft Application Architecture Guide, second edition .

Repartition your hard disk

Today I was configuring my new laptop. It was filled with a lot of software out of the box, but as almost every IT guy, I’m not that happy with the default configuration. So I’m installing a dual boot with Windows Server 2008 R2 and Hyper-V. Hosting my VPC’s using full PC power is a tempting idea. The first thing I had to do was repartition my hard disk. Used to work with Windows XP, I followed this Repartition your hard disk on-the-fly with Windows Vista article to guide me through the different steps.

Make managing config files easier with configSource

If your config files start growing too big, you can split them up into smaller pieces by using the configSource attribute. For example, if you want to extract your WCF services configuration to a dedicated configuration file, place the following in your web.config: 1: < configuration > 2: ... 3: < system.serviceModel configSource="services.config" /> 4: ... 5: </ configuration >   Create then a separate services.config file with the following structure: 1: < system.serviceModel > 2:   3: <!-- Place your service settings here --> 4:   5: </ system.serviceModel >   Make sure you use .config as the extension of your files so they cannot be served to the browser. Avoid .xml for example or your files can be available to prying eyes.

Using Visual Studio 2008 with Team Foundation Server 2010

Allthough you can connect to a TFS 2010 server with your existing Visual Studio 2008 (SP1) environment, most features are not available to you. To improve your experience you can install the Visual Studio Team System 2008 Service Pack 1 Forward Compatibility Update for Team Foundation Server 2010 . This is an update for the 2008 SP1 version of Visual Studio Team System Team Explorer and allows the 2008 SP1 version to work with the Team Foundation Server 2010. This update will allow teams to move forward and use the Team Foundation Server 2010 server even if part of the team continues to use the Team Explorer 2008 SP1 client.

Tracing performance issues with Performance Monitor

Before you start installing big (and expensive) tools to trace performance issues, it's a good idea to first have a look at Performance Monitor a/k/a PerfMon. It's an amazing tool that goes far too often unused available freely on every windows machine. Through a lot of different performance counters you can monitor different aspects of your system. To open PerfMon, just go to the Start Menu, choose Run and type perfmon . If you want to find out how the system is performing, then the following counter give you a good overview of general activity of the system. Processor utilization Processor\% Processor Time\_Total - how 'loaded' is the CPU at any given time. Don't confuse 100% processor utilization with a slow system though - processor queue length, mentioned above, is much better at determining this. Memory utilization Process\Working Set\_Total (or per specific process) - this basically shows how much memor

Is software development too complex?

Today traffic was killing me. So I tried to get the best out of it and started to listen to some podcasts. One very interesting one was a panel discussion on DotNetRocks about “Is software development too complex?” I was thinking if the question is not the other way around. Aren’t we making software development too complex? I cannot count the times I have seen a complex SOA architecture where a simple 2 tier application would suffice. Aren’t we all developers who like to try out the latest fun stuff even if it is not appropriate or a real business requirement for the current project? As most IT people have a technical background, we seem to focus mostly on technical details, sometimes forgetting what the customer actually needs. As I have fallen in this trap before, I’m always careful and thinking twice before I introduce a new tool/technology on my projects. (Speaking about new tools, I’m loving the Spark view engine ;-))

Report website is empty on TFS 2010

After the installation of TFS 2010, I was looking through all the parts to check if the installation was successful. When I browsed to the report manager website, I saw something strange: only the header was visible. As I had this problem before I knew it had something to do with the security settings. So I opened up SQL Server Management Studio, connected to the reporting services server and checked the security settings. But everything seemed OK. After some research I found out that even if you are logged on with administrative credentials, you might have trouble accessing Report Manager or the http://localhost/Reports site on a computer that is running Windows Server 2008 or Windows Vista. You might need to add those sites as Trusted Sites in Internet Explorer or start Internet Explorer as an administrator. To start Internet Explorer as an administrator, click Start, click All Programs, right-click Internet Explorer, and then click Run as administrator. More info here .

Change HostName for a WCF service in IIS 7

If you have create a simple WCF service “HelloWorld.svc”  and you load it up inside your Visual Studio,  you get a result like this if metadata publishing is enabled. The host name “mycomputer.private.mydomain.com” is automatically picked up by WCF.   Of course if this service is hosted on a public server, you don’t want to expose the server name to the consumers of your service. In the real production environment, you would want to use a public host name or even an IP address in the address. Therefore open up the IIS manager, select the website of your choice and click on the Bindings link in the Actions part. In the window that shows up add the hostname you want to use(for example www.microsoft.com ). The first time I did this I got following exception: This collection already contains an address with scheme http.  There can be at most one address per scheme in this collection. Parameter name: item This error was caused by the fact that I now had 2 addresses poi

MSBuild Extension Pack to the rescue

Spending a lot of time inside MSBuild scripts, optimizing our continuous integration processes, custom build tasks are very handy to simplify common actions. Creating your own build task is easy, if you’re interested take a look at How To: Write a Task . Of course, you’re probably not the first one who creates a specific task. Before you start creating your own, check out the MSBuild Extension Pack and the MSBuild Community Tasks .

I’m a certified Scrum Master

After completing the Certified Scrum Master training by Mitch Lacey at Ordina , I received an email last week by the Scrum Alliance confirming my certification.  I strongly believe that Scrum principles like openness, respect, commitment can benefit any (software) project. Now convince the rest of the world…

PDC 2009: Silverlight 4 announced

I hate it that I cannot be at the PDC conference this year as I hear all the great things that Microsoft is announcing there. At the Microsoft Professional Developer (PDC) conference, Scott Guthrie announced the availability of Silverlight 4 Beta. Everything I could dream of will be included in the box. Printing? Yep. Access to Local File System? Yep. Want to share your assemblies between SL and native .NET assemblies? No Problem. Want access to the clipboard? COM Interop? Web Cam & Micrphone? Done and Done. More info about all the new features here .

Web Setup fails on IIS7

As we were deploying a  WCF service via web setup projects on Windows Server 2008 with IIS 7.0, the setup failed with the installer saying "The installer was interrupted before [my app] could be installed. You need to restart the installer to try again." Of course after restarting the installer, the exact same error occurred again. :-) It seems that the MSI package is using the Metabase feature of IIS6. As this is not installed by default on an IIS7 machine, you get an error. Installing the IIS 6 Metabase Compatibility Component solves the issue. (it's situated under Role Services in the Server Manager)

Configuring WCF on IIS7

Today I was configuring a clean Windows Server 2008 system. When I deployed a a WCF Service on IIS 7, I got the following message: Server Error in Application “Default Web Site/...” HTTP Error 404.3 - Not Found The page you are requesting cannot be served because of the extension of the configuration. If the page is a script, add a handler. If the file should be downloaded, add a MIME map. The exception explains itself. IIS couldn’t find a correct handler for the *.svc extension for our WCF service. Execute the following steps to make it work: Start the command window (cmd) as an Administrator . Navigate to: C:\windows\Microsoft.Net\Framework\v3.0\Windows Communication Foundation\ Run the following command: ServiceModelReg –i

You must use the Role Management Tool to install or configure Microsoft .NET Framework 3.5

Today, I was installing SQL Server 2008 on a Windows Server 2008 R2 server. The setup detected that .NET 3.5 was missing and asked me to install this prerequisite. But after clicking OK, the setup prompted an error message of "You must use the Role Management Tool to install or configure Microsoft .NET Framework 3.5". It seems like Windows 2008 R2 already ships with the .NET 3.5.1 framework so you just need to enable the feature from Server Manager. Afterwards it worked like a charm.

Installing TFS 2010 Build Server

Some things I noticed when installing the TFS 2010 Build environment for my company .  First of all your existing TFS 2008 build agents will not work with a TFS 2010 server. You’ll need to install the TFS 2010 build service . It’s included in the same setup as the TFS application tier and you should set it up on a dedicated build machine. But you don’t need an extra build server, you can install the TFS 2010 Build Service on your existing TFS 2008 build machine. Even though they both default to the same port (9191), they can share that port without any problems. If you install the TFS 2010 build service on a clean machine, it will install the .NET 4.0 Framework which includes MSBuild. It will also install the components necessary to support the following: Code Analysis Unit test execution with MSTest Architectural layer validation Database schema deployment and test data generation Althought the build definitions in TFS 2010 o

After the flu, it's time for the Gu!

After the Mexican flu, another international phenomenon is coming to Belgium. Visug achieved in getting Scott Guthrie , Microsoft Corporate Vice President and .NET guru, live in Belgium! Scott will be speaking about Visual Studio 2010, .NET 4 as well as about the latest on web development with ASP.NET 4.0 and Silverlight. Got burning questions for Scott? This is your chance! After the talks he will be taking the time to answer questions from the audience. E-mail your questions upfront to scottinbelgium@visug.be or ask them directly during the Q&A time. Location: Kinepolis Brussels Date: December 4 th – 13:30 to 17:00 Topics covered · Visual Studio 2010 · .NET 4 and Web development · ASP.NET 4 · Silverlight

TechEd 2009 Berlin: Microsoft has Acquired the Teamprise Client Suite

One of the great stuff that Microsoft announced during the TechEd 2009 conference at Berlin was the acquisition of the Teamprise Client Suite from Teamprise. With this step heterogeneous development on the Team Foundation platform became once again easier. Free upgrades will be provided for all customers who are using Teamprise today. Teamprise Client Suite consists of 3 components: Eclipse plugin - Allows developers to perform all of their source control, bug tracking, build, and reporting operations from within Eclipse and Eclipse-based IDEs, such as Rational Application Developer, JBoss, BEA Workshop, and Adobe Flex Builder. It integrates into the menu system of Eclipse as a standard Team Provider plug-in, but also provides developers with specific views and forms for interacting with the Team Foundation Server. Developers using the Teamprise Plug-in for Eclipse have the ability to take part in the entire software development process in use by their organization without lea

Incentives versus passion

As I was riding home last Friday from TechEd Berlin with my colleague Gill, we were wondering why some of our developers pursue excellence relentlessly while another hits the door at 5:01 and doesn’t think about software development until tomorrow morning. I hoped for years that there must be some motivator, some technique, or some dynamic that will affect people positively to simply care. But even after providing incentives like salary, wonderful co-workers, free pizza and so on doesn’t seem to motivate everyone to care about excellence. In contrast to this I see people who don’t get these incentives but work very hard. So there must be something else that causes these people  to ponder, read, and learn. And this ‘something else’ is Passion . Loving software development, seeing software development as a craft, continuously looking for ways to grow as a developer are indicators that this passion lives inside you. This leads me to one conclusion: incentives will get you behavior

Tips for ORM Data Access

Data Access should be one of those problems that must be solved in software development a long time ago. Getting and putting data from a database was done 10 years ago and is still done today. But we keep struggling writing code to talk to our databases. Object relational mappers (ORM) are one step closer to writing more business oriented code and less infrastructure.  As an ORM is only a tool and not the solution, Jarod Ferguson posted following tips to help you implementing ORM right: Retrieve data by aggregate roots , have a repository for each root. The root queries should return the entire aggregate. If you are going to defer loading to a part of the root graph, be explicit. Instead of lazy loading Foo.Bars, I like to say Foo.LoadBars() <- yes seriously Learn how to identify the right aggregate Respect your aggregate root boundaries. Aggregates cannot call into other aggregates children! You shouldn’t be adding a product from the order, really, this is bad: LineItem.Product

Balancing your mockups

One of the dangers of mockups, is that they can become too realistic. Customers tend to believe that the application is “ almost done ” when you’re showing a realistic image of your application. Same problem for developers who think that requirements are set in stone when you give them this kind of image. Therefore don’t make your mockups too realistic. It must be clear that it’s only a temporarily design and not a final version. Two tools that can help you creating such an “unrealistic” look: Balsamiq   Sketchflow

The right tool for the right job: Specification gathering

As an architect and developer, I'm always looking for better ways to communicate with the business. Discussing specifications can be a challenging duty, especially if you end up with hundreds of pages with use cases, user stories and so on. It made me wonder if text is always the best medium to capture spec's. How do I think about it today? As a rules of thumb I think that things that don't get communicated well in text shouldn't be forced into a text medium . Therefore I'm advocating alternatives like whiteboard designs, mockups,... Why writing a 10 page summary describing all the fields on a screen if one image can get you to the same conclusions? After all, it's all about using the right medium in the right context.

TechEd 2009 Berlin: Fishbowl Fun part 2

In a previous post, I mentioned that I did a TechTalk with a colleague while we were at the TechEd conference in Berlin. The video is available here .

Didn't you notice the NHibernate 2.1.1 release?

The NHibernate team released 2 weeks ago NHibernate 2.1.1 , an update on NHibernate 2.1. As there wasn't much noise about it, I saw it only last week. One very interesting features has been added. DetachedCriteria are finally supported on the IStatelessSession. Simple CRUD was never so easy... If you're interested in the list with all changes, check out the release notes .

NHibernate 3.0 goodness

As the release of Entity Framework 4.0 is getting closer, it's time to have a look at the competition. After the release of NHibernate 2.1(.1), the NHibernate team is working on the next big release based on the .NET 3.5 framework. A selection of some of the upcoming features in NHibernate 3.0: QueryOver: Allows the usage of ICriteria in a type safe way. 1: IList<Student> students = session.QueryOver<Student>() 2: .Where(s => s.Name == "Fabio" ) 3: .And(s => s.StudentNumber > 100) 4: .List(); New Linq provider: A new linq provider is coming up fully based on AST. This will replace the current NHibernate.Linq 1.0 project. Strongly typed configuration for multiple parts of NHibernate(caching, sessionfactory,...) Better WCF integration for session management ... I think we'll have a very interesting future in ORM land...

TechEd 2009 Berlin: Entity Framework 4.0

I started our first day at TechEd Berlin with a level 300 session about Entity Framework. A lot of great features were shown: N-Tier support(Self-tracking entities) Persistance Ignorance Code only Better design experience Model first T4 Template generation Lazy loading Better support for stored procedures Better support for SQL functions ... Although I'm still a bit sceptical, I guess that this time it will be "usable" ;-)

TechEd 2009 Berlin: Fishbowl fun

As TechEd is not only a range of (hopefully) great sessions, it's also a place to meet some people and do some networking. So tomorrow I'll be doing a TechEd TechTalk together with my colleague Gill Cleeren . I will ask him very though and tricky questions about building business applications in Silverlight. I'll have some difficult questions for him. And as everything is recorded, the video will become available at the TechEd website. I'll post the link when it becomes available.

MSBuild error MSB3491: Could not write lines to file “D:\Builds\*\*.sln.Release.vsprops”.

Today I got the following error message from MSBuild. I've seen it before but I could not remember the problem. Build FAILED. “D:\Builds\*\BuildType\TFSBuild.proj” (CompileSolution target) (1:5) -> (CoreCompileSolution target) -> C:\Program Files\MSBuild\Microsoft\VisualStudio\TeamBuild\Microsoft.TeamFoundation.Build.targets(978,5): error MSB3491: Could not write lines to file “D:\Builds\*\*.sln.Release.vsprops”. Could not find a part of the path ‘D:\Builds\*\*.sln.Release.vsprops’. 0 Warning(s) 1 Error(s) Turns out that some solutions where moved in the source control repository. After correcting the file location, everything was up and running again. A more descriptive error message could have been usefull.

TDD: Test Driven Development or Test Driven Disaster?

Inside our organization we have a discussion evening tonight about TDD with the promising title 'TDD: Test Driven Development or Test Driven Disaster?'. I hope it will be an interesting discussion. Searching for some extra arguments for the 'Pro' camp, I stumbled on this blog post: TDD is not about testing, it's about how we develop software . I cannot agree more with the statements mentioned in this post.

12 ASP.NET MVC best practices

People keep posting their best practices about ASP.NET MVC usage . Simone Chiaretta made a presentation about the stuff he finds important when using ASP.NET MVC. Maybe it becomes time that I post my list of best practices? Will be continued...

NHibernate knol

As a frequent user of NHibernate, I find it a little bit disappointing that there's only one book out there, although it's a very good one. Luckily for us, Fabio Maulo did a great job creating a knol about NHibernate . A must read for every NHibernate lover!

Configure an MSBuild script to read file data

Today I had to configure an MSBuild script to read some data from a file. First I was looking for a custom task to achieve this goal. But I found that this functionality is out-of-the-box available in MSBuild. You can read from a file into a variable using: 1: <ReadLinesFromFile File= "c:\ReleaseNumber.txt" > 2: <Output TaskParameter= "Lines" 3: ItemName= "ReleaseNumber" /> 4: </ReadLinesFromFile> This will store the contents of the file "ReleaseNumber.txt" in a  property "ReleaseNumber". You can then use this property in other places inside your build file: 1: "@(ReleaseNumber)"   You can also write to files: 1: <WriteLinesToFile File= "Log.txt" Lines= "This is a log value." Overwrite= "false" />

Improving type safety for INotifyPropertyChanged without expressions

Type safety is important. Isn’t it one of the reasons why you should use a static typed language like C#?  But if you’re using the INotifyPropertyChanged interface, you allready have left that type safety. Why? Because it expects you to pass on the propertyname. Easiest way to do this is just using a string parameter. 1: public event PropertyChangedEventHandler PropertyChanged; 2:   3: private void NotifyPropertyChanged(String propertyName) 4: { 5: if (PropertyChanged != null ) 6: { 7: PropertyChanged( this , new PropertyChangedEventArgs(propertyName)); 8: } 9: } But what if you refactor your code and change the name of the property? The string value will remain the same and the compiler will not warn you. But your code will no longer work. A solution could be the use of expression to pass on the propertyname in a type safe way. 1: protected void NotifyPropertyChanged(Expression<Func&l

VSTO here I come

For one of my current clients, I’ll have to start looking at the  Microsoft Visual Studio Tools for the Microsoft Office System(VSTO). I used to work with macro’s and the COM API’s for Office before. It was not really my best experience , so I was not too eager to start using VSTO. How could I be more wrong? It’s amazing how good these tools are integrated in the Office system. I’m really starting to like it. Some invaluable resources that helped me a lot: the VSTO team blog . Microsoft Visual Studio Tools for the Office System Power Tools v1.0.0.0 Office development with Visual Studio Portal Expect to get a lot more posts about VSTO in the near future.

ReportViewer got an upgrade in Visual Studio 2010

Microsoft plans to release significantly updated and improved versions of both the Winforms and ASP.NET Report Viewer controls in Visual Studio 2010 .  This is going to include the long awaited local mode support for the new report processing engine , originally released with SQL Server Reporting Services 2008.  Most importantly, this provides RDL 2008 features (e.g. tablix, enhanced charts, gauge, rich text) in local mode without connection to a report server.  If you wanted to use RDL 2008 features with the report viewer controls available before, server mode was your only viable option, because report processing is performed remotely on a Reporting Services 2008 server.  Below are some of the other new features or changes who are coming as well. Support for the 2008 RDL schema in local mode.  This will give you all of the new features available in RDL in SQL Server 2008, including tablix, rich text, updated chart visualizations, gauge, and many others.  The updated report d