2009-11-25

Eclipse is running in a JRE, but a JDK is required

이클립스 실행시 JDK 지정이 안되어서 발생하는 오류로 다음과 같은 라인을 eclipse.ini에 추가한다. (c:\java\jdk1.6.0_04 에 jdk가 설치되었다고 가정)

-vm
c:\Java\jdk1.6.0_04\bin\javaw.exe

2009-11-11

cmd.com 폰트 변경

http://stania.egloos.com/3484337
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Console\TrueTypeFont registry 항목의 페이지명 앞에 '0'을 붙이고 data부분에 원하는 폰트명을 입력
예> 이름: 0949 데이터: Bitstream Vera Sans Mono
만약 폰트를 더 추가하고 싶으면 00949라는 이름으로 폰트 추가

그리고 리부팅하면 적용됨

sqlalchemy pymssql freetds 설치

- freetds 다운로드 후 빌드, 설치

# ./configure
# make
# sudo make install

- freetds.conf 설정

[myserver]
host = 192.168.0.1
port = 1433
tds version = 7.0

- pymssql 설치

# easy_install pymssql

- sqlalchemy 설치

# easy_install sqlalchemy

- 테스트

EMS sql manager server port

sql manager에서 server 지정시 port 는 comma로 처리
예) 192.168.0.1,8484

2009-11-10

LUALL.exe cannot be found ERROR

LUALL.exe is symantic's live update utility.
you can restore it by re-installing live update program from here

2009-11-04

BlazeDS compile with JDK1.4.2

you shold have already installed jdk1.4.2 and set JAVA_HOME environment variable and PATH

1. download BlazeDS src (version 3.0.0.544) and unzip
2. download ANT 1.7.0 (or higher) and unzip
3. set ANT_HOME environment variable to the ant 1.7.0 location unzipped and add %ANT_HOME%\bin to the PATH environment variable
4. download ANT-contrib-1.0b2.jar and copy to the %ANT_HOME%\lib
5. download jgroups-2.5.1-jdk14.jar and copy to the [blazeds src folder]\libs
6. chdir to [blazeds src folder]
7. change source Integer.valueOf -> Integer.valueOf(String.valueOf( in modules\remoting\src\java\flex\management\remoting\messaging\services\remoting\RemotingDestinationControl.java
8. ant main

if you failed to build at stage 8 then build each target separately
ant clean
ant sdk
ant common
ant core
ant proxy
ant remoting
ant opt