본문 바로가기

SharePoint/SharePoint 오류

JSON JavaScriptSerializer 오류

- 한글

JSON JavaScriptSerializer를 사용하여 serialize 또는 deserialize하는 동안 오류가 발생했습니다. 문자열의 길이가 maxJsonLength 속성에 설정된 값을 초과합니다.

- 영문

Error during serialization or deserialization using the JSON JavaScriptSerializer. The length of the string exceeds the value set on the maxJsonLength property.

 

[원인]

자바스크립트로 웹서비스의 WebMethod 호출 시 아래와 같은 오류가 발생

 

==>Web.Config에서 설정 값 변경작업을 해야 한다.

jsonSerialization maxJsonLength 를 변경


<?xml version="1.0" encoding="utf-8"?>

<configuration>

...

<system.web.extensions>

<scripting>

<webServices>

<jsonSerialization maxJsonLength="500000" />

</webServices>

</scripting>

</system.web.extensions>

...

</configuration>