컴퓨터/유틸리티2013. 12. 19. 20:20

 

Youtube Downloader HD http://www.youtubedownloaderhd.com/

 

 

참고> 다운로드 페이지에서 Portable 버전을 받으면 설치 없이 사용할 수 있다.

 

Posted by jungtae17
컴퓨터/프로그래밍2013. 12. 18. 18:06

MARS (Multiple Active Result Sets)

 

링크> http://msdn.microsoft.com/en-us/library/ms131686.aspx

 

참고1> SQL Server Native Client 10.0 OLE DB Provider connection strings
http://www.connectionstrings.com/sql-server-native-client-10-0-oledb-provider/

 

참고2> SQLNCLI10 OLEDB : Enable MARS
http://www.connectionstrings.com/sql-server-native-client-10-0-oledb-provider/enable-mars/

 

Posted by jungtae17
컴퓨터/프로그래밍2013. 12. 17. 15:52

PSAPI (Process Status Application Programming Interface)

 

링크> http://msdn.microsoft.com/en-us/library/windows/desktop/ms684884.aspx

 

Posted by jungtae17
컴퓨터/유틸리티2013. 11. 28. 21:11

JSON 형식의 웹 데이터는 흔히 아래와 같은 형태로 보여주기 때문에 확인하기 쉽지 않다.

 

{"hey":"guy","anumber":243,"anobject":{"whoa":"nuts","anarray":[1,2,"thr<h1>ee"],"more":"stuff"},"awesome":true,"bogus":false,"meaning":null,"japanese":"明日がある。","link":"http://jsonview.com","notLink":"http://jsonview.com is great"}

 

Firefox 나 Chrome 을 사용할 경우 손쉽게 확인할 수 있는 부가 기능이나 확장 프로그램이 있어서 소개한다.

 

JSONView - http://jsonview.com/

 

JSONView 가 설치된 Firefox 로 위의 JSON 웹 데이터를 열어보면 아래와 같이 식별하기 좋게 표시된다.

 

 

Posted by jungtae17
Posted by jungtae17
컴퓨터/프로그래밍2013. 11. 27. 11:12
Three ways to do WCF instance management

 : http://www.codeproject.com/Articles/86007/3-ways-to-do-WCF-instance-management-Per-call-Per

 

WCF Concurrency (Single, Multiple, and Reentrant) and Throttling

 : http://www.codeproject.com/Articles/89858/WCF-Concurrency-Single-Multiple-and-Reentrant-and

 

How to Call WCF Services Synchronously and Asynchronously
 : http://www.codeproject.com/Articles/91528/How-to-Call-WCF-Services-Synchronously-and-Asynchr

 

WCF Service Performance Monitoring using "Perfmon"

 : http://www.codeproject.com/Articles/431917/WCF-Service-Performance-Monitoring-using-Perfmon

 

Posted by jungtae17
컴퓨터/윈도우2013. 11. 13. 12:02

라이브러리 설정 파일 경로

 

%APPDATA%\Microsoft\Windows\Libraries

 

    참고> 환경 변수 APPDATA=C:\Users\{사용자명}\AppData\Roaming

 

 

라이브러리 설정 파일 수정 (*.library-ms)

 

<isLibraryPinned>true</isLibraryPinned>

<iconReference>{아이콘 파일 경로}</iconReference>

<templateInfo>

 

Posted by jungtae17
컴퓨터/프로그래밍2013. 11. 1. 12:55

WAS(Windows Process Activation Service) 는 IIS(인터넷 정보 서비스) 프로세스 모델을 일반화한 것으로 HTTP 에 대한 종속성이 제거되었다.

 

이전에는 HTTP 응용 프로그램에서만 사용할 수 있었던 IIS 의 모든 기능을 HTTP 프로토콜을 사용하지 않는 WCF(Windows Communication Foundation) 응용 프로그램에서 사용할 수 있게 되었다.

 

IIS 7.0 은 HTTP 를 통하여 메시지 기반으로 활성화된 WAS 를 사용하고 있다.

 

Posted by jungtae17