Top "Service-model" questions

maxReceivedMessageSize and maxBufferSize in app.config

How to increase maxReceivedMessageSize and maxBufferSize parameters in app.config file to 2000000 before running the application.

c# .net winforms wcf service-model
How to programmatically create a BasicHttpBinding?

I have to following code: BasicHttpBinding binding = new BasicHttpBinding (); Uri baseAddress = new Uri ("URL.svc"); EndpointAddress endpointAddress = new EndpointAddress (baseAddress); …

c# wcf web-services service-model
Configuration Error : Unrecognized attribute 'maxBufferSize'

I had a recent change in my web.config file of a wcf REST service, I just added maxBufferSize="10485760" property …

c# wcf rest web-config service-model