본문 바로가기

JSON JavaScriptSerializer 오류 - 한글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 를 변.. 더보기
Client Object Model 을 이용한 데이터 이관 Client Object Model 을 이용하여 (ShaPoint 목록 데이터)A 를 (ShaPoint 목록)B 으로 이관합니다. A 와 B 가 필드가 같고 같은 사이트에 목록이 있을 경우 입니다.using JohnHolliday.Caml.Net - CAML 쿼리를 사용하기위해서 입니다.using SP = Microsoft.SharePoint.Client; string orderBy = string.Empty;string viewFields = string.Empty;using (SP.ClientContext ClientCon = new SP.ClientContext("http://mysite")){ SP.Web site = ClientCon.Web; NetworkCredential Credential .. 더보기
Client Object Model - 데이터 삭제하기 Client Object Model 로 데이터 삭제 하기 JohnHolliday.Caml.Net.dll 을 참조하여 CAML 쿼리를 사용 했습니다.SP는 Microsoft.SharePoint.Client 를 using 으로 지정하였습니다.using SP = Microsoft.SharePoint.Client; string whereCondition = string.Empty;string orderBy = string.Empty;string viewFields = string.Empty;using (SP.ClientContext ClientCon = new SP.ClientContext("http://mysite")){ SP.Web site = ClientCon.Web; NetworkCredential Cr.. 더보기