we currently set WCF RIA Services Link from the Silverlight client, I currently looking for the config file to changes some wcf settings. Is that possible?
we currently set WCF RIA Services Link from the Silverlight client, I currently looking
Share
You need to add appropriate settings and behaviors to your service endpoints.
Here is an example of an endpoint behavior that increases maxItemsInObjectGraph:
It is referenced using
behaviorConfiguration=in an endpoint like this:Most of the other settings relate to the service binding which was referenced by
bindingConfiguration=e.g.:It is probably easier to study the matching classes and properties than the config files. Configs get messy very fast, but they just reflect a hierarchy of properties at run-time so working backwards from the class documentation may help you understand where the various settings go.