Sign In
Rick Rainey's Blog
I have just a few words to say about ...
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Blog Home
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
ADO.NET Data Services
Identity
IIS/WAS
Managed Services Engine
system.net
Visual Studio
WCF
Windows Performance Toolkit
Archive
Archives
January 2012
(1)
March 2011
(1)
March 2010
(1)
December 2009
(1)
August 2009
(1)
July 2009
(1)
June 2009
(3)
March 2009
(1)
October 2008
(1)
September 2008
(1)
August 2008
(2)
February 2008
(1)
November 2004
(1)
October 2004
(1)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Rick Rainey's Blog
Monitoring Client-Outbound WCF Calls
Posted
14 days ago
by
rickrain
0
Comments
Recently a colleague asked me if I knew of a way to monitor outbound WCF calls for an application. He just wanted to be able to see the number of outbound calls an application was making. Performance Monitor normally provides the answer to these kinds...
Rick Rainey's Blog
Why scriptLocation may not work when pointing to a proxy script file in your application config file.
Posted
10 months ago
by
rickrain
0
Comments
Consider this scenario: You have a .NET application that issues HttpWebRequests to a remote server. You deploy this application to an environment that requires proxy servers be configured using a proxy script file (WPAD / PAC). The solution...
Rick Rainey's Blog
Optimizing Intermediary Services for throughput
Posted
over 2 years ago
by
rickrain
1
Comments
I recently had the privilege of working with a couple of engineers (Naveed Zaheer and Manoj Kumar) in an internal lab setting to see how much throughput we could achieve through the Managed Services Engine (MSE) and a downstream WCF service hosted in...
Rick Rainey's Blog
Installing Windows Performance Toolkit (WPT)
Posted
over 3 years ago
by
rickrain
1
Comments
So, you want to install the Windows Performance Toolkit ? This is located in the Windows SDK which you can download here . If you’re like me, you may not want to blindly install the entire SDK. The installer options that provide the...
Rick Rainey's Blog
Self hosting an ADO.NET data service
Posted
over 3 years ago
by
rickrain
0
Comments
All the samples I’ve seen for ADO.NET Data Services show hosting the service in IIS. This is a natural choice, especially considering the rich hosting environment IIS provides and the tooling support provided by Visual Studio. However, it...
Rick Rainey's Blog
ASP.NET Web Services to WCF services: Answering the question - Why?
Posted
over 3 years ago
by
rickrain
0
Comments
Windows Communication Foundation (WCF) is the platform for building distributed applications. Developers are usually eager to adopt the latest of any technology because, well, it’s the latest. There’s an element of coolness associated with building systems...
Rick Rainey's Blog
WCF Instancing, Concurrency, and Throttling – Part 3
Posted
over 3 years ago
by
rickrain
0
Comments
In part 1 and 2 , I talked about instancing and concurrency. In this post, the 3 rd and final post on this subject, I’m going to show an example of how you can use throttling to achieve optimal throughput for a service. But first… What is throttling...
Rick Rainey's Blog
WCF Instancing, Concurrency, and Throttling – Part 2
Posted
over 3 years ago
by
rickrain
1
Comments
From a developers perspective, code is either thread-safe or it is not. WCF will assume your service is not thread-safe unless you tell it otherwise by applying the ConcurrencyMode behavior. Your options for concurrency are Single (default), Multiple...
Rick Rainey's Blog
WCF Instancing, Concurrency, and Throttling – Part 1
Posted
over 3 years ago
by
rickrain
1
Comments
Building distributed systems using WCF has so many advantages. One of the things I hear consistently from customers is that it allows them to focus their development efforts on writing business logic code and less on having to write “plumbing” code. Still...
Rick Rainey's Blog
Making asynchronous service calls from a WinForm client
Posted
over 3 years ago
by
rickrain
0
Comments
It’s well known that long blocking calls in the main user interface (UI) thread of a WinForm client application should be avoided. As users, we certainly get annoyed when the application stops responding. Yet, even today, we see this over-and-over again...
Rick Rainey's Blog
XmlSerializer Faults
Posted
over 4 years ago
by
rickrain
1
Comments
There's a new WCF feature in the .NET Framework 3.5 SP1 release that I just recently learned about. It has to do with serialization of SOAP faults when using the XmlSerializer for your service rather than the default DataContractSerializer. Consider...
Rick Rainey's Blog
"Zermatt" Resources for Developers and Architects
Posted
over 4 years ago
by
rickrain
1
Comments
I am captivated by the work going on in the identity space and as a result have created a collection of resources that I particularly like. If you are interested in this space too and want to know where to go for information, consider these resources...
Rick Rainey's Blog
Base addresses and IIS/WAS hosted services
Posted
over 4 years ago
by
rickrain
1
Comments
If you have ever hosted a WCF service in IIS/WAS then you know that the .svc file for your service is the base address. For example, if you create a web site project called MyService using the WCF Service template, then your base address for that...
Rick Rainey's Blog
Visual Studio 2008 Service Pack 1
Posted
over 4 years ago
by
rickrain
1
Comments
Now available here . My installation took about 2 hours and 15 minutes to download and install. Make sure you set aside some time for updating your development machine. In this post, I am going to talk about some (not all) of the features I particularly...
Rick Rainey's Blog
Preventing the WCF Service Host from launching in Visual Studio 2008
Posted
over 4 years ago
by
rickrain
1
Comments
One of the great new features of Visual Studio 2008 is the new tools for WCF developers. No longer is it necessary to code up your own test host and test client applications to test your service. This functionality is provided for you automatically...
Rick Rainey's Blog
Visual C++ 6.0: How do I create symbols files (.pdb) for release builds?
Posted
over 8 years ago
by
rickrain
0
Comments
I seem to be getting asked this question alot lately. In Visual C++ 6.0, symbol files are generated automatically for debug build configurations of your project. For release build configurations, they are not. Does this mean that you cannot generate symbol...
Rick Rainey's Blog
ATL: What is the difference between the _ATL_DEBUG_REFCOUNT and _ATL_DEBUG_INTERFACES macros?
Posted
over 8 years ago
by
rickrain
0
Comments
I have just always used _ATL_DEBUG_INTERFACES and never really considered using _ATL_DEBUG_REFCOUNT . After investigating this further, this is what I found (referring to ATL v7.1): From Atldef.h: #ifdef _ATL_DEBUG_REFCOUNT #ifndef _ATL_DEBUG_INTERFACES...
Page 1 of 1 (17 items)
MSDN Blogs
>
Rick Rainey's Blog