Viewing and comparing websites to IE6-8 (plus picture)

by fkollmann 10/13/2009 4:17:28 PM

Robert Vogel blogged about Microsoft having released the Expression Web SuperPreview which allows viewing and comparing websites in and to IE6 to IE8 plus comparing them to an image.

expr

Finally, no VPC image anymore…

DOWNLOAD

Q: http://weblog.robert-vogel.eu/2009/09/expression-web-superpreview/

Remote IP in WCF 3.5

by fkollmann 10/9/2009 4:22:21 PM

Keyvan Nayyeri wrote a blog post a while ago about how to gather the remote IP from remote WCF connections. I wrote an extension method based on his code:

public static RemoteEndpointMessageProperty GetRemoteEndpoint(this OperationContext oc)
{
    if (oc == null)
        throw new NullReferenceException();

    object v;

    if (!oc.IncomingMessageProperties.TryGetValue(RemoteEndpointMessageProperty.Name, out v))
        return null;

    return v as RemoteEndpointMessageProperty;
}

Unfortunately it does not seem to work with the WCF implementation of Silverlight 3 :( .

Q: http://nayyeri.net/detect-client-ip-in-wcf-3-5

UPDATE: Switched to TryGetValue()

TFS 2010 “Basic” Edition

by fkollmann 10/6/2009 10:09:00 AM

There is going to be a “Basic” Edition of TFS 2010… sweet :) .

http://blogs.msdn.com/bharry/archive/2009/10/01/tfs-2010-for-sourcesafe-users.aspx