블로그 이미지
그냥 닥치고 해;
상Q

Notice

Recent Post

Recent Comment

Recent Trackback

Archive

calendar

1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
  • total
  • today
  • yesterday
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>


posted by 상Q