Telerik blogs

Latest

For the latest product updates, please visit Release.

  • Productivity Debugging

    TeamPulse R1 2011 is Here: Bug Tracking, Productivity Features

    We are very excited to announce the official release of the R1 2011 version of our agile project management tool TeamPulse. This release expands the tool’s feature set with the addition of a Bug Tracking module, which allows users to record, triage, assign and evaluate bugs in an easy and intuitive way. We also wanted R1 2011 to be about increasing individual and team productivity. That’s why we introduced features like the “My Perspective” view, and the interactive TaskBoard, which give users more control over their daily work. Read through for the full list of new ...
    May 05, 2011
  • Productivity Debugging

    Isolating a Problem in a Sample Project

    If you have contacted Telerik support before, chances are that you have been asked to send us a sample project. The time invested in isolating a problem before opening a ticket is well paid off. Such tickets require less time for investigation and are usually closed with only one or two replies. In almost all cases the problem can be easily isolated by following a few simple guidelines. Here they are.
    September 29, 2010
  • Productivity Debugging

    Bug-tracker conversion tool: Gemini -> TFS

    Our migration to Team Foundation Server started a couple of months ago with the Source Control adoption. Another step that we performed was to transfer our Countersoft's Gemini bug-tracker projects to TFS Issue Tracking System. I've been searching around for a tool that would perform the job automagically ;-) and found nothing but other inquiries on the subject without answers. So, I'm posting the code, which helped us migrate our projects. Hopefully someone else can benefit from it too and I can save some of your time up.   Well, there is no rocket science here, but the code, ...
    February 05, 2008
  • Productivity Debugging

    HACK: debug modifications to the ASP.NET session

    Today I had some strange experience. I have been hunting a strange bug that caused something to be placed in the ASP.NET session at a time that it was not supposed to be.  My biggest problem was finding out who was putting an object in the session and what that object actually contained. I already knew that the HttpSessionState instance was being stored in the current HttpContext's Items collection (thanks to Mr. Lutz Roeder, of course), and my initial plan was to inherit from HttpSessionState and intercept the calls made to methods like Add, Remove, etc.  Alas, HttpSessionState is marked as...
    November 21, 2006
  • Productivity Debugging

    Fiddler and IE7

    Do you use Fiddler to inspect the HTTP traffic? You may be faced with the following problem: since we started using the beta of the IE7 browser we started experiencing problems when monitoring the requests sent to http://localhost or http://127.0.0.1 - the requests were not reported by the Fiddler tool. It took us some time to understand what was the exact reason for this until we found the workaround for this issue here: http://www.fiddlertool.com/Fiddler/help/hookup.asp --- quote --- Why don't I see IE7 or System.NET traffic sent to http://localhost or http://127.0.0.1? IE7 and the .NET Framework are hardcoded not to send requests for Localhost through any proxies,...