We created a guidance package to integrate this tool into Visual Studio 2005.
To download a version of the guidance package join the workspace at http://practices.gotdotnet.com/projects/sopatterns .
This information was also posted by Jason
Pablo
Michelle (aka Das Blonde) is writing a WCF book, and you take a look at the chapters on her blog.
The current chapters are great a you can get immediate hands-on practice.
Pablo
Check this post by Ed Pinto to see which are the changes that will break existing code.
Pablo
I made some research about this topic and I found this post from Matt Tavis. Basically we need to define our service contract in the following manner to support WCF and ASMX: namespace ServiceContracts { [ServiceContract] [WebServiceBinding(Conforms... public interface IEmployeeManager { [OperationContract] [WebMethod] Employee getEmployee(int employeeId); } } The System.Web.Services.WebServ... class is used to specify a binding ......
On 02/21/06 the new bits from WinFX were relased. WinFX Runtime Components: http://www.microsoft.com/do... Windows SDK: http://www.microsoft.com/do... Microsoft Visual Studio Code Name "Orcas" Community Technology Preview - Development Tools for WinFX: http://www.microsoft.com/do... ......