Click here to Skip to main content
15,895,777 members
Articles / Programming Languages / C#

WCF Support for WSDL 2.0

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
12 Feb 2011CPOL3 min read 44K   457   5  
A command line utility to generate WCF proxies from WSDL 2.0 documents.
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Text;
using System.Web;
using System.Xml;
using System.Xml.Serialization;
using svcutil2;
using WsdlConverter;

namespace ConsoleApplication1
{
    public class Program
    {
        private const string prefix = "http://localhost:8765/wsdl2wsdl/";

        public static void Main(string[] args)
        {
            var listener = new Wsdl2Listener(prefix);
            listener.Start();
        }

    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Israel Israel
Web services interoperability expert.

http://webservices20.blogspot.com/

Comments and Discussions