How to fix 'Error during serialization or deserialization using the JSON JavaScriptSerializer'
By FoxLearn 2/18/2024 1:14:10 AM 365
This post shows you how to fix 'Error during serialization or deserialization using the JSON JavaScriptSerializer. The length of the string exceeds the value set on the maxJsonLength property'.
As you know, JsonResult has the MaxJsonLength property, which represents the maximum length of data possible in a JSON response.
To solve the problem you can modify your code as the following.
public JsonResult Test() { string base64 = Convert.ToBase64String(System.IO.File.ReadAllBytes(Server.MapPath("~/images/csharp.jpg"))); return Json(base64); }
The base64 length of the image file used in this example exceeds the default value of the MaxJsonLength property that throws your exception.
You can also override the default JsonResult as shown below.
public JsonResult Test() { string base64 = Convert.ToBase64String(System.IO.File.ReadAllBytes(Server.MapPath("~/images/csharp.jpg"))); return new JsonResult { Data = base64, MaxJsonLength = int.MaxValue //set the maximum length of data }; }
- Content Negotiation in Web API
- How to fix 'InvalidOperationException: Scheme already exists: Bearer'
- How to fix System.InvalidOperationException: Scheme already exists: Identity.Application
- Add Thread ID to the Log File using Serilog
- Handling Exceptions in .NET Core API with Middleware
- InProcess Hosting in ASP.NET Core
- Limits on ThreadPool.SetMinThreads and SetMaxThreads
- Controlling DateTime Format in JSON Output with JsonSerializerOptions
Categories
Popular Posts
AdminKit Bootstrap 5 HTML5 UI Kits Template
11/17/2024
Spica Admin Dashboard Template
11/18/2024