Hi
When calling a WCF service I am able to dynamically create a binding and attach the binding to the WCF proxy, like this:
CustomBinding binding = new CustomBinding()
//set binding properties
binding.xxx = xxx
....
ServiceClient proxy = new ServiceClient(binding, endPoint);
Can you tell me how to attach a dynamically created binding when querying the Devforce server from the silverlight app?
I know it is possible to set this from the ServiceReferences.ClientConfig file, but I need to do this from code.
Thank you for your help
Best Regards,
Rasmus