Sign In
Random ramblings about Technology
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
.NET
.NET Compact Framework 3.5
3.5
Active Directory
Application Block
Application Pool
BizTalk Server
CAB
Compact
CompositeUI
Exceptions
Framework
Integration
Isolated Hosts
Logging
MCS
MSMQ
NET
Outlook 2007
Security
SSIS
Team Foundation Server
WCF
WPF
XBAP
Archive
Archives
July 2010
(1)
June 2010
(2)
January 2010
(4)
December 2009
(1)
September 2009
(1)
August 2009
(2)
January 2009
(2)
August 2008
(1)
July 2008
(1)
May 2008
(1)
January 2008
(1)
May 2007
(3)
April 2007
(1)
March 2007
(2)
February 2007
(1)
January 2007
(1)
MSDN Blogs
>
Random ramblings about Technology
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Random ramblings about Technology
SQL Server–HOW-TO: quickly retrieve accurate row count for table
Posted
over 2 years ago
by
martijnh1
4
Comments
Recently, I’ve been involved in a very interesting project in which we need to perform operations on a table containing 3,000,000,000+ rows. For some tooling, I needed a quick and reliable way to count the number of rows contained within this table...
Random ramblings about Technology
SQL Server 2008 R2 - generating INSERT statements for a table
Posted
over 2 years ago
by
martijnh1
1
Comments
Learned something new today. Maybe it’s well-known, but new to me, you can just run “C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Publishing\1.4\SqlPubWiz.exe”. This nifty little tool can generate INSERT script very easily. Pictures tell the story...
Random ramblings about Technology
Reading MSMQ from within SSIS packages
Posted
over 2 years ago
by
martijnh1
0
Comments
Recently, I had to implement an SSIS package which imports some data into SQL Server from MSMQ. It turns out reading MSMQ from within an SSIS package is more difficult than it seems at first. I’ve documented how to get things working because I could find...
Random ramblings about Technology
TFS 2010 beta 2: connecting from Visual Studio 2008
Posted
over 2 years ago
by
martijnh1
0
Comments
Connecting to Team Foundation Server 2010 beta 2 from Visual Studio 2008 is easy: from Team Explorer, type the full URL in the "add server" dialog, e.g.: http://mytfsserver:8080/tfs/defaultcollection Please ensure you've (re-)installed Visual Studio 2008...
Random ramblings about Technology
Active Directory - Adding a user to a group from a non domain-joined computer throws PrincipalException
Posted
over 2 years ago
by
martijnh1
2
Comments
When using the new System.DirectoryServices.AccountManagement namespace, one might be inclined (as was I) to use the following code to add a user to a group (exception and comments handling removed): using ( GroupPrincipal groupPrincipal = GroupPrincipal...
Random ramblings about Technology
Unity v1.2 - using enum values from configuration; writing and configuring a custom type converter
Posted
over 2 years ago
by
martijnh1
1
Comments
Recently, I used Unity v1.2, which in my opinion is a great product. I had difficulty, however, with the configuration for a scenario I encountered. I needed an enum value to be passed to a constructor. Trying as I might, there was no way Unity was accepting...
Random ramblings about Technology
WCF extensions: The type 'x' registered for extension 'y' could not be loaded.
Posted
over 2 years ago
by
martijnh1
0
Comments
Quick note: if you configure a custom extension in WCF, don't forget to add it as a reference to your project. If you don't configuration will run just fine, but at runtime, the following exception occurs: System.Configuration.ConfigurationErrorsException...
Random ramblings about Technology
Unit testing: COM object that has been separated from its underlying RCW cannot be used
Posted
over 3 years ago
by
martijnh1
2
Comments
Let's say you're writing unit tests for code which uses COM objects. You want some initialization and some cleanup to be done. So you set up your test: private static MyStore store; [ ClassInitialize ()] public static void MyClassInitialize( TestContext...
Random ramblings about Technology
Office 2010 Development – Outlook main window ribbon ID
Posted
over 3 years ago
by
martijnh1
0
Comments
I’m currently writing an Outlook add-in and I’m looking into getting this compatible with both Office 2007 and Office 2010. One of the new features in Outlook 2010 is the main window Ribbon. Using VSTO, you can create your own Ribbon, which can be...
Random ramblings about Technology
PrintMonitor – A C# print spooler monitor
Posted
over 3 years ago
by
martijnh1
0
Comments
Recently, a colleague of mine had a requirement of getting information on the number of pages being printed by users. Monitoring a printer is done by calling FindFirstPrinterChangeNotification, waiting for the returned WaitHandle to be signaled and then...
Random ramblings about Technology
Outlook Add-in: Replying to people who voted
Posted
over 3 years ago
by
martijnh1
0
Comments
Recently, I asked my colleagues if they were interested in beta testing some software I’m building for internal use. I used voting buttons to enable easy tracking of replies. When I wanted to reply to all people who voted “Yes” on my request, I discovered...
Random ramblings about Technology
Feedback requested: Planning on Enterprise Library 5 has started!
Posted
over 3 years ago
by
martijnh1
1
Comments
Planning on Enterprise Library 5 has started! See Gregori's blog for more information if you want your EntLib needs to be in the next release: http://blogs.msdn.com/agile/archive/2009/01/26/enterprise-library-5-what-s-on-your-wish-list.aspx !
Random ramblings about Technology
Reflector add-in: Favorites
Posted
over 3 years ago
by
martijnh1
1
Comments
Every developer knows about and uses Reflector ;-) I use it a lot to learn about the inner workings of products. When analyzing what goes where and why, it's easy to lose track (jumping from method to method to base class, etc.). Bookmarks are quick and...
Random ramblings about Technology
Suppressing Personal Identifiable Information (PII) in WCF log files
Posted
over 4 years ago
by
martijnh1
1
Comments
Given the vast amount of information transported between systems in today's enterprise environments, a lot of which is considered either private (addresses, social security numbers, credit card information, mortgage and pension plans, etc) or of high...
Random ramblings about Technology
Adding a new BizTalk Server Isolated Host needs a new Application Pool
Posted
over 4 years ago
by
martijnh1
3
Comments
Recently, we tried creating a secondary Isolated Host to separate receive and send processing for WCF. After reconfiguring the servers, we were faced with the "Receive location for address ' ' not found. (The BizTalk receive location may be disabled)...
Random ramblings about Technology
Running Virtual Machines under alternate user credentials on a Domain Controller
Posted
over 4 years ago
by
martijnh1
0
Comments
Introduction Recently, I was experimenting with Team Foundation Server 2008, setting it up with SSL and running it within a test domain. For the Team Foundation Server, I couldn't use the host installation as it runs Windows Server 2003 R2 x64 edition...
Random ramblings about Technology
Fixing exception messages on the .NET Compact Framework 3.5
Posted
over 4 years ago
by
martijnh1
17
Comments
FWIW: I recently ran into trouble while developing for the .NET Compact Framework, v3.5. Upon all exceptions, the framework would tell me: " An error message is available for this exception but cannot be displayed because these messages are optional...
Random ramblings about Technology
Testing WCF service implementations
Posted
over 5 years ago
by
martijnh1
3
Comments
When writing WCF implementations, or any code for that matter, testing is an important part of the process. This week, I was building tests for implemented WCF services and had difficulty aligning all the external dependencies of the tests (running hosts...
Random ramblings about Technology
WCF Message validation (1) – WCF samples to the rescue
Posted
over 5 years ago
by
martijnh1
7
Comments
Recently, I needed to validatie messages going into a WCF service. It turned out the WCF samples are a rich source of knowledge and I found a sample which performs XMLSchema-based validation in \TechnologySamples\Extensibility\MessageInspectors. ...
Random ramblings about Technology
Shockwave Flash preview handler for Windows Vista and Outlook 2007.
Posted
over 5 years ago
by
martijnh1
2
Comments
Based on the excellent article from Stephen Toub , I was inspired to write a Shockwave Flash preview handler. Basically, it's just a plain UserControl which hosts the ActiveX wrapper for the player. It works from both Outlook 2007 and Windows Vista. The...
Random ramblings about Technology
Programmatic BizTalk Server Orchestrations - code repost
Posted
over 5 years ago
by
martijnh1
1
Comments
A previous post of mine had some sample code on creating BizTalk Server Orchestrations programmatically, opening up template based guidance packages. The sourcecode for the sample can now be found here .
Random ramblings about Technology
BizTalk Server Pipeline Component Wizard moved
Posted
over 5 years ago
by
martijnh1
0
Comments
As we are phasing out GotDotNet, projects need a new location to be hosted. I've moved the BizTalk Server Pipeline Component Wizard to it's new location. Please find it here .
Random ramblings about Technology
CAB WPF XBAP implementation available (again)
Posted
over 5 years ago
by
martijnh1
1
Comments
In the time to come, I'll be uploading packages available from my previous blog in the past because they got lost during my ISP transfer. First off, here 's the CompositeUI Application Block XBAP WPF implementation, as I blogged about here . Please...
Random ramblings about Technology
Integration Masterclass Redelivery
Posted
over 5 years ago
by
martijnh1
0
Comments
Microsoft Consulting Services in The Netherlands has developed a great integration masterclass, in which integration specialists compare Microsoft integration technologies and deliver real-world field experience in BizTalk Server implementations including...
Random ramblings about Technology
Ping!
Posted
over 5 years ago
by
martijnh1
3
Comments
Welcome to my blog. My name is Martijn Hoogendoorn, I work for the Dutch Services dvision of Microsoft and will be posting my technical adventures on here. I've been blogging for some time now; previous posts can be found here (archive only).
Page 1 of 1 (25 items)