- 한글
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>
'SharePoint > SharePoint 오류' 카테고리의 다른 글
SharePoint 2010 배포 시 오류 (0) | 2013.01.22 |
---|---|
X 페이지에는 직접 종속성을 Y개까지만 사용할 수 있는데 이 한계가 초과되었습니다 (0) | 2012.10.29 |
웹파트 오류 시 제거 방법 (0) | 2012.07.03 |
Client Object Model Using 문 오류 (0) | 2012.05.24 |
SharePoint 사이트 모음 생성 오류 (0) | 2012.05.04 |