I have setup a WCf service in my project using this tutorial: http://msdn.microsoft.com/en-us/library/ff521581.aspx
However, I'm POSTing lots of byte[] data to the service tocreate a file. I basically have a canvas drawing, which I convert to byte[] using javascript and then POST it to the server to create a new file.
However, this approach is flawed. The server errors out if the the byte data is big. I followed the turorial and could not find a way to increase the limits. I did find ways to modify Web.Config file, but my WCF service does not has a web.config file.
Any help is greatly appreciated!