Integrating WCF Clients with ASMX Services
Posted by: Keyvan Nayyeri,
on 25 May 2007 |
View original | Bookmarked: 0 time(s)
Back in December 2006 I linked to Thom Robbins' blog post about integrating WCF with ASMX services. The other side of integration between WCF and ASMX services is integration between WCF clients and ASMX services which is the title of this post. First I create an ASMX service to build my WCF client for it. using System; using System.Web; using System.Web.Services; using System.Web.Services.Protocols; [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo...