I should develop a client application (for Windows Phone 7) that is able to send requests to a web service created using WCF. The applications that run on Windows Phone 7 can only send HTTP calls, therefore they can use only BasicHttpBinding as regards WCF. For this reason, I have to use BasicHttpBinding
in the client application.
Which types of web services can communicate with a client that supports only BasicHttpBinding
? Should these web services also be developed using the same binding?
Has a web service created using BasicHttpBinding
some limits on the frequency of the received messages? Has a client created using BasicHttpBinding some limits on the frequency of the sent messages? If so, why? If so, could this limit be changed? If so, is this limit related to received messages from the same client?