In a previous post, I wrote about some samples of calling various types of services from Silverlight 2. In the code, I was using constructors in my ASMX and WCF services with specifying a binding type and endpoint address.
It was called out to me that in other demonstrations, people did not use this construct. While the method I demonstrated works (explicitly specifying the binding and endpoint), in some cases it may not be necessary. One such case would be if you only have one endpoint and it is basicHttpBinding. ... (read more)