What bindings and security configurations are best for an environment with Windows and Mac Computers?
What bindings and security configurations are best for an environment with Windows and Mac
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
BasicHttpBinding will probably have the greatest reach. Just about every platform supports it, since the data is simply sent as an HTTP POST to a specific Uri — any platform which has a web browser can use this binding.
You can do an HTTPs binding with BasicHttpBinding as well — so you can still secure your data. You can also use security like TransportWithMessageCredential to provide username/password validation.