Showing results for 2004 - Buck Hodges

Dec 30, 2004
0
0

December CTP is available!

Buck Hodges
Buck Hodges

Since my last post ages ago was about a CTP release, I'll start back up again with a post to point to the December CTP.  This one is definitely an improvement over the last one, though it is clear we still have a ways to go.You may want to check out the newsgroups for VSTS.  There are a number of people there who post information based on...

Team Foundation ServerSource Control
Sep 1, 2004
0
0

VSTS CTP release, including the Team Foundation portion this time

Buck Hodges
Buck Hodges

If you have access to the MSDN downloads or can get a hold of one the DVDs, you can now try out Hatteras and the rest of the Team Foundation along with the rest of Team System.  You'll need several machines to install the CTP release of Team System included in the VS2005 Beta 1 Refresh.This release is very close to what we use everyday.&n...

Team Foundation ServerSource Control
Aug 13, 2004
0
0

Handling HTTP response codes in SOAP proxies

Buck Hodges
Buck Hodges

Continuing with the last post on authentication issues with wsdl.exe-generated SOAP proxies, you may need to handle HTTP status codes to provide custom exceptions.  To do this, the SoapHttpClientProtocol class (actually its parent HttpWebClientProtocol) provides a pair of GetWebResponse() methods for derived classes to override. ...

C#
Aug 10, 2004
0
0

More on working with SOAP proxies

Buck Hodges
Buck Hodges

In my last post on authentication and SOAP proxies, I mentioned setting the Credentials property on the wsdl.exe-generated proxy object.  Another way to do it and do other things is to override the GetWebRequest() method. In the following example, the culture is set in the standard HTTP header to tell the server what culture to use for any for...

C#
Aug 9, 2004
0
0

Windows XP SP2

Buck Hodges
Buck Hodges

So while the main distribution is by Windows Update, you can get SP2 as one large (266MB) download from the Microsoft Download Center.  The download page urges users to turn on Windows Update and wait if only updating one machine, because the typical amount downloaded by the smart downloader is about 80 MB.  If you have a n...

Random
Aug 9, 2004
0
0

So what runs on Virtual PC 2004?

Buck Hodges
Buck Hodges

I was reading an article comparing Virtual PC 2004 and VMWare 4.5, and they mentioned a link to a site called “What Works and What Doesn't in Microsoft Virtual PC 2004.”  The site currently lists 622 entries.

Random
Aug 2, 2004
0
0

Another Hatteras blogger: Jim Presto

Buck Hodges
Buck Hodges

Jim Presto, a tester on the Hatteras team, has got a blog going.  He starts off with checkin and promises to delve into checkin policies next.  Now, he mentions that “hopefully everyone has the concept of a portfolio project,” but I'm not sure about that.  Perhaps James will post some more about that and how it relates to...

Source Control
Jul 31, 2004
0
0

Using pushd to get to network paths

Buck Hodges
Buck Hodges

A short while ago I saw someone at the office use pushd to cd into a network path.  I've used pushd/popd on Windows for some time, but I never thought to try it on a network path or actually read the help for it.  Pushd will actually map the path to a drive letter automatically and then take you there.  The latter part is expected, b...

Random
Jul 30, 2004
0
0

Python on .NET just got more support

Buck Hodges
Buck Hodges

Jim Hugunin, who has been writing IronPython, has been hired by Jason Zander (CLR PUM).  He joins the CLR team on Monday, August 2, to work full time on IronPython and generally supporting dynamic/scripting languages on the CLR.  That's really great news for Python on .NET.  Check out the slide from his presentation at...

Random
Jul 29, 2004
0
0

Authentication and SOAP proxies

Buck Hodges
Buck Hodges

My last post discussed authentication in web service calls using HttpWebRequest.  That caused one reader to wonder how this ties back to SOAP requests.If you are using wsdl.exe to generate a SOAP proxy class, it derives from System.Web.Services.Protocols.SoapHttpClientProtocol.  That class has a Credentials property. If you want to use th...

C#