Sign in
Daniel Vasquez Lopez's Blog
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
.NET
AV
C#
Composition
Crash
Debugging
ETW
Extensibility
Framework
FREB
Frustration
FTP
IIS
Instrumentation
KD
Kernel
Line
MEF
Performance
Public Radio
Redirect
Regex
Rewrite
Rewriter
unit test
Archive
Archives
July 2012
(1)
July 2011
(1)
February 2011
(1)
January 2011
(1)
April 2010
(1)
March 2010
(2)
February 2010
(1)
January 2010
(1)
November 2009
(1)
March 2009
(2)
February 2009
(1)
January 2009
(1)
September 2008
(1)
June 2008
(1)
April 2007
(1)
April 2005
(1)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Daniel Vasquez Lopez's Blog
How to consume ETW events from C#
Posted
over 4 years ago
by
aractnido
16
Comments
In my previous post I explained how to collect ETW events from URL Rewrite (or any other IIS provider) and then display those structured events in the Event Viewer. Now I want to show you how to collect ETW events using C#. The .NET Framework 3.5 provides...
Daniel Vasquez Lopez's Blog
Write your own UI Rewrite Template Extension!
Posted
over 5 years ago
by
aractnido
4
Comments
The GoLive release of URL Rewrite Module is now available and has a lot of improvement thanks to the IIS Community feedback (and tons of internal brainstorm meetings!). A new feature is the ability to create Rewrite Rules by using Rewrite Templates, Rewrite...
Daniel Vasquez Lopez's Blog
How to display URL Rewrite ETW Events in the Event Viewer
Posted
over 4 years ago
by
aractnido
4
Comments
IIS Failed Request Tracing is a powerful way to troubleshoot Web Requests, it provides an easy way to track each execution step for one specific request. URL Rewrite Module provides several events that can be tracked using Failed Request Tracing, here...
Daniel Vasquez Lopez's Blog
Enable code coverage in Visual Studio
Posted
over 3 years ago
by
aractnido
4
Comments
For some reason, every time that I want to enable code coverage for a library that I’m unit testing, I found hard to remember how to enable this fabulous feature. Here are the steps (that work for me): Double click the [Local].testsettings file in the...
Daniel Vasquez Lopez's Blog
Run MSTest.exe as a native 64-bit process.
Posted
over 4 years ago
by
aractnido
3
Comments
If you need to run MS Test command line utility as a 64-bit process you need to do 2 things: Disclaimer : Be aware that this is not supported and it is under you own risk. 1. Backup the MSTest.exe file first and then remove the 32-bit flag by running...
Daniel Vasquez Lopez's Blog
Faster proxy detection for HttpWebRequest
Posted
over 4 years ago
by
aractnido
2
Comments
Do a web request using System.Net classes, HttpWebRequest or WebClient. For example: new WebClient().DownloadFile( "http://tinyurl.com/d5yy8a" , @"C:\Temp\file.xml" ) ; Or: HttpWebRequest.Create( "http://tinyurl.com/d5yy8a"...
Daniel Vasquez Lopez's Blog
URL Rewrite for IIS 7.0 / Regular Expressions and Wildcards
Posted
over 5 years ago
by
aractnido
2
Comments
Last week we shipped the first preview of URL Rewrite Module for IIS 7.0. If you are not familiar with URL Rewriting engines, please check out the walkthroughs: http://learn.iis.net/page.aspx/460/using-url-rewrite-module/ . If you are you familiar...
Daniel Vasquez Lopez's Blog
How to allow self-signed client certificates in IIS
Posted
9 months ago
by
aractnido
2
Comments
IIS allows you to use client certificates but it may give you hard time if your certificate is wacky (e.g. self-signed). In the client-side, if you have a .NET application that wants to be more permissible on accepting server certificates, you can hook...
Daniel Vasquez Lopez's Blog
You placed a large amount of data on the Clipboard
Posted
over 3 years ago
by
aractnido
2
Comments
I don’t really like this dialog, it is confusing and really hard to read for me. I just simply don’t like it: No further comment.
Daniel Vasquez Lopez's Blog
NPR in Windows Phone
Posted
over 2 years ago
by
aractnido
2
Comments
I just realized that forgot to use “NPR” as keyword for my “Tiny Radio” app; so here is this blog entry My first Windows Phone 7 app is “Tiny Radio” and what it does is to simply tune the closest NPR (National Public Radio) station based on your geographical...
Daniel Vasquez Lopez's Blog
System.ComponentModel.Composition Example
Posted
over 4 years ago
by
aractnido
1
Comments
I started playing with the .NET Framework 4.0 composition namespace (also known as MEF) and I want to share the most simple example I could write. The program prints out the providerName field, but the actual value is provided by the ExternalProvider...
Daniel Vasquez Lopez's Blog
Registry values for IIS URL Rewrite
Posted
over 3 years ago
by
aractnido
0
Comments
The following registry values can be set for the IIS URL Rewrite module and will affect the global behavior of the module; use them at your own risk :) All these values (DWORD) can be set under the registry key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\InetStp...
Daniel Vasquez Lopez's Blog
Introduction
Posted
over 8 years ago
by
aractnido
0
Comments
Hi there!, I'm a development consultant at MS Mexico. I'd been bloging at http://danielvl.blogspot.com and now it's time to move to this new home :) I'm going to share whatever I have learned from the CLR, design and some Servers (e.g. BizTalk). Currently...
Daniel Vasquez Lopez's Blog
How to find a process command-line using kernel debugger?
Posted
over 6 years ago
by
aractnido
0
Comments
I hadn't posted since two years ago; a lot of things happen in such a time and now I'm part of the IIS team. I'm not sure about what to talk about, so I will start with random stuff. I found debugging very task oriented, there are a bunch of ways to...
Daniel Vasquez Lopez's Blog
Disposing System.Threading.Timer
Posted
over 2 years ago
by
aractnido
0
Comments
I guess there are many ways to dispose this a timer, I was looking for an efficient way of doing it and making sure that after the Dispose method was called I had no outstanding timer notifications. In Win32 there is the concept of timer-queue timers...
Daniel Vasquez Lopez's Blog
How to escape {curly brackets} in URL Rewrite rule
Posted
over 2 years ago
by
aractnido
0
Comments
There is no escaping character in an URL Rewrite expression, but here is how you include curly bracket within an URL Rewrite expression. For opening { curly bracket you will always require to use the UrlDecode function to generate the { character from...
Daniel Vasquez Lopez's Blog
Getting the line number for a Faulting Application Error
Posted
over 3 years ago
by
aractnido
0
Comments
It is possible to know the line where an application faulted even if it was not running under debugger or memory dump is not available. It won’t probably tell you why it failed, but it will give you at least a point where to start investigating. After...
Daniel Vasquez Lopez's Blog
URL Rewrite 2.0 Performance
Posted
over 3 years ago
by
aractnido
0
Comments
Do performance work it is easy when you have the right tools for measuring gains or lost. I will share some thoughts about how to improve performance during rewriting, but please keep in mind that any change you do must be well thought and with performance...
Page 1 of 1 (18 items)