Just need to know when adding a service reference to a WCF service in a mango silverlight project which types of WCF services (webHttpBinding, WSBinding etc) will visual studio generate a proxy for automatically?
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.
The supported standard bindings are
basicHttpBinding– with security mode of either None, Transport or TransportWithMessageCredentials (for username/password over HTTPS), orcustomBinding. The binding element supported are username/password security, binary/text encodings and http/https transports. You can actually usewsHttpBindingas well, if you disable message security and reliable messaging (it’s roughly equivalent to a custom binding with text encoding + http transport).Ah, and to be able to add a service reference, you’ll need to enable metadata on the service (it’s the default on the VS templates).