Windows 2008 Server 원격접속 제한 해제, Multiple RDP Sessions
windows 2008 에서
gpedit.msc 실행
컴퓨터 구성 > 관리 템플릿 > Windows 구성 요소 > 터미널 서비스 > 터미널 서버 > 연결 에서...
연결 개수 제한
터미널 서비스 사용자를 하나의 원격 세션으로 제한
두 항목을 사용안함 선택
'Computer_IT > OS' 카테고리의 다른 글
iwinv 에서 블록스토리지에 zfs 파일시스템 구성 (0) | 2021.08.10 |
---|---|
Windows 7 end of life support ( Windows 7 PC는 지원되지 않습니다. (0) | 2020.02.05 |
AIX에 wget (toolbox) 그냥 설치... (0) | 2011.03.23 |
매킨토시에서 한영전환 (0) | 2010.02.28 |
VI ^M문자 (개행문자) 제거 (0) | 2009.09.24 |
jackson parser sample
import com.fasterxml.jackson.core.JsonGenerationException;
import com.fasterxml.jackson.databind.JsonMappingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.SerializationFeature;
...
....
....
public static String getJSON(Map<?, ?> map) throws JsonGenerationException, JsonMappingException, IOException
{
if (map == null ) return null;
ObjectMapper mapper = new ObjectMapper();
// pretty format
mapper.configure(SerializationFeature.INDENT_OUTPUT, true);
StringWriter sw = new StringWriter();
mapper.writeValue(sw, map);
return sw.toString();
}
'Computer_IT > JAVA' 카테고리의 다른 글
JDK 7 release - Bug Fixes history (0) | 2014.10.20 |
---|---|
eclipse @author 변경하기 (0) | 2013.07.02 |
VisualSVN Post-commit hook (0) | 2013.02.04 |
마이피플 위젯 전송 자바 샘플 (0) | 2012.07.11 |
myBatis multi db vendor support (0) | 2011.12.07 |
에버노트 설치/업그레이드 안되는 현상
삭제후 새버전으로 설치시 이미 다른 계정에 설치되었다는 메시지와 함께 에버노트 설치가 안됨
C:\Users\Administrator\AppData\Local\Temp\EvernoteSetup.log의 내용
[04/02/2013 10:28:33] Evernote 4.6.4.8136 Installation has started
[04/02/2013 10:28:33] Running as user: Administrator
[04/02/2013 10:28:33] Initializing installed product finder.
[04/02/2013 10:28:33] Checking if product {f761359c-9ced-45ae-9a51-9d6605cd55c4} is installed.
[04/02/2013 10:28:33] Product {f761359c-9ced-45ae-9a51-9d6605cd55c4} is not installed.
[04/02/2013 10:28:33] Checking registry for product {f761359c-9ced-45ae-9a51-9d6605cd55c4}.
[04/02/2013 10:28:33] Product GUID {f761359c-9ced-45ae-9a51-9d6605cd55c4} was not found in the registry
[04/02/2013 10:28:33] Initializing installed product finder.
[04/02/2013 10:28:33] Located product {4C8BBCC8-8363-11E2-A3F4-984BE15F174E} with upgrade code {AE2C091E-CF5F-4e30-8659-D640E23A8B99}.
[04/02/2013 10:28:33] Error getting product version: 1605
[04/02/2013 10:28:33] Error getting product install location: 1605
[04/02/2013 10:28:33] Initializing installed product finder.
[04/02/2013 10:28:33] Checking if product {A5C8B875-E86C-4783-83F4-F35E788FFC29} is installed.
[04/02/2013 10:28:33] Product {A5C8B875-E86C-4783-83F4-F35E788FFC29} is not installed.
[04/02/2013 10:28:33] Checking registry for product {A5C8B875-E86C-4783-83F4-F35E788FFC29}.
[04/02/2013 10:28:33] Product GUID {A5C8B875-E86C-4783-83F4-F35E788FFC29} was not found in the registry
[04/02/2013 10:28:33] Checking for already installed products
[04/02/2013 10:28:33] Detected version installation
[04/02/2013 10:28:33] Installed version () did not support admin check. Attempting to use MsiEnumProductsEx.
[04/02/2013 10:28:33] PerUser install by another user: abort.
해결한 방법...
http://evernote.s3.amazonaws.com/win4/public/Evernote_4.0.2.3162.exe
옛날 버전으로 다운로드후 툴안에서 업데이트를 신버전으로 해서 해결
'Computer_IT > 오류메세지' 카테고리의 다른 글
갤럭시 S2 버그
갤럭시 S2 중고 폰을 구매했다.
당연히 초기화 되어있었다.
하지만... FACEBOOK / 사진 등은 초기화가 안된 경우가 있었다.
그전 사용자 그대로 로그인이 되었음...
그래서 내가 다시 설정에서 초기화를 하였다.
하지만...
초기화가 안된다?
그래서.. 결국 Factory 초기화 (볼륨+홈+전원)를 하였다.
무슨 이런...
'Computer_IT > Android' 카테고리의 다른 글
구글 안드로이드 마켓 개발자 등록 (0) | 2010.07.29 |
---|
nforge4 설치시 routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed while accessing
mwtech(playok):/home/playok/nforge4/play-2.1.0> git clone https://github.com/nforge/nforge4.git
Cloning into nforge4...
error: SSL certificate problem, verify that the CA cert is OK. Details:
error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed while accessing https://github.com/nforge/nforge4.git/info/refs
fatal: HTTP request failed
mwtech(playok):/home/playok/nforge4/play-2.1.0>
mwtech(playok):/home/playok/nforge4/play-2.1.0> env GIT_SSL_NO_VERIFY=true git clone https://github.com/nforge/nforge4.git
Cloning into nforge4...
remote: Counting objects: 11306, done.
remote: Compressing objects: 100% (3212/3212), done.
remote: Total 11306 (delta 8358), reused 10900 (delta 7953)
Receiving objects: 100% (11306/11306), 3.39 MiB | 605 KiB/s, done.
아래 커맨드로 설치~
env GIT_SSL_NO_VERIFY=true git clone https://github.com/nforge/nforge4.git
'Computer_IT > 오류메세지' 카테고리의 다른 글
Cannot find 'XINPUT1_3.dll', Please, re-install this application (0) | 2014.05.11 |
---|---|
에버노트 설치/업그레이드 안되는 현상 (0) | 2013.04.02 |
com.google.android.gcm.server.InvalidRequestException: HTTP Status Code: 401 (0) | 2013.02.02 |
java.lang.NoClassDefFoundError : Could not initialize class SqlSessionManager (0) | 2013.01.18 |
Iptime N6004 8.32펌웨어 IPTV (0) | 2012.08.07 |
VisualSVN Post-commit hook
Properties 에 Post-commit hook 에 등록
"%VISUALSVN_SERVER%\bin\VisualSVNServerHooks.exe" ^
commit-notification "%1" -r %2 ^
--from 보내는메일 --to 수신메일주소 ^
--smtp-server SMTP서버주소 ^
--smtp-user 접속계정 ^
--smtp-password 접속비밀번호 ^
--smtp-port 587 ^
--no-diffs
참고 URL : http://www.visualsvn.com/support/topic/00018/
'Computer_IT > JAVA' 카테고리의 다른 글
eclipse @author 변경하기 (0) | 2013.07.02 |
---|---|
jackson parser sample (0) | 2013.04.02 |
마이피플 위젯 전송 자바 샘플 (0) | 2012.07.11 |
myBatis multi db vendor support (0) | 2011.12.07 |
Cannot create a server using the selected type (0) | 2010.06.23 |
com.google.android.gcm.server.InvalidRequestException: HTTP Status Code: 401
Exception...
com.google.android.gcm.server.InvalidRequestException: HTTP Status Code: 401
at com.google.android.gcm.server.Sender.sendNoRetry(Sender.java:177)
at com.google.android.gcm.server.Sender.send(Sender.java:121)
at com.google.android.gcm.demo.server.SendAllMessagesServlet.doPost(SendAllMessagesServlet.java:82)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:641)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:304)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:224)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:169)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:168)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:100)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:929)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:405)
at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:964)
at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:515)
at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:302)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
at java.lang.Thread.run(Thread.java:722)
Android GCM tutorial server 구성했을시 발생...
해결 : WebContent/WEB-INF/classes/api.key 파일을 변경할것...
'Computer_IT > 오류메세지' 카테고리의 다른 글
에버노트 설치/업그레이드 안되는 현상 (0) | 2013.04.02 |
---|---|
nforge4 설치시 routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed while accessing (0) | 2013.03.19 |
java.lang.NoClassDefFoundError : Could not initialize class SqlSessionManager (0) | 2013.01.18 |
Iptime N6004 8.32펌웨어 IPTV (0) | 2012.08.07 |
DB2 9.7 Fix5 오라클 호환성 옵션을 켰을시 발생될수 있는 문제 (0) | 2012.07.30 |
AutoHotKey_L 1.1.09.02 - 재컴파일 버전 - 뭔가 다른 재 빌드
'Computer_IT > AutohotKey' 카테고리의 다른 글
AutoHotKey_L 1.1.09.02 - 재컴파일 버전 (2) | 2013.01.03 |
---|---|
Autohotkey + mypeople(마이피플) 메시지 전송. (0) | 2012.12.31 |
java.lang.NoClassDefFoundError : Could not initialize class SqlSessionManager
(mx.messaging.messages::ErrorMessage)#0
body = (null)
clientId = "78D874E7-B468-4E2C-B7B9-8C5002EC82E4"
correlationId = "13A47B44-3C30-59A0-6DF2-4C4611C5E210"
destination = "WonderFulWorld1"
extendedData = (null)
faultCode = "Server.Processing"
faultDetail = (null)
faultString = "java.lang.NoClassDefFoundError : Could not initialize class com.mybatis.SqlSessionManager"
headers = (Object)#1
messageId = "3637160E-3F0A-10C3-09AA-3BC4369F455B"
rootCause = (Object)#2
cause = (null)
localizedMessage = "Could not initialize class com.mybatis.SqlSessionManager"
message = "Could not initialize class com.mybatis.SqlSessionManager"
timestamp = 1358489326511
timeToLive = 0
힌트 적인것은...
xml 쿼리 파일들중에 오류가 있는게 아닌가 살펴봐야함
(ex : ID 가 중복이 됬다거나 xml 형식에 미스가 났다거나..등등등)
'Computer_IT > 오류메세지' 카테고리의 다른 글
nforge4 설치시 routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed while accessing (0) | 2013.03.19 |
---|---|
com.google.android.gcm.server.InvalidRequestException: HTTP Status Code: 401 (0) | 2013.02.02 |
Iptime N6004 8.32펌웨어 IPTV (0) | 2012.08.07 |
DB2 9.7 Fix5 오라클 호환성 옵션을 켰을시 발생될수 있는 문제 (0) | 2012.07.30 |
Synology NAS DS712+ 에서 nodejs 설치중 에러 (1) | 2012.07.07 |
HESSIAN을 이용한 JAVA와 .NET 간의 데이터 교환 - hessian binary web service protocol
자바쪽 WAR
C#쪽 묶음...
디버그용도로 단순 하게만 만든 샘플...
- 기록용...
참고 :
http://hessian.caucho.com/
'Computer_IT > C#' 카테고리의 다른 글
[C#] Windows에서 사용가능한 폰트 이름 가져오기 (0) | 2008.05.21 |
---|---|
오직 하나의 instance / 프로그램 만 실행 (0) | 2008.03.21 |
Delegate(델리게이트) Example 1 (0) | 2007.09.11 |
AutoHotKey_L 1.1.09.02 - 재컴파일 버전
http://l.autohotkey.net/ 에서 받은 소스를 재 컴파일 한것
--바뀐 내용
bitblt 함수 사용시 마지막 인자 값 : SRCCOPY 을...
SRCCOPY | CAPTUREBLT 로 변경...
(모비즌-Mobizen)에서 색상 못잡을때 사용)...
'Computer_IT > AutohotKey' 카테고리의 다른 글
AutoHotKey_L 1.1.09.02 - 재컴파일 버전 - 뭔가 다른 재 빌드 (0) | 2013.02.01 |
---|---|
Autohotkey + mypeople(마이피플) 메시지 전송. (0) | 2012.12.31 |
Autohotkey + mypeople(마이피플) 메시지 전송.
,60000 ; ConnectTimeout
,30000 ; SendTimeout
,120000] ; ReceiveTimeout - Random.org recommends a long timeout.
DAUMURL := "http://air21.daum.net/air21/widget/sendMessage.daum?" ; 수신 URL
SENDER := "ME" ; 보낸 사람
MYPEOPLEKEY := "z4*****************" ; 마이피플의 키
HttpGetRequest("안녕하세요")
HttpGetRequest(MSG){
global Timeouts
global DAUMURL, SENDER, MYPEOPLEKEY
SENDMSG := DAUMURL
. "key="
. MYPEOPLEKEY
. "&from="
. SENDER
. "&content="
. MSG
HTTP := ComObjCreate("WinHttp.WinHttpRequest.5.1")
HTTP.Open("GET", SENDMSG, False)
HTTP.SetRequestHeader("User-Agent", "Internet Explorer 9")
HTTP.SetTimeouts(Timeouts*)
HTTP.Send()
if (HTTP.Status != 200)
return OnError(HTTP.Status, HTTP.ResponseText)
return HTTP.ResponseText
}
OnError(Status, String){
MsgBox % String
return ""
}
목적 : 스크립트 동작중... 에러 메시지 전송 할때 응용...
나머진 응용...
한글 전송은 ... ahk 파일을 UTF8+BOM 으로 저장하면 아무것도 안하고 사용가능.
(UTF8 은 깨짐)...
2013. 02. 15일 추가 내용
- 위 방법은 위젯 서비스를 통한 우회 방법이나 2월중 위젯 서비스 종료됨
- UTF8+BOM 은 Windows 7 일 경우에만 해당 XP에선 적용 안됨
'Computer_IT > AutohotKey' 카테고리의 다른 글
AutoHotKey_L 1.1.09.02 - 재컴파일 버전 - 뭔가 다른 재 빌드 (0) | 2013.02.01 |
---|---|
AutoHotKey_L 1.1.09.02 - 재컴파일 버전 (2) | 2013.01.03 |
Nexus 7 4.2 젤리빈(Jelly Bean)과 Adobe AIR
문제 : Nexus 7 4.2 업그레이드된 기기에서는 Adobe Air 를 통해 개발된 게임의 한글이 깨지거나 출력이 안된다.
무턱대로 올린 4.2 버전
adobe Air로 제작된 Flash게임은 FONT 출력이 안된다.
그럼 개발환경에서 직접 테스트를...
대충 만들고...
..뭐지.. 뭐지!!!~
Flex Mobile Project에서 기본적으로 나와야할 한글도 깨짐...
뭐지!!!~
해결할려면 AIR에 FONT EMBEDED 해서 출력...
<?xml version="1.0" encoding="utf-8"?>
<s:TabbedViewNavigatorApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark" applicationDPI="160">
<fx:Style>
@namespace s "library://ns.adobe.com/flex/spark";
@font-face {
src: url("NanumGothic.otf");
fontFamily: "NaNumGothic_CFF";
embedAsCFF: true;
}
@font-face {
src: url("NanumGothic.otf");
fontFamily: "NaNumGothic";
embedAsCFF: false;
}
s|Application
{
embedFonts: true;
fontWeight: normal;
fontFamily: NaNumGothic;
}
s|ViewNavigator{
embedFonts: true;
fontWeight: normal;
fontFamily: NaNumGothic;
}
s|RichText {
embedFonts: true;
fontWeight: normal;
fontFamily: NaNumGothic_CFF;
}
</fx:Style>
<s:ViewNavigator label="목록" width="100%" height="100%" firstView="views.ListView" fontFamily="NaNumGothic"/>
<s:ViewNavigator label="보기" width="100%" height="100%" firstView="views.View"/>
<s:ViewNavigator label="설정" width="100%" height="100%" firstView="views.SettingView"/>
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
</s:TabbedViewNavigatorApplication>
'Computer_IT > FLEX_AIR' 카테고리의 다른 글
wonderfl-긴 이미지 붙여서 스크룰 (0) | 2014.10.29 |
---|---|
Apache Flex SDK 4.13.0 release (0) | 2014.07.28 |
[3D] Starling 메뉴얼 따라 하기 1 - 회전 박스 + TextField (0) | 2011.11.23 |
[3D] Starling 메뉴얼 따라 하기 1 - 단색 박스 (0) | 2011.11.22 |
[3D] Starling 메뉴얼 따라 하기 1 - 초기 샘플 (0) | 2011.11.22 |
google tv 한글 페이지
'Computer_IT > IPTV' 카테고리의 다른 글
인터넷 다운로드시 Olleh KT IPTV 화면 끊김(영상 버퍼링),모자이크 줄이는 방법 (0) | 2014.05.25 |
---|---|
LG GoogleTV에서 AirVideo의 동영상을 AirPlay를 이용하여 TV출력 (6) | 2012.11.12 |
LG GoogleTV iptv 와 synology nas (0) | 2012.11.11 |
구글 TV 개발설정 2 - run (0) | 2012.11.03 |
LG 구글 TV 개발 설정 1 (2) | 2012.11.03 |
LG GoogleTV에서 AirVideo의 동영상을 AirPlay를 이용하여 TV출력
아이패드에서 AirVideo를 GoogleTV의 gtvbox 어플을 이용하여 TV로 출력...
'Computer_IT > IPTV' 카테고리의 다른 글
인터넷 다운로드시 Olleh KT IPTV 화면 끊김(영상 버퍼링),모자이크 줄이는 방법 (0) | 2014.05.25 |
---|---|
google tv 한글 페이지 (0) | 2012.11.19 |
LG GoogleTV iptv 와 synology nas (0) | 2012.11.11 |
구글 TV 개발설정 2 - run (0) | 2012.11.03 |
LG 구글 TV 개발 설정 1 (2) | 2012.11.03 |
LG GoogleTV iptv 와 synology nas
셋탑에서 위 어플을 설치한뒤
Synology 의 WebDAV 기능을 켜고 사용하게 되면.
환상적인 조합이 된다.
(SMB는 무슨 이유에서인지 스캔이 느림)
NAS에서 다운 받은 파일을 TV에서 땡겨서 볼수 있게 된다.
자막은 srt 변환기 이용해야함.
'Computer_IT > IPTV' 카테고리의 다른 글
google tv 한글 페이지 (0) | 2012.11.19 |
---|---|
LG GoogleTV에서 AirVideo의 동영상을 AirPlay를 이용하여 TV출력 (6) | 2012.11.12 |
구글 TV 개발설정 2 - run (0) | 2012.11.03 |
LG 구글 TV 개발 설정 1 (2) | 2012.11.03 |
LG 구글 TV 셋탑 정보 (3) | 2012.11.03 |
구글 TV 개발설정 2 - run
이클립스 대충 클릭클릭.... 프로젝트 만들고.. Run 이나 / Debug 하면...
셋탑박스로 프로그램 실행 된것 확인...
'Computer_IT > IPTV' 카테고리의 다른 글
LG GoogleTV에서 AirVideo의 동영상을 AirPlay를 이용하여 TV출력 (6) | 2012.11.12 |
---|---|
LG GoogleTV iptv 와 synology nas (0) | 2012.11.11 |
LG 구글 TV 개발 설정 1 (2) | 2012.11.03 |
LG 구글 TV 셋탑 정보 (3) | 2012.11.03 |
유플러스uplus TV G 변경신청 하기... (2) | 2012.10.29 |
LG 구글 TV 개발 설정 1
공식적으로 LG TV 와 셋탑쪽은 등록되어있는것을 확인 가능
개발 환경 디버깅 설정
참고 URL : https://developers.google.com/tv/android/docs/gtv_debug
HOME -> 모든 어플리케이션 -> 설정 -> 어플리케이션 -> 개발 -> 원격 디버깅 체크, 디버거 IP 주소 (개발툴PC) 설정
adb connect 셋탑박스IP
연결뒤 Eclipse에서 등록된것 확인.
3.2 SDK 설치...
자세한 문서는 : https://developers.google.com/tv/android/docs/gtv_android 에서 확인
'Computer_IT > IPTV' 카테고리의 다른 글
LG GoogleTV에서 AirVideo의 동영상을 AirPlay를 이용하여 TV출력 (6) | 2012.11.12 |
---|---|
LG GoogleTV iptv 와 synology nas (0) | 2012.11.11 |
구글 TV 개발설정 2 - run (0) | 2012.11.03 |
LG 구글 TV 셋탑 정보 (3) | 2012.11.03 |
유플러스uplus TV G 변경신청 하기... (2) | 2012.10.29 |
LG 구글 TV 셋탑 정보
모델 : TI320-DU
펌웨어 : 3.2 (안드로이드 버전?) - 허니컴
빌드번호 : MASTER.20121006_V.03.04.0222
FTP를 통한 외부 엑세스 : 기본은 비활성화 되어있으나 활성화 가능
'Computer_IT > IPTV' 카테고리의 다른 글
LG GoogleTV에서 AirVideo의 동영상을 AirPlay를 이용하여 TV출력 (6) | 2012.11.12 |
---|---|
LG GoogleTV iptv 와 synology nas (0) | 2012.11.11 |
구글 TV 개발설정 2 - run (0) | 2012.11.03 |
LG 구글 TV 개발 설정 1 (2) | 2012.11.03 |
유플러스uplus TV G 변경신청 하기... (2) | 2012.10.29 |
BIRT에서 CHART Series 출력이 이상할때
증상..
X출 시간이 시:분 인데
원인 : 입력 데이터가 시:분:초 일경우 초에도 데이터가 있을 경우엔 위와같이 그려진다.
해결 : 원 데이터를 시:분 만 넣는다.
정상적인 출력
유플러스uplus TV G 변경신청 하기...
1. 101번으로 수요일 / 기존 사용하는 LG IPTV를 uplus tv g 로 변경 신청
2. 기다렸으나 전화 안옴...(토요일날 설치할려고 했는데...)
3. 월요일 점심 쯤 다시 101 로 전화
4. 신청된적 없다는 상담사... 헉???
현재 약정 2년....
기존 상담사 : 현재 약정 2년 ... 기기만 바뀐다.
이번 상담사 : 약정 3년에 ...1천원 추가된다.
응??? 머니??
5. 저녁 6시경 설치 하는곳 전화옴
6. 토요일 방문 해달라고 신청함
설치는 만족.
바로 USB키보드 연결해서 이것저것 해봄 ( play 마켓 연결 등)
상담사가 wifi 기기 꼭 있어야 한다고 해서 같이 신청이 된거 같은데...
wifi 기기는 필요 없음.. 집에 공유기만 있어도 충분함
IPTIME 6004R 로 충분히 커버 가능함
'Computer_IT > IPTV' 카테고리의 다른 글
LG GoogleTV에서 AirVideo의 동영상을 AirPlay를 이용하여 TV출력 (6) | 2012.11.12 |
---|---|
LG GoogleTV iptv 와 synology nas (0) | 2012.11.11 |
구글 TV 개발설정 2 - run (0) | 2012.11.03 |
LG 구글 TV 개발 설정 1 (2) | 2012.11.03 |
LG 구글 TV 셋탑 정보 (3) | 2012.11.03 |
WPF 단위 units of measures
px: is the default device-independent unit (1/96th inch per unit)
in: is inches; 1in = 96px
cm: is centimeters; 1cm = (96/2.54) px
pt: is points; 1pt = (96/72) px
'Computer_IT > WPF_Silverlight' 카테고리의 다른 글
전체화면 전환 (0) | 2010.10.23 |
---|---|
WPF Windows transparent 처리 (0) | 2010.06.12 |
Silverlight / Flash(Flex) 보안정책 파일 (0) | 2009.11.21 |
Sharp Develop 설치
1. Microsoft .NET Framework 4 우선 설치
2. Sharpdevelop 설치
Microsoft .NET Framework 4(독립 실행형 설치 관리자)
SharpDevelop 설치
'Computer_IT > .NET' 카테고리의 다른 글
Visual Studio 2010 SVN plugin 설정 (0) | 2012.02.03 |
---|---|
JAVA 와 C# 형타입 / 메서드 비교표_Compares (0) | 2008.03.24 |
Microsoft Online Seminar (Korea) 한국 - WEBCAST (0) | 2008.03.23 |
.NET Framework Namespaces (0) | 2006.12.29 |
Iptime N6004 8.32펌웨어 IPTV
문제점 및 원인
IPTV에서 멀티캐스트 포워드(IGMP) 기능을 이용하여 IPTV 를 시청하는 사용자가
근래IpTime n6004 공유기에서 7월 18일날 배포된 8.32 펌웨어를 사용시에는
PC의 인터넷이 반응속도가 느려지 거나 다운로드시 속도 저하가 됨.
해결 방법
8.14 버전의 펌웨어를 다운 받아 다운 그래이드 하면 정상적으로 사용가능...
2012.09.05 일 업데이트.
8.38 버전의 수정된 펌웨어는 정상작동.
'Computer_IT > 오류메세지' 카테고리의 다른 글
com.google.android.gcm.server.InvalidRequestException: HTTP Status Code: 401 (0) | 2013.02.02 |
---|---|
java.lang.NoClassDefFoundError : Could not initialize class SqlSessionManager (0) | 2013.01.18 |
DB2 9.7 Fix5 오라클 호환성 옵션을 켰을시 발생될수 있는 문제 (0) | 2012.07.30 |
Synology NAS DS712+ 에서 nodejs 설치중 에러 (1) | 2012.07.07 |
WebKeeper-차단 과 VPN (0) | 2012.02.21 |
DB2 9.7 Fix5 오라클 호환성 옵션을 켰을시 발생될수 있는 문제
DB2 에서 Connect by 쿼리를 사용하기 위하여
db2set DB2_COMPATIBILITY_VECTOR=ORA
db2stop
db2start
명령을 이용하여 호환성 모드를 활성화 시키면...
가장 쉽게 접하는 문제점이..
CASE WHEN THEN 문과 DECODE 에서 사소한 문제점이 발생된다.
단일 형태의
DECODE(컬럼,'값','값2') AS 컬럼
일때는 문제가 없으나
다수의 CASE WHEN .... WHEN THEN ... WHEN THEN ... / DECODE 일경우에는
SELECT
DECODE(cond, '1','일이다1123878798798791', '2', '기타') || NAME
FROM (
SELECT '1' AS COND, '정' AS name FROM DUAL
union
SELECT '2' AS COND, '김' AS name FROM DUAL
)
위의 결과가 호환성 옵션 활성화 하기전 DB2에서는 (9.7 이라 DECODE 가능) 일체의 공백이 없이 붙여서 CONCATE 되지만....
결과....
일이다1123878798798791정
오라클 호환 옵션을 활성화 한뒤에 실행하게 되면
일이다1123878798798791정
으로 출력이 된다.
즉 제일 길이가 긴 DECODE/CASE WHEN의 결과값 길이의 SIZE를 따라 감...
호환성 옵션을 사용한 이유는 CONNECT BY 를 사용하기 위함이므로
CONNECT BY 옵션만 활성화 하니 기존의 결과와 같이 나옴...
'Computer_IT > 오류메세지' 카테고리의 다른 글
java.lang.NoClassDefFoundError : Could not initialize class SqlSessionManager (0) | 2013.01.18 |
---|---|
Iptime N6004 8.32펌웨어 IPTV (0) | 2012.08.07 |
Synology NAS DS712+ 에서 nodejs 설치중 에러 (1) | 2012.07.07 |
WebKeeper-차단 과 VPN (0) | 2012.02.21 |
Nat Service 증상 (0) | 2012.02.04 |
마이피플 위젯 전송 자바 샘플
public static void Logger( String receiverKey, String fromName, String msg)
{
StringBuffer sb = new StringBuffer();
try {
sb.append("key=");
sb.append( receiverKey );
sb.append("&from=");
sb.append( fromName );
sb.append("&");
sb.append("content");
sb.append("=");
sb.append(URLEncoder.encode( msg , "UTF-8" ) );
URL url = new URL("http://air21.daum.net/air21/widget/sendMessage.daum");
URLConnection conn = url.openConnection();
conn.setDoOutput(true);
OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
wr.write(sb.toString());
wr.flush();
BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
String line = null;
while ((line= rd.readLine() ) != null) {
System.out.println(line);
}
wr.close();
rd.close();
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
'Computer_IT > JAVA' 카테고리의 다른 글
jackson parser sample (0) | 2013.04.02 |
---|---|
VisualSVN Post-commit hook (0) | 2013.02.04 |
myBatis multi db vendor support (0) | 2011.12.07 |
Cannot create a server using the selected type (0) | 2010.06.23 |
groovy - db2 jdbc 연결 기본 예제 (0) | 2009.10.07 |
Synology NAS DS712+ 에서 nodejs 설치중 에러
Synology NAS DS712+ 에서 nodejs 설치중
다음과 같은 메세지 발생
Node.js configure error: No acceptable C compiler found!
Please make sure you have a C compiler installed on your system and/or
consider adjusting the CC environment variable if you installed
it in a non-standard prefix.
해결방법
.... 찾는중...
... 아래 댓글에 달린 방법으로 하니 처리됨...
'Computer_IT > 오류메세지' 카테고리의 다른 글
Iptime N6004 8.32펌웨어 IPTV (0) | 2012.08.07 |
---|---|
DB2 9.7 Fix5 오라클 호환성 옵션을 켰을시 발생될수 있는 문제 (0) | 2012.07.30 |
WebKeeper-차단 과 VPN (0) | 2012.02.21 |
Nat Service 증상 (0) | 2012.02.04 |
무선랜카드가 n모드(150/300Mbps )로 동작하지 않을때 확인해야할것 (0) | 2011.12.04 |
WebKeeper-차단 과 VPN
[[[[
사내에서의 사적업무, 주식투자, 업무외 인터넷 접속등은 업무생산성 저하 및 사고개연성등이 많으며
윤리강령 제5장 임직원의 복무윤리에 어긋나는 행위 입니다.
WebKeeper
]]]]]
WeebKeeper 차단 솔루션… 소만사의 접속 차단 안내 메세지
VPN은 필터링 하지 못한다. 아니면 옵션이 있는데 안켜놓은 건지…
그 뒤 적절한 사내망과 관련된 라우팅…
접속 잘됨…
'Computer_IT > 오류메세지' 카테고리의 다른 글
DB2 9.7 Fix5 오라클 호환성 옵션을 켰을시 발생될수 있는 문제 (0) | 2012.07.30 |
---|---|
Synology NAS DS712+ 에서 nodejs 설치중 에러 (1) | 2012.07.07 |
Nat Service 증상 (0) | 2012.02.04 |
무선랜카드가 n모드(150/300Mbps )로 동작하지 않을때 확인해야할것 (0) | 2011.12.04 |
[DB2] Virtual storage or database resource is not available (0) | 2011.02.07 |
Nat Service 증상
속도가 느려져서 탐험 해본결과...
natsvc.exe 의 엄청나게 소모하는 I/O 읽기바이트 !!
삭제 및 제어판에서 Nat Serivce 2 xxxxx 삭제!
'Computer_IT > 오류메세지' 카테고리의 다른 글
Synology NAS DS712+ 에서 nodejs 설치중 에러 (1) | 2012.07.07 |
---|---|
WebKeeper-차단 과 VPN (0) | 2012.02.21 |
무선랜카드가 n모드(150/300Mbps )로 동작하지 않을때 확인해야할것 (0) | 2011.12.04 |
[DB2] Virtual storage or database resource is not available (0) | 2011.02.07 |
자주(랜덤) 하게 컴퓨터가 종료 되는 현상 해결... (0) | 2011.01.22 |
Visual Studio 2010 SVN plugin 설정
URL : http://ankhsvn.open.collab.net/downloads
설치
Visual Studio 2010 설정
도구(T) –> 설정(S)
AnkhSVN 으로 선택
사용
'Computer_IT > .NET' 카테고리의 다른 글
Sharp Develop 설치 (0) | 2012.09.30 |
---|---|
JAVA 와 C# 형타입 / 메서드 비교표_Compares (0) | 2008.03.24 |
Microsoft Online Seminar (Korea) 한국 - WEBCAST (0) | 2008.03.23 |
.NET Framework Namespaces (0) | 2006.12.29 |