Click here to Skip to main content
15,894,405 members
Articles / Web Development / ASP.NET

WebService Routing (Soap Router)

Rate me:
Please Sign up or sign in to vote.
4.71/5 (4 votes)
27 Aug 2010CPOL4 min read 49.2K   554   23  
This article explains WebService routing using WSE 3.0
using System;
using System.Web;
using System.Collections;
using System.Web.Services;
using System.Web.Services.Protocols;


/// <summary>
/// Summary description for CBRoutingService
/// </summary>
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
public class CBRoutingService : System.Web.Services.WebService {

    public CBRoutingService () {

        //Uncomment the following line if using designed components 
        //InitializeComponent(); 
    }

    //[SoapHeader("authheader", Direction = SoapHeaderDirection.InOut)]
    [WebMethod]
    public string HelloWorld() {
        return "Hello World";
    }
    
}


//public class AuthHeader : SoapHeader
//{
//    public string UserId;
//}

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)



Comments and Discussions