mountain9

if you don't let go, you can't fall off.

  • Increase connections in IIS 5.1

    I recently had the pleasure of working in IIS 5.1 on a project where I had to open a lot of connections to the web server.  Of course, I received the dreaded 403.9 too many users connected error.  After some poking around, @codinghorror presented a solution on his blog from back in 2005 (http://www.codinghorror.com/blog/2005/06/uncrippling-windows-xps-iis-51.html):

    Are you getting 403.9 "Access Forbidden: Too many users are connected" errors on an XP Pro website? You're limited by default to 10 concurrent connections by design, but this can be increased. First, make sure your default windows script host is set to the ...

    Full story

    Comments (0)

  • Running multiple websites on Windows 7 couldn't be easier...

    Because I'm a consultant, I have a number of different websites set up in IIS all at the same time.  I was constantly having to stop and start the various sites because I didn't want to run them all on different ports.  I didn't think I could use any kind of host header filtering in order to run all the sites on the same port at the same time.  Suddenly, it dawned on me... set up some aliases in your hosts file:

    127.0.0.1    site1.local

    127.0.0.1    site2.local

    Duh... works like a charm and now I'm not stopping and starting various sites all the ...

    Full story

    Comments (0)

  • Using jQuery to retrieve work items from Team Foundation Server's Work Item Tracking web service

    I was writing some jQuery to query the work item collection on our team foundation server through the Work Item Tracking web services. I was having a really hard time tracking down some documentation on how to do something like this. Apparently this isn't supported nor, based on what I just tried, is it a good idea.

    The first step in my process was to build a SOAP envelope to send to the team foundation server:

     

     1:  var soapEnv = "<soapenv:Envelope  xmlns:soapenv='http://schemas.xmlsoap.org/soap/envelope/'> \
     2:    <soapenv:Body> \
     3:    <QueryWorkitems \
     4:    xmlns='http://schemas.microsoft.com/TeamFoundation/2005/06/WorkItemTracking/ClientServices/03/'...

    Full story

    Comments (0)

  • Chrome frame in Internet Explorer causes locks / delays / hanging

    As an IE user, I recently installed Chrome frame in order to use Google Wave.  After installing it, I noticed a number of different applications on my machine (not just Internet Explorer) hanging and experiencing poor system performance.  I am running Windows 7 with the latest patches.  It took me a while to determine Chrome frame was the cause of the hanging, but after uninstalling it, my system is back to performing consistently without hanging or delays.  Just thought I'd write about it in case anyone else was experiencing the issue.

    Full story

    Comments (0)

  • jQuery selectors

    I was working on a project where I needed to select a single cell of a table and get the text out of it using jQuery. I went with a multiclass css selector, like so:

     1:  <td  class="class1 class2">...</td>

    Using jQuery, I used $(".class1.class2") which returned an array of objects... so far so good. The jQuery spec indicates that the css selector is supposed to return an array of elements. My read of that was that the array returned should contain objects which have the typical jQuery attributes / methods (.text, .html, .val, ...

    Full story

    Comments (0)