본문 바로가기

Dev Story

[ActionScript] ActionScript Library 프로젝트 생성시 오류 해결 ■ ActionScript Project를 생성하면 다음과 같은 오류가 나온다. → 해결 : src(source forder) 내에 as 클래스를 생성해주면 된다..; 더보기
JavaMail API * JavaMail API - URL : http://java.sun.com/products/javamail/index.jsp - JavaDoc API - 주요 구성 요소 javax.mail.Session javax.mail.Store javax.mail.Folder javax.mail.Message java Mail API and JAF * JAF(JavaBeans Activation Framework) - URL : http://java.sun.com/javase/technologies/desktop/javabeans/glasgow/jaf.html - JavaDoc API 더보기
작업표시줄 재배치 프로그램(Taskbar Shuffle) Recommended Download: 32-bit Taskbar Shuffle v2.5 without installer 더보기
HTTP 1.1 status codes 100 : Continue 101 : Switching protocols 200 : OK, 에러없이 전송 성공 201 : Created, POST 명령 실행 및 성공 202 : Accepted, 서버가 클라이언트 명령을 받음 203 : Non-authoritative information, 서버가 클라이언트 요구 중 일부 만 전송 204 : No content, 클라언트 요구을 처리했으나 전송할 데이터가 없음 205 : Reset content 206 : Partial content 300 : Multiple choices, 최근에 옮겨진 데이터를 요청 301 : Moved permanently, 요구한 데이터를 변경된 임시 URL에서 찾았음 302 : Moved temporarily, 요구한 데이터가 .. 더보기
Aptana Studio as a Eclipse Plug-in Install Aptana Studio as a Plugin For Eclipse 3.4 If you're already familiar with installing plugins from Eclipse, you can use this URL for the update site: http://update.aptana.com/update/studio/3.4 For detailed instructions click here. For Eclipse 3.2 or Eclipse 3.3 For Eclipse 3.2 and 3.3 installation instructions click here From a Local File To install from a local method, Classic Update MUS.. 더보기
javascirpt "사용 권한이 없습니다" 오류해결 부모창과 자식창의 도메인이 다른 크로스 도메인의 경우 "사용 권한이 없습니다" 라는 경고창이 나온다. 프록시 써야 해결이 되는데 자료를 찾아보니 다음과 같이 한줄만 추가해주면 된다고 한다. 아직 확인해보진 않았다. 근데 역시 아는것이 힘이다. document.domain = "xxx.com"; http://koxo.com/lang/js/property/domain.html 역시 보안문제에 대해 언급되어 있다. 사용자 컴퓨터에서 location개체를 사용하여 얻어 설정하는 경우 사이트가 DNS를 통해 공격을 받을 수 있다고 하는 문제가 있다고 한다. 더보기
인터넷 익스플로러 동시 다운로드 개수 변경 1. 시작->실행 regedit(레지스트리 편집기)를 연다. 2. 다음의 위치로 이동하여 키값을 변경한다. * IE8 - KEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Internet Settings * IE8 이하 - HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings MaxConnectionsPerServer를 원하는 숫자로 세팅한다. 더보기
[iBATIS] 동적 쿼리 작성 - AutoResultMap 동적 쿼리를 생성하다 보면 셀렉트하는 테이블의 필드명을 동적으로 주게 되는 경우가 생긴다. IBATIS는 결과 테이블의 메타데이터를 기본으로 캐쉬하기 때문에 동적 필드 생성시에 오류가 발생한다. 이때 remapResults 옵션을 사용하면 간단하게 문제를 해결할 수 있다. select $titlequery$ from table_name 더보기