2013. 1. 14. 18:36
Computer/App.
Visual Studio에서 나타나는 에러
The maximum message size quota for incoming messages (65536) has been exceeded. To increase the quota, use the MaxReceivedMessageSize property on the appropriate binding element.
라고 하는 경우..
web.config 나 app.config 를 수정.
maxReceivedMessageSize 의 값을 변경해 준다. (큰값)
그리고 maxBufferSize 의 값도 같이 변경.. 값이 같아서 같이 변경 해 줬다.
2147483647 로 변경.. 바이트로 환산 해 보니.. 2Gbyte
적당한 사이즈를 지정해서 사용.
'Computer > App.' 카테고리의 다른 글
[MFC] 구조체에 있는 wchar_t* 변수에 값을 넣을 경우 (0) | 2013.08.18 |
---|---|
[MFC] MessageBox 결과 값 확인 (0) | 2013.08.18 |
[C#] app.config 값 가져오기 (0) | 2013.01.14 |
[C#] 폴더 확인, 파일 속성 변경 (0) | 2013.01.14 |
[Silverlight] web service 주소를 코드로 변경 (0) | 2013.01.03 |