How to increase maxReceivedMessageSize and maxBufferSize parameters in app.config file to 2000000 before running the application.
c# .net winforms wcf service-modelI have to following code: BasicHttpBinding binding = new BasicHttpBinding (); Uri baseAddress = new Uri ("URL.svc"); EndpointAddress endpointAddress = new EndpointAddress (baseAddress); …
c# wcf web-services service-modelI 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