Impact of Gen-AI on IT Jobs - Growth Mindset Show
x
C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
.NET
ADO.NET
Android
ASP.NET
C#
Databases & DBA
Design Patterns & Practices
iOS
Java
OOP/OOD
SharePoint
Software Testing
Web Development
WPF
View All
5
Reply
How do we do security in WCF?
Rajendra Tripathy
11y
5.6k
1
Reply
Delete Row
Delete Column
Insert Link
×
Insert
Cancel
Embed YouTube Video
×
Width (%)
Height (%)
Insert
Cancel
Table Options
×
Rows
Columns
First row as header
Create Table
Insert Image
×
Selected file:
Alignment
Left
Center
Right
Select an image from your device to upload
Upload to Server
Cancel
Submit
In WCF there are 2 types of Security.1. Transport Security : Transport level security happens at the channel level. Transport level security is the easiest to implement as it happens at the communication level. WCF uses transport protocols like TCP, HTTP, MSMQ etc and every of these protocols have their own security mechanisms. One of the common implementation of transport level security is HTTPS. HTTPS is implemented over HTTP protocols with SSL providing the security mechanism. No coding change is required it's more of using the existing security mechanism provided by the protocol.2. Message Security : Message level security is implemented with message data itself. Due to this it is independent of the protocol. Some of the common ways of implementing message level security is by encrypting data using some standard encryption algorithm.
Rajendra Tripathy
11y
5
We can use security modes like Message, Transport, TransportMessageWithCredentials.Windows = windows identity Transport & TransportMessageWithCrednetials = Certificate security.
Vishal Jadav
9y
0
In WCF, There are two type of security available please check in details on :http://www.csharpmagic.com/IQuestionAns/difference-between-message-and-transport-level-security-in-wcf-33.aspx
Annad Kumar
10y
0
Please see URL http://www.codeproject.com/Articles/36732/WCF-FAQ-Part-security-related-FAQ
Dhanik Sahni
10y
0
http://www.tutorialspoint.com/wcf/wcf_security.htm
Munesh Sharma
10y
0
Message