Postman 테스트 시, WRONG_VERSION_NUMBER:../../third_party/boringssl/src/ssl/tls_record.cc 발생 Postman 테스트시 'WRONG_VERSION_NUMBER:../../third_party/boringssl/src/ssl/tls_record.cc' 와 같은 에러가 발생하는 경우가 있다. 이때 request send 시, https 형식으로 전송하나 server의 프로토콜이 http로 설정되어 있었다. send 시 http로 전송하거나, server의 프토콜을 https 로 세팅해주면 문제가 해결된다. WEB 2020.10.15
Https 로컬 용 Keystore 생성 및 Camel ssl 적용 방법 1. Keystore 생성 방법 1) keystore 생성 keytool -genkey -v -keystore server -alias server -keyalg RSA -keysize 2048 -validity 10000 keytool -genkey -v -keystore client -alias client -keyalg RSA -keysize 2048 -validity 10000 2) truststore 생성 keytool -export -alias server -keystore server -rfc -file trustServer.cer keytool -export -alias client -keystore client -rfc -file trustClient.cer 3) cacerts 파일에 k.. WEB 2020.10.13
HTTPS 테스트 시 javax.net.ssl.SSLHandshakeException: No available authentication scheme 에러 발생 https 테스트 시, 서버에서 SSLHandshakeException 에러가 발생하는 경우 해결법 1. Server Caused by: javax.net.ssl.SSLHandshakeException: No available authentication scheme at sun.security.ssl.Alert.createSSLException(Alert.java:131) at sun.security.ssl.Alert.createSSLException(Alert.java:117) at sun.security.ssl.TransportContext.fatal(TransportContext.java:314) at sun.security.ssl.TransportContext.fatal(TransportConte.. WEB 2020.10.13
CSS Selector http://www.nextree.co.kr/p8468/ CSS: 선택자(Selector) 이해 웹 표준은 이제 더 이상 무시할 수 없는 키워드입니다. World Wide Web(WWW)의 의미대로 가능한 많은 사람이 웹을 이용하기 위해서는, 모든 브라우저에서 ‘똑같이 보이는 것’이 아니라 ‘각 브라우� www.nextree.co.kr https://www.w3schools.com/jquery/jquery_ref_selectors.asp jQuery Selectors jQuery Selectors jQuery Selectors Use our jQuery Selector Tester to demonstrate the different selectors. Selector Example Selects * $(.. WEB 2020.06.28
HTML5 - WebSockets HTML5 - WebSockets Run WebSocket WebSocket Events open Socket.onopen This event occurs when socket connection is established. message Socket.onmessage This event occurs when client receives data from server. error Socket.onerror This event occurs when there is any error in communication. close Socket.onclose This event occurs when connection is closed. https://www.tutorialspoint.com/html5/html5_.. WEB 2020.06.28
jQuery Event Methods jQuery Event Methods bind() Deprecated in version 3.0. Use the on() method instead. Attaches event handlers to elements blur() Attaches/Triggers the blur event change() Attaches/Triggers the change event click() Attaches/Triggers the click event dblclick() Attaches/Triggers the double click event delegate() Deprecated in version 3.0. Use the on() method instead. Attaches a handler to current, or.. WEB 2020.06.28
HTML Web Storage (localStorage, sessionStorage) WebStorage란? 웹 스토리지를 사용하면 웹 애플리케이션이 사용자 브라우저 내에 로컬로 데이터를 저장할 수 있습니다. HTML5 이전에는 모든 서버 요청에 포함 된 응용 프로그램 데이터를 쿠키에 저장해야했습니다. 웹 스토리지는 더욱 안전하며 웹 사이트 성능에 영향을주지 않으면서 대량의 데이터를 로컬에 저장할 수 있습니다. - 쿠키 사용의 단점 1) 4KB의 제한된 크기 2) HTTP Request에서 암호화되지 않아 보안에 취약하고 성능에 영향을 줄 수 있음 HTML 웹 스토리지 객체 HTML 웹 저장소는 클라이언트에 데이터를 저장하기위한 두 가지 개체를 제공합니다. - localStorage - sessionStorage localStorage 객체 localStorage 객체는 만료 날짜가없는 .. WEB 2020.06.28
HTML4 vs HTML5 차이점 HTML4와 HTML5의 차이점 1. 간략하고 명확해진 문법 - DOCTYPE 선언 방법 : 2. 멀티미디어 요소 - video 밑 audio 태그 추가 - html4까지 Silverlight, flash의 지원을 받았어야 했다. 3. 사용자 위치 식별 액세스 추가 GeoLocation를 이용하여 보다 간단하게 사용자의 위치 액세스 가능 4. Client 측면의 저장소 (** WebStorage) - html4에서는 browser cache를 이용하여 데이터를 저장했다. - html5에서는 javascript 인터페이스를 통해 web sql 데이터 베이스 및 응용프로그램 사용이 가능하다. ** HTML Web Storage (localStorage, sessionStorage) HTML Web Stora.. WEB 2020.06.28