Click here to Skip to main content
15,886,199 members
Articles / WCF

Create a WCF Service using wsHttpBinding and use in a Windows Forms application

Rate me:
Please Sign up or sign in to vote.
4.82/5 (7 votes)
10 Dec 2012CPOL1 min read 66.2K   2K   14  
Create a WCF service using wsHttpBinding and use in a Windows Forms application.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.ServiceModel;
using System.IdentityModel.Selectors;

namespace TestService
{
    public class CustomValidator : UserNamePasswordValidator
    {
        public override void Validate(string userName, string password)
        {
            if (userName == null || password == null)
            {
                throw new ArgumentNullException();
            }

            if (!(userName == "a" && password == "a"))
            {
                throw new FaultException("Password or name is wrong");
            }
        }
    }
}

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
Indonesia Indonesia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions