2013. 2. 16. 15:30
Computer/Web
[Error] .net 기반에서 웹서비스 와 연결하여 작업 할 경우 나타나기도 하는 상황
Maximum number of items that can be serialized or deserialized in an object graph is '65536'. Change the object graph or increase the MaxItemsInObjectGraph quota.
위와 같은 에러가 발생하는 경우가 있음.
이때 web.config에 아래의 내용을 추가하면 해결이 된다.
<behaviors> 태그 내용을 추가하고, 위치는 아래 처럼 하면 된다.
app 같은 경우는 app.config파일을 수정 하면 된다.
<system.serviceModel>
<bindings>
…
…
<client>
…
…
</client>
<behaviors>
<endpointBehaviors>
<behavior >
<dataContractSerializer maxItemsInObjectGraph="2147483647"/>
</behavior>
</endpointBehaviors>
</behaviors>
...
...
</system.serviceModel>
'Computer > Web' 카테고리의 다른 글
[.net]html file upload Set Maximum Size (0) | 2013.09.10 |
---|---|
[javascript]숫자 단위마다 콤마 삽입 (0) | 2013.09.10 |
Telerik Grid Conrol 비동기로 로우 숨기기/보이기 (0) | 2012.03.26 |
[JavaScript] 페이지 로드시 무조건 실행 (0) | 2012.03.26 |
[CSS] 문자열 생략(길이가 넘어가면 ‘...’으로 변경) (0) | 2011.11.25 |