Thursday, July 5, 2012
#
If you’re using Win8 yet, no doubt you’ve run into the charms bar. There’s a feature to extend via Share, links to your application.
Details on the HOW are here:
Adding share (Metro style apps using JavaScript and HTML)
http://msdn.microsoft.com/en-us/library/windows/apps/hh758314.aspx
Do, Digital Folio has taken their shopping tool to Win8 and enabled some really cool ways to take advantage. I was fortunate enough to help out the folks there a while back on some other things, but their app is a nice shoppers aid.
Digital Folio for Windows 8 | Instant Price Comparisons from Major Retailers on the Products You Want
Wednesday, June 20, 2012
#
Thursday, April 12, 2012
#
When you’re urnning under x64 you have to affect 1 addition spot in the registry to disable this warning – which clearly should only be done by folks that know what they’re doing.
NOTE: affecting the registry can be harmful – do so at your own risk.
Windows Registry Editor Version 5.00
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\10.0\Debugger]
"DisableAttachSecurityWarning"=dword:00000001
[HKEY_CURRENT_USER\Software\Wow6432Node\Microsoft\VisualStudio\10.0\Debugger]
"DisableAttachSecurityWarning"=dword:00000001
Thursday, March 22, 2012
#
When you’re working with WIF and WSTrustChannelFactory when you call the Issue operation, you can also request that a RequestSecurityTokenResponse as an out parameter.
However, what can you do with that object? Well, you could keep it around and use it for subsequent calls with the extension method CreateChannelWithIssuedToken – or can you?
public static T CreateChannelWithIssuedToken<T>(this ChannelFactory<T> factory, SecurityToken issuedToken);
As you can see from the method signature it takes a SecurityToken – but that’s not present on the RequestSecurityTokenResponse class.
However, you can through a little magic get a GenericXmlSecurityToken by means of the following set of extension methods below – just call
rstr.GetSecurityTokenFromResponse() – and you’ll get a GenericXmlSecurityToken as a return.
public static class TokenHelper
{
/// <summary>
/// Takes a RequestSecurityTokenResponse, pulls out the GenericXmlSecurityToken usable for further WS-Trust calls
/// </summary>
/// <param name="rstr"></param>
/// <returns></returns>
public static GenericXmlSecurityToken GetSecurityTokenFromResponse(this RequestSecurityTokenResponse rstr)
{
var lifeTime = rstr.Lifetime;
var appliesTo = rstr.AppliesTo.Uri;
var tokenXml = rstr.GetSerializedTokenFromResponse();
var token = GetTokenFromSerializedToken(tokenXml, appliesTo, lifeTime);
return token;
}
/// <summary>
/// Provides a token as an XML string.
/// </summary>
/// <param name="rstr"></param>
/// <returns></returns>
public static string GetSerializedTokenFromResponse(this RequestSecurityTokenResponse rstr)
{
var serializedRst = new WSFederationSerializer().GetResponseAsString(rstr, new WSTrustSerializationContext());
return serializedRst;
}
/// <summary>
/// Turns the XML representation of the token back into a GenericXmlSecurityToken.
/// </summary>
/// <param name="tokenAsXmlString"></param>
/// <param name="appliesTo"></param>
/// <param name="lifetime"></param>
/// <returns></returns>
public static GenericXmlSecurityToken GetTokenFromSerializedToken(this string tokenAsXmlString, Uri appliesTo, Lifetime lifetime)
{
RequestSecurityTokenResponse rstr2 = new WSFederationSerializer().CreateResponse(
new SignInResponseMessage(appliesTo, tokenAsXmlString),
new WSTrustSerializationContext());
return new GenericXmlSecurityToken(
rstr2.RequestedSecurityToken.SecurityTokenXml,
new BinarySecretSecurityToken(
rstr2.RequestedProofToken.ProtectedKey.GetKeyBytes()),
lifetime.Created.HasValue ? lifetime.Created.Value : DateTime.MinValue,
lifetime.Expires.HasValue ? lifetime.Expires.Value : DateTime.MaxValue,
rstr2.RequestedAttachedReference,
rstr2.RequestedUnattachedReference,
null);
}
}
Thursday, January 19, 2012
#
Windows Azure Fieldnote
Summary
Windows Azure Drives [1] provide a means to represent a file based (disk drive) persistent storage option for the various role types within Windows Azure Compute. Each of the roles within Windows Azure can mount and utilize for persistent storage (that survives reboot, reimaging, and updated deployments, of a role instances).
During the mounting of a VHD as a CloudDrive, the managed classes have no means to control the drive letter assignment this directly through the CloudDrive managed classes that are provided through the Windows Azure SDK.
Problem
Many solutions today require the use of standard Windows File IO based access and instead of refactoring solutions to leverage the storage options available in the PaaS part of the Windows Azure platform, solutions deployed to Windows Azure can mount a Virtual Hard Disk (VHD) that is persisted in a storage account inside of a running instance. That Page Blob backed VHD is then represented through Virtual Disk Services and Windows Cloud Drive services to the running instances as a Disk Drive and addressable through File IO using a Drive Letter.
While a persistent drive option is available, the drive letter assignment is determined at runtime during the mounting process. This potentially presents a problem with existing solutions, codebases, libraries that require a setting to be established prior to runtime. For example, an application configuration setting that provides a full path, including the drive letter to a location for read/write access for File IO.
Solution
The following solution takes advantage of the Virtual Disk Services through the DiskPart.exe operating system utility to first identify what the VHD is mounted as and, select that volume, and re-assign the letter to the target drive letter.
The original idea for the approach comes from this blog post here: http://techyfreak.blogspot.com/2011/02/changing-drive-letter-of-azure-drive.html
While there is a COM interface available that could be wrapped via an interop layer, the choice was made to initiate a process to take the actions required for remapping the drive letter due to simplicity. Additionally, while there is an existing managed Interop assembly available (Microsoft.Storage.Vds) that is an undocumented and unsupported assembly.
The example scenario presented does the following:
1. Leverages a Windows Azure Web Role (could be a Worker Role or VM Role as well)
2. Implements a Windows Console applications that:
a. Is a Startup task – in elevated mode and background
b. Runs elevated in order to affect Virtual Disk Services
c. At startup:
- Mounts the VHD from Windows Azure Storage
- Detects if target drive letter and re-assigns as needed to target drive letter **
d. Then Continuously (every 30 seconds)
- i. Checks if drive is mounted on target drive letter
- ii. If not, reassigns drive letter **
** Drive Letter reassignment is done through a System.Process startup object that runs Diskpart.exe with a “select volume” and “assign drive letter” command sequence.
Implementation
The sample solution contains the following:
1. Windows Azure Web Role – simple MVC3 application that just lists the mapped CloudDrives using the CloudDrive.GetMountedDrives() method
2. CloudDriveManager class library – helper class that provides the CloudDrive management actions leveraged by the caller (either Console or other code)
3. CloudDriveManagerConsole – Windows console application intended to be a startup project and running in elevated mode in order to affect the assigned driver letter
4. CloudDriveManagerRole – implementation of Microsoft.WindowsAzure.ServiceRuntime.RoleEntryPoint – which allows this class to be used from within a Windows Azure Web or Worker role – however, that role entry point would need to be elevated (via the “Runtime” and “NetFxEntryPoint” Elements)
5. Logger – simple logger class that writes to a Queue for debugging purposes
6. ResponseViewer – simple WPF application that reads Queue messages so you can view log messages from your cloud instances – purely for debugging purposes
7. TestListDrives – simple Windows console application that lists the mapped CloudDrives – usable from within the Role instance by using Remote Desktop and connecting to the instance
Instance Initialization
During role startup, Windows Azure will execute the Task defined in the Service definition in background mode and elevated (running as system). Inside of the console application, the implementation of OnStart does the following:
public override bool OnStart()
{
try
{
Initialize();
MountAllDrives();
}
catch (Exception ex)
{
_logger.Log("fail on onstart", ex);
}
return true;
}
void MountAllDrives()
{
try
{
var driveSettings = RoleEnvironment.GetConfigurationSettingValue(DRIVE_SETTINGS);
string[] settings = driveSettings.Split(':');
CloudStorageAccount account =CoudStorageAccount.FromConfigurationSetting(STORAGE_ACCOUNT_SETTING);
string dCacheName = RoleEnvironment.GetConfigurationSettingValue(DCACHE_NAME);
LocalResource cache = RoleEnvironment.GetLocalResource(dCacheName);
int cacheSize = cache.MaximumSizeInMegabytes / 2;
_cloudDriveManager = new CloudDriveManager(account, settings[0], settings[1][0], cache);
_cloudDriveManager.CreateDrive();
_cloudDriveManager.Mount();
}
catch (Exception ex)
{
_logger.Log("fail on mountalldrives", ex);
throw;
}
}
Mostly, the startup routine calls into the custom class CloudDriveManager, which provides the simple abstraction to the Windows Azure CloudDrive managed class.
The custom CreateDrive method calls the CloudDrive create drive method in a non-destructive manner – and, for this sample, creates the initial VHD in storage if it does not already exist.
Mounting calls the managed classes CloudDrive.Mount along with calling into a custom VerifyDriveLetter method.
public void Mount()
{
_logger.Log(string.Format("mounting drive {0}", _vhdName));
_cloudDrive = _account.CreateCloudDrive(_vhdName);
var driveLetter = _cloudDrive.Mount(_cacheSize, DriveMountOptions.Force);
_logger.Log(string.Format("mounted drive letter {0}", driveLetter));
var remounted = VerifyDriveLetter();
}
Within VerifyDriveLetter there’s some logic to validate the current state of the mounted drives. And then verification if the mounted drive is the intended drive letter.
public bool VerifyDriveLetter()
{
_logger.Log("verifying drive letter");
bool rv = false;
if (RoleEnvironment.IsEmulated)
{
_logger.Log("Can't change drive letter in emulator");
//return;
}
try
{
DriveInfo d = new DriveInfo(_cloudDrive.LocalPath);
if (string.IsNullOrEmpty(_cloudDrive.LocalPath))
{
_logger.Log("verifydriveLetter: Not Mounted?");
throw new InvalidOperationException("drive is notmounted");
}
if (!char.IsLetter(_cloudDrive.LocalPath[0]))
{
_logger.Log("verifiydriveLeter: Not a letter?");
throw new InvalidOperationException("verifydriveletter - not a letter?");
}
if (IsSameDrive())
{
_logger.Log("is same drive; no need to diskpart...");
return true;
}
char mountedDriveLetter = CurrentLocalDrive(_vhdName);
RunDiskPart(_driveLetter, mountedDriveLetter);
if (!IsSameDrive())
{
var msg = "Drive change failed to change";
_logger.Log(msg);
throw new ApplicationException(msg);
}
else
{
Mount();
}
_logger.Log("verifydriveletter done!!");
return rv;
}
catch (Exception ex)
{
_logger.Log("error verifydriveletter", ex);
return rv;
}
}
The IsSameDrive method validates if the current mapped drive is indeed the planned drive letter. If not, it will return “false”.
bool IsSameDrive()
{
char targetDrive = _driveLetter.ToString().ToLower()[0];
char currentDrive = CurrentLocalDrive(_vhdName);
string msg = string.Format(
"target drive: {0} - current drive: {1}",
targetDrive,
currentDrive);
_logger.Log(msg);
if (targetDrive == currentDrive)
{
_logger.Log("verifydriveLetter: already same drive");
return true;
}
else
return false;
}
Finally, the RunDiskPart method initiates the action of spawning a new process with the dynamically created DiskPart script file that selects the existing volume name (by drive letter) and assigns the target drive letter.
void RunDiskPart(char destinationDriveLetter, char mountedDriveLetter)
{
string diskpartFile = Path.Combine(_cache.RootPath, "diskpart.txt");
if (File.Exists(diskpartFile))
{
File.Delete(diskpartFile);
}
string cmd = "select volume = " + mountedDriveLetter + "\r\n" + "assign letter = " + destinationDriveLetter;
File.WriteAllText(diskpartFile, cmd);
//start the process
_logger.Log("running diskpart now!!!!");
_logger.Log("using " + cmd);
using (Process changeletter = new Process())
{
changeletter.StartInfo.Arguments = "/s" + " " + diskpartFile;
changeletter.StartInfo.FileName =
System.Environment.GetEnvironmentVariable("WINDIR") + "\\System32\\diskpart.exe";
//#if !DEBUG
changeletter.Start();
changeletter.WaitForExit();
//#endif
}
File.Delete(diskpartFile);
}
Output and Results
As an example of the interaction and how the drive appears within the running Windows Azure Role, the following screen shots illustrate the results.
Program Startup
At program startup the drive is initially mounted by the Console application – immediately the drive is mounted as the F: drive – the startup code verifies if this is the intended drive – as shown below in the logs, it isn’t, so the code initiates the RunDiskPart method setting M: as the mapped drive.

The following shows how a Windows Azure Drive appears after the custom code reassigns the drive letter to the Operating system using Windows Explorer – the drive is selected below.

Within the custom MVC3 application, which simply just lists the Mounted Windows Azure drive (which runs in a separate Process non-elevated – the drive appears as a regular Operating System drive – accessible for File IO as required using the intended drive letter.

Forced Letter Change
The following shows what happens if the drive letter is intentionally changed – in this example, I just initiate a DiskPart set of commands to assign the mounted drive the letter L:

As you can see in the Windows Explorer window the letter now appears as L: for the WindowsAzureDrive.
Within approximately 30 seconds (which is the value used in the Run method by the custom code) VerifyDriveLetter detects it’s not the intended drive and initiates a change.

And the below image shows the drive again, appearing as the M: drive:

Future Options
Since capabilities in the Windows Azure platform change over time the ability to dictate the specific letter to be used may come available. Until then, this approach, by means of the Windows Azure Drive and Virtual Disk Services abstraction provided by the platform offers a means to accommodate codebase and application logic that is dependent upon predetermined drive letters.
References
[1] Windows Azure Drives http://www.windowsazure.com/en-us/develop/net/fundamentals/cloud-storage/#drives
[2] Virtual Disk Service http://msdn.microsoft.com/en-us/library/windows/desktop/bb986750(v=vs.85).aspx
[3] CloudDrive Storage Client http://msdn.microsoft.com/en-us/library/microsoft.windowsazure.storageclient.clouddrive.aspx
[4] Diskpart.exe http://technet.microsoft.com/en-us/library/cc770877(v=WS.10).aspx
[5] Task element http://msdn.microsoft.com/en-us/library/windowsazure/gg557552.aspx#Task
[6] Runtime element http://msdn.microsoft.com/en-us/library/windowsazure/gg557552.aspx#Runtime
[7] NetFxEntryPoint element http://msdn.microsoft.com/en-us/library/windowsazure/gg557552.aspx#NetFxEntryPoint
Solution File: MountXDriveSameLetter.zip
Tuesday, December 6, 2011
#
When you’re debugging security related things, sometimes you need to take a look at the thread identities user token.
When you’re inside of Visual Studio 2010 – in the watch windows you enter ‘$user’ and you’ll get the same as when in windbg with !token –n
![SNAGHTML6a3d635[6] SNAGHTML6a3d635[6]](http://gwb.blob.core.windows.net/cicorias/Windows-Live-Writer/a572807ec351_FBF6/SNAGHTML6a3d6356_thumb.png)
Wednesday, November 30, 2011
#
If you’re like me, having those PDF version for offline review are great. It was a pain before as I had to individually print web pages to single PDF using tools.
Now, TechNet can track a “book” of topics for you, and then generate HTML or PDF for you to download – personal publishing 
Roll-your-own techdocs for free - TONYSO - Site Home - TechNet Blogs
Friday, October 14, 2011
#
Thursday, October 13, 2011
#
Thursday, October 6, 2011
#
While the development server in Visual Studio 2010 is great for most work, it does have 1 shortcoming in that if you start adding content types that are not part of the base set of known Mime types built in, you won’t affect the proper header response that is emitted to the client/browser.
For example MP4 files, out of the box the development web server emits application/octet-stream or something like that. What we really need is video/mp4.
Now, with IIS Express, you can easily switch over to use that and just add the correct mapping to the section of the web.config when you’re running in integrated mode. Such as follows:
<system.webServer>
<modules runAllManagedModulesForAllRequests="true" />
<staticContent>
<mimeMap fileExtension=".mp4" mimeType="video/mp4" />
<mimeMap fileExtension=".m4v" mimeType="video/m4v" />
</staticContent>
</system.webServer>
However, with the Visual Studio 2010 built in Web Development server, you can’t affect the mime type support through configuration.
For this a simple NuGet package is available that provides a simple HttpModule to affect the ContentType on the response headers. it reads the Web.config for the site and will honor the section above – this all happens only when NOT running in Integrated Pipeline mode.


Sample Solution and Source here: SampleMimeHelper.zip
The HttpModule makes use of dynamically loading via the PreApplicationStartMethod and the DynamicModuleHelper utility method that is part of the Microsoft.Web.Infrastructure namespace.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Diagnostics;
using System.Configuration;
using System.Web.Configuration;
using System.Xml.Linq;
using Microsoft.Web.Infrastructure.DynamicModuleHelper;
[assembly: PreApplicationStartMethod(typeof(MimeHelper), "Start")]
/// <summary>
/// Summary description for MimeHelper
/// </summary>
public class MimeHelper : IHttpModule
{
static Dictionary<string, string> s_mimeMappings;
static object s_lockObject = new object();
public static void Start()
{
if ( ! HttpRuntime.UsingIntegratedPipeline)
DynamicModuleUtility.RegisterModule(typeof(MimeHelper));
}
static string GetMimeType(HttpContext context)
{
var ext = VirtualPathUtility.GetExtension(context.Request.Url.ToString());
if (string.IsNullOrEmpty(ext)) return null;
CreateMapping(context.ApplicationInstance);
string mimeType = null;
s_mimeMappings.TryGetValue(ext, out mimeType);
return mimeType;
}
static void CreateMapping(HttpApplication app)
{
if (null == s_mimeMappings)
{
lock (s_lockObject)
{
if (null == s_mimeMappings)
{
string path = app.Server.MapPath("~/web.config");
XDocument doc = XDocument.Load(path);
var s = from v in doc.Descendants("system.webServer").Descendants("staticContent").Descendants("mimeMap")
select new { mimeType = v.Attribute("mimeType").Value, fileExt = v.Attribute("fileExtension").Value };
s_mimeMappings = new Dictionary<string, string>();
foreach (var item in s)
{
s_mimeMappings.Add(item.fileExt.ToString(), item.mimeType.ToString());
}
}
}
}
}
public void Dispose() { }
public void Init(HttpApplication context)
{
context.EndRequest += new EventHandler(context_EndRequest);
}
void context_EndRequest(object sender, EventArgs e)
{
try
{
HttpApplication app = sender as HttpApplication;
string mimeType = GetMimeType(app.Context);
if (null == mimeType) return;
app.Context.Response.ContentType = mimeType;
}
catch (Exception ex)
{
Debug.WriteLine(ex.Message);
}
}
}
Wednesday, September 21, 2011
#
Keith Dahlby has a good post on creating a fake SPContext. Here’s the link and the code
NOTE: This is not production safe code – use at own risk…
http://solutionizing.net/2009/02/16/faking-spcontext/
public static SPContext FakeSPContext(SPWeb contextWeb)
{
// Ensure HttpContext.Current
if (HttpContext.Current == null)
{
HttpRequest request = new HttpRequest("", web.Url, "");
HttpContext.Current = new HttpContext(request,
new HttpResponse(TextWriter.Null));
}
// SPContext is based on SPControl.GetContextWeb(), which looks here
if(HttpContext.Current.Items["HttpHandlerSPWeb"] == null)
HttpContext.Current.Items["HttpHandlerSPWeb"] = web;
return SPContext.Current;
}
I wanted an ability to be able to simply time methods and write to a log/trace sink and a very simple approach that I ended up using was to provide a method that takes an Action delegate which would be the method that is to be timed.
The following is what I came up with (this is my reminder…)
class Program
{
static void Main(string[] args)
{
TestMethod1();
}
private static void TestMethod1()
{
LoggingHelper.TimeThis("doing something", () =>
{
Console.WriteLine("This is the Real Method Body");
Thread.Sleep(100);
});
}
}
public static class LoggingHelper
{
public static void TimeThis(string message, Action action)
{
string methodUnderTimer = GetMethodCalled(1);
Stopwatch sw = Stopwatch.StartNew();
LogMessage( string.Format("started: {0} : {1}", methodUnderTimer, message));
action();
sw.Stop();
LogMessage(string.Format("ended : {0} : {1} : elapsed : {2}", methodUnderTimer, message, sw.Elapsed));
}
private static string GetMethodCalled(int stackLevel)
{
StackTrace stackTrace = new StackTrace();
StackFrame stackFrame = stackTrace.GetFrame(stackLevel + 1);
MethodBase methodBase = stackFrame.GetMethod();
return methodBase.Name;
}
static void LogMessage(string message){
Console.WriteLine("{0}", message);
}
}
Tuesday, September 20, 2011
#
Matthew Kerner’s session at BUILD covers many of the patterns and approaches that a well designed and highly scalable solution can do to make the most efficient use of the platform.
Truth is many of the areas Matthew covers should be for on Premise too – including use of Windows Azure CDN.
At about ~30:00 in Matthew references one of my posts on Windows Azure CDN and using it with your Compute role (hosted service) as an CDN origin…
Nice table comparing Windows Azure Queues vs. Windows Azure AppFabric Service Bus – note the comment regarding in WAZ SDK 1.5 Queue message size is now 64KB
Of course, I like the name of the blog too.
Comparison of Windows Azure Storage Queues and Service Bus Queues « Microsoft Technologies Rocks !!!
Wednesday, September 7, 2011
#