목록Web dev (3)
wrkbrs
Hi, Recently, in my project while downloading some files(not on all files) i am getting exception on chrome, that say : Duplicate headers received from server Error 349 (net::ERR_RESPONSE_HEADERS_MULTIPLE_CONTENT_DISPOSITION): Multiple Content-Disposition headers received. This is disallowed to protect against HTTP response-splitting attacks. But when i download the same files on IE, Firefox and..
156I've googled for a while now and can only find what processData: false does. I can't find anyone who has experienced this same issue.I'm passing JSON back to the server and do not want jQuery to automatically convert the data to a query string so I'm setting processData to false. I can see the request firing if I take out processData, but as soon as I put it in I do not see any requests being..
웹서버와 WAS의 차이 구분 설 명 웹 서버 Web Client(웹 브라우저)에게 제공하는 컨텐츠를 제공하는 서버.정적인 HTML 혹은 jpeg나 gif같은 이미지를 HTTP프로토콜을 통해 웹 브라우저로 제공. WAS Server단에서 어플리케이션을 동작할 수 있도록 지원.일반적으로 컨테이너라는 용어로 사용됨.Servlet, JSP, ASP, PHP 등의 프로그램으로 사용됨. Background 초기 web: 이미지 혹은 단순 HTML현재: 게시판, 방명록 등 Server-Client간 상호대화하는 페이지를 제공. -> 내부 어플리케이션을 동작시킬 수 있는 컨테이너를 내장. 동적인 요구에 대응하기 위해 이에 적합한 형태로 변화. 각 사이트가 많은 사용자에게 원활한 서비스를 제공하기 위해 기능적인 laye..