I'm trying to test why my server is responding with 500 error when I send a large image (627 kb) as binary from the client. So, I brought the values the client sent in fiddler in the same machine the server is at.
I kept increasing & decreasing the number of binary value. I'm marking the beginning of the post method with a break point and then at every test I check the object if it is null or not:
the entity has a property for value called: ImageDataString of type string, which houses the binary values.
I noticed that if I increase 1 more character to my post at the arrow in fiddler, the object becomes null
Whose limit is invalidating the post request, Fiddler or C# OData Api? In fact my image body is much more than those lengths. It can be up to 10 mg, what should I do to send large images and be able to test sending their binaries in fiddler!?