Click here to Skip to main content
15,887,214 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;
//using Microsoft.Web.Services3.Messaging;


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

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

    [SoapHeader("authheader", Direction = SoapHeaderDirection.InOut)]
    [WebMethod]
    public string GetServiceString()
    {
        return "This is Standard Service Customer";
    }
    
}

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