TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Neeraj Kumar
NA
28
13.8k
How to implement Authentication at service level in WCF
Jan 8 2014 2:51 AM
Can someone assit me how to implement Authentication at service level in WCF ?
In below example i want to apply Authentication on class "User" and method "Test()"
[ServiceContract]
public interface IUser
{
[OpeartionContract]
string Test();
}
//User.svc file
Public class User : IUser
{
public string Test()
{return "";}
}
If possible please suggest any exmaple.
Reply
Answers (
0
)
i want to use xml serialization in wcf
WCF Service restrict user access