:: thoughts on team system and more RSS 2.0
# Thursday, January 11, 2007

Note to self: Just to save the extra minutes to find the darn download - the VSTS Team Explorer can be downloaded here.

Thursday, January 11, 2007 9:21:10 PM (W. Europe Standard Time, UTC+01:00)  #    Comments [0] -
Team System
# Friday, December 22, 2006

The new-and-improved version has been published. Promised this time is a number of buggfixes, especially VS2003 integration deserves this...

This version (1.2) includes (from the download page):

  • Enable handling branched solutions in Visual Studio 2003.
  • Fixed issues to enable provider to support Toad for SQL Server 2.0.
  • Enhanced the "Choose Folder in Team Foundation Server" dialog.
  • Fixed bug which prevented Properties Dialog from displaying local path.
  • Work Items Query list in the Checkin Dialog is loaded and saved on the disk.
  • "Get" operation performance improvements.
  • Defect fixes

The Visual Studio 2005 Team Foundation Server MSSCCI Provider v.1.2 can be downloaded here.

Friday, December 22, 2006 9:33:46 PM (W. Europe Standard Time, UTC+01:00)  #    Comments [0] -
Team System

Got this question yesterday; can the ASP.NET session object be used to store state in a web service? The answer is yes, but the web service method must be marked with EnableSession = true.

Below is a small code snippet that shows how it's done:

[WebMethod(EnableSession = true)]
public string HelloWorld()
{   
   // Check if item in cache, else add it.
   if (HttpContext.Current.Session["stateItem"] == null)
   {
      HttpContext.Current.Session["stateItem"] = "some-item-to-store";
   }

   return (string)HttpContext.Current.Session["stateItem"];
}

Simple, but yet easy to forget...

Friday, December 22, 2006 8:36:30 PM (W. Europe Standard Time, UTC+01:00)  #    Comments [0] -
Web Services
# Thursday, November 30, 2006

Last week I was interviewed by the Swedish Microsoft Partner program about my thoughts regarding the MCP program, why we focus on certification and what the value of it is. The article can be found here: http://www.microsoft.com/sverige/partner/callista_mcp.aspx (in Swedish).

Thursday, November 30, 2006 6:35:42 PM (W. Europe Standard Time, UTC+01:00)  #    Comments [0] -
General
# Tuesday, November 14, 2006

This year we attended the European TechEd in Barcelona, Spain. Tons of fun stuff and many Swedish colleagues.

Our impressions from TechEd can be viewed on the Swedish Microsoft MSDN web, found at http://www.microsoft.com/sverige/msdn/teched_2006.aspx (in Swedish).

Tuesday, November 14, 2006 10:40:02 PM (W. Europe Standard Time, UTC+01:00)  #    Comments [1] -
General
# Friday, April 28, 2006

I gave a talk on WCF Updates at the IBC Euroforum conference yesterday. There seemed to be a good interest in WCF, which of course was encouraging.

The presentation can be downloaded here: Windows Communication Foundation.ppt (567 KB)

Enjoy!

Friday, April 28, 2006 7:09:29 PM (W. Europe Standard Time, UTC+01:00)  #    Comments [0] -
WCF (Indigo)
News
About the author/Disclaimer

Disclaimer
The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

© Copyright 2009
Mathias Olausson
Sign In
Statistics
Total Posts: 77
This Year: 1
This Month: 1
This Week: 0
Comments: 31
All Content © 2009, Mathias Olausson
DasBlog theme 'Business' created by Christoph De Baene (delarou)