HTTP(2)
-
익스플로러와 크롬의 response.setStatus() 파싱 차이로 인한 삽질...
우리는 흔히 아래와 같은 코드로 ajax 호출을 시도합니다..( jQuery 신이시여 감사합니다. ) $.ajax({ type: 'POST', dataType: 'text', url: callURL, data: $('#onBoardForm').serialize(), success: function ( text ) { alert( text ); opener.location.replace( "${pageContext.request.contextPath}/list.jsp" ); self.close(); }, error: function ( request, status, error ) { alert( request.responseText ); } success 는 호출한 서버측에서 200 ok ( 202 도 되..
2014.11.03 -
HTTP method DELETE doesn't support output ... jdk 버그
RESTful API를 만들다가 만나는 메시지 HttpURLConnection: HTTP method DELETE doesn't support output HTTP DELETE 메쏘드 사용 시, request body를 구성하면 위와 같은 에러가 떨어짐... 명시적으로 body를 구성해서는 안된다는 이야기는 없는데.. 에러가 떨어짐.. jdk8 에서 픽스가 되었다는데... jdk 1.7.0_45 에서 jdk 1.8.0_20 으로 업그레이드 하고 해결됨.. 아우... JDK-7157360 : HttpURLConnection: HTTP method DELETE doesn't support output DetailsType:BugSubmit Date:2012-03-28Status:ClosedUpdated Da..
2014.09.11