I'm working on a buffer query function that sends a graphic over to wcf, which in turn calls geometryService.Offset(..,..) to draw a buffer around that graphic. These buffers are drawn around parcels, that's why they're polygons. It's always worked for me as desired until very recently when ran into 2 different parcels (polygons) in 2 different maps that are rather unusual in shape, and therefore have large number of pointcollections. One has 2068 pointcollections, while the other one has a little more than 1400. In both the cases, the WCF fails and throws a generic message ie "The remote server returned an error: NotFound". It doesn't give any more information on this whatsoever.
It took me a while to realize what was going on. I tried sending only some of those pointcollections over WCF service, and that worked fine.
I already have this in ServiceReferences.ClientConfig
<httpTransport maxReceivedMessageSize="2147483647" maxBufferSize="2147483647"/>
which is the maximum size possible. So, is there any workaround to this?
Thanks,