개발언어/C#.NET wcf 의 연결 문자열이 길어서 xml 오류가 발생할 경우 by 엔돌슨 2012. 11. 7. 반응형 wcf 의 연결 문자열이 길어서 xml 오류가 발생할 경우 문자열 길이가 길어서 오류가 나는 경우 응답시간과 maxBytesPerRead 의 크기를 변경한다. <system.serviceModel> <bindings> <basicHttpBinding> <binding name="BasicHttpBinding_Idirectsmswcf" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:05:00" allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard" maxBufferSize="2147483647" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647" messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered" useDefaultWebProxy="true"> <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" /> <security mode="None"> <transport clientCredentialType="None" proxyCredentialType="None" realm="" /> <message clientCredentialType="UserName" algorithmSuite="Default" /> </security> </binding> </basicHttpBinding> </bindings> Web.config 의 설정에 추가한다. 공유하기 게시글 관리 엔돌슨의 IT이야기 관련글 microsoft visual studio 2012 devenv 요소가 없습니다 microsoft visual studio 2012 devenv element not found C# 에서 MSSQL Script 실행하기 System.InvalidOperationException: 임시 클래스를 생성할 수 없습니다(result=1) C# 코드로 Dos 명령 실행하기!