jamesbar2
jamesbar2

Reputation: 614

ASP.NET JSON WCF Service Truncating Responses

I'm having a problem with my web service, sometimes it decides to randomly truncate data that is being sent. I have no idea why. In this example below, you see it just cut off the response. In the next example, executed right after with the same query just a smaller amount of data. In other cases, it's able to still load the same payload as the one that cancelled. It's very strange. I'm using Google Chrome and we have some responses in other functions that return 200-300kb of JSON data.

enter image description here Non-Truncated JSON Response from WCF The web.config is set to allow the max amount of data to be serialized and sent over JSON and the web service.

Anybody have any ideas? I'll be happy to divulge more if it will help. Thanks!

Upvotes: 3

Views: 926

Answers (1)

Snixtor
Snixtor

Reputation: 4297

Looks like you're experiencing the same issue reported (and resolved) here: Inspecting large JSON data in Chrome

Upvotes: 1

Related Questions