1
I have a WCF Restful that I am using for a mobile application, I need a single method, the payment, use HTTPS, I do not want to enable HTTPS for the entire service because some methods return a large amount of data and would be too heavy for a mobile. Is that possible? How?
I wonder if you have any property or other way to allow this method to be accessed only when using a secure connection... Something like...
[OperationContract]
[ExigirHTTPS(true)]
[WebInvoke(Method = "POST", UriTemplate = "/Disponibilidade", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
DisponibilidadeRS Disponibilidade(DisponibilidadeRQ request);
To prevent your question from being flagged, I suggest you specify a little better what you want.
– Filipe.Fonseca