c# - WCF easiest security mode to implement -
what's easiest security mode implementation in wcf when:
- both client , service .net applications.
- client , service negotiating on internet.
ssl
in not available.- port 80 (web) preferred communication.
- and using
x 509 certificate
should last option (same credentials in configuration file @ both sides preferred, if possible)
what mean security? possible use "security" on internet without certificates if security mean username , password (client authentication) , happy plain text messages. if require form of encryption , signing need certificate or have build own solution. (using windows security mode not possible because works in same ad domain or trusted domains.)
wcf provides default username/password (ws-security usernametoken profile plain text password) on secured channel (transport or message security). possible use username/password over unsecured channel in such case send plain text password on internet. usernametoken profile offers digested password - not considered secure used often. wcf doesn't support there some implementation available.
i go https. why in not possible?
Comments
Post a Comment