Microsoft MVP성태의 닷넷 이야기
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
(연관된 글이 1개 있습니다.)
(시리즈 글이 4개 있습니다.)
닷넷: 2188. C# - ASP.NET Core SignalR로 구현하는 채팅 서비스 예제
; https://www.sysnet.pe.kr/2/0/13504

닷넷: 2189. C# - WebSocket 클라이언트를 닷넷으로 구현하는 예제 (System.Net.WebSockets)
; https://www.sysnet.pe.kr/2/0/13505

닷넷: 2197. C# - ClientWebSocket의 Ping, Pong 처리
; https://www.sysnet.pe.kr/2/0/13518

닷넷: 2198. C# - Reflection을 이용한 ClientWebSocket의 Ping 호출
; https://www.sysnet.pe.kr/2/0/13519




C# - WebSocket 클라이언트를 닷넷으로 구현하는 예제 (System.Net.WebSockets)

지난 글에서,

C# - ASP.NET Core SignalR로 구현하는 채팅 서비스 예제
; https://www.sysnet.pe.kr/2/0/13504

SignalR로 채팅 서비스를 구현하면서 대충 WebSocket에 대한 맛보기를 했으니 어떤 기술인지 감은 잡았을 것입니다. 물론 SignalR 서비스가 구현이 매우 용이해서 좋긴 한데, 때로는 기존의 nodejs 등으로 구현한 WebSocket과 통신할 경우도 발생할 수 있으니 이에 대해서도 마저 알아보겠습니다.

그런 경우, RFC 문서를 보며 직접 구현하는 것도 가능한데 ^^ 그래도 적절한 WebSocket 클라이언트 라이브러리를 활용하는 것도 좋은 선택입니다. 검색해 보면 Websocket.Client 등도 나오지만,

Your First C# Websocket Client
; https://medium.com/nerd-for-tech/your-first-c-websocket-client-5e7acc30681d

이 글에서는 닷넷 자체에 이미 내장돼 있는 System.Net.WebSockets를 사용해 보겠습니다. 그렇긴 한데, 사실 이것도 다음과 같은 글에서 너무 자세하세 잘 소개하고 있어서,

WebSockets support in ASP.NET Core
; https://learn.microsoft.com/en-us/aspnet/core/fundamentals/websockets

WebSocket in .NET - Real-Time, Two-Way Communication Over TCP/IP
; https://medium.com/@kova98/websockets-in-net-59f1fc69bdcb

C# WebSocket
; https://zetcode.com/csharp/websocket/

저는 그냥 베끼는 수준으로만 정리해 보겠습니다. ^^;




예를 들어, nodejs로 다음과 같은 식의 WebSocket 서버를 만들어 볼까요?

var { WebSocketServer } = require('ws')

const sockserver = new WebSocketServer({ port: 18000 })

sockserver.on('connection', ws => {
    console.log('New client connected!')

    ws.send('connection established')

    ws.on('close', () => console.log('Client has disconnected!'))

    ws.on('message', data => {
        sockserver.clients.forEach(client => {
            console.log(`distributing message: ${data}`)
            client.send(`${data}`)
        })
    })

    ws.onerror = function () {
        console.log('websocket error')
    }
})

SignalR 서버를 작성해 봤다면, 구조가 묘하게 닮아 있어 닷넷 개발 경험만 있어도 위의 소스코드가 눈에 잘 들어올 것입니다. 게다가 Socket 서버 경험까지 있다면, socketserver 인스턴스를 서버 소켓으로, 이후 socketserver.on('connection', ws => {...}) 코드의 ws를 Accept로 받은 자식 소켓으로 쉽게 매칭이 될 것입니다.

자, 그럼 위의 소스 코드와 통신하는 WebSocket 클라이언트를 C#으로 다음과 같이 작성할 수 있습니다.

using System.Net.WebSockets;
using System.Text;

namespace WebSocketClient;

internal class Program
{
    static async Task Main(string[] args)
    {
        Console.WriteLine("Press any key to start");
        Console.ReadLine();

        string url = "ws://localhost:18000/";

        var connectTimeout = new CancellationTokenSource();
        connectTimeout.CancelAfter(2000);

        System.Net.WebSockets.ClientWebSocket ws = new System.Net.WebSockets.ClientWebSocket();
        await ws.ConnectAsync(new Uri(url), connectTimeout.Token);

        if (ws.State != System.Net.WebSockets.WebSocketState.Open)
        {
            Console.WriteLine($"Failed to connect: {url}");
            return;
        }

        Console.WriteLine($"Received: {await Read(ws)}");

        await ws.SendAsync(Encoding.UTF8.GetBytes("Hello"), WebSocketMessageType.Text, true, CancellationToken.None);

        Console.WriteLine($"Received: {await Read(ws)}");

        await ws.CloseAsync(WebSocketCloseStatus.NormalClosure, null, CancellationToken.None);
    }

    private static async Task<string> Read(ClientWebSocket ws)
    {
        var buffer = new byte[1024];
        var result = await ws.ReceiveAsync(buffer, CancellationToken.None);
        return Encoding.UTF8.GetString(buffer, 0, result.Count);
    }
}

단지 비동기 구문만 살짝 더 곁들여져서 복잡한 듯하지만, 기존의 TCP 소켓과 사용법이 거의 유사해서 딱히 더 설명할 것이 없을 정도군요. ^^;

암튼, 그냥 어렵지 않으니 언제든 쉽게 적용할 수 있다는 정도였다는 것만 알고 넘어가도 되겠습니다.

(첨부 파일은 이 글의 예제 코드를 포함합니다.)




참고로, WebSocket을 아예 TCP Socket 레벨에서 다루고 싶다면 아래의 글이 도움이 될 것입니다.

Writing a WebSocket server in C#
; https://developer.mozilla.org/en-US/docs/Web/API/WebSockets_API/Writing_WebSocket_server

C# WebSocket 서버 구현
; https://hgarchive.tistory.com/4

Golang으로 직접 WebSocket 통신 구현해보기
; https://docs.google.com/document/d/e/2PACX-1vRrf1SD1k4FyXv1G-DPlDbX9F3KsNMnKogF4SrUNqkA9X5P8F-w2yTGzgDunctdpfHIfmoQZaFZ3jm4/pub

거의 RFC 6455 규약대로 구현을 하고 있기 때문에 Web Socket에 대한 이해를 높일 수 있을 것입니다. 엄밀히 말해서, 단순한 TCP 통신의 한 사례일 뿐, 어쩌면 JavaScript가 이런 정도로까지 대중화하지 않았다면 나오지 않았을 기술입니다.




만약 이런 오류가 발생한다면?

System.Net.WebSockets.WebSocketException
  HResult=0x80004005
  Message=Unable to connect to the remote server
  Source=System.Net.WebSockets.Client
  StackTrace:
   at System.Net.WebSockets.WebSocketHandle.<ConnectAsync>d__22.MoveNext() in /_/src/libraries/System.Net.WebSockets.Client/src/System/Net/WebSockets/WebSocketHandle.Managed.cs:line 221

  This exception was originally thrown at this call stack:
    System.Net.Security.SslStream.GetFrameSize(System.ReadOnlySpan<byte>) in SslStream.IO.cs
    System.Net.Security.SslStream.EnsureFullTlsFrameAsync<TIOAdapter>(System.Threading.CancellationToken, int) in SslStream.IO.cs
    System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder<TResult>.StateMachineBox<TStateMachine>.System.Threading.Tasks.Sources.IValueTaskSource<TResult>.GetResult(short) in PoolingAsyncValueTaskMethodBuilderT.cs
    System.Net.Security.SslStream.ReceiveHandshakeFrameAsync<TIOAdapter>(System.Threading.CancellationToken) in SslStream.IO.cs
    System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable<TResult>.ConfiguredValueTaskAwaiter.GetResult() in ConfiguredValueTaskAwaitable.cs
    System.Net.Security.SslStream.ForceAuthenticationAsync<TIOAdapter>(bool, byte[], System.Threading.CancellationToken) in SslStream.IO.cs
    System.Net.Security.SslStream.ProcessAuthenticationWithTelemetryAsync(bool, System.Threading.CancellationToken) in SslStream.IO.cs
    System.Net.Http.ConnectHelper.EstablishSslConnectionAsync(System.Net.Security.SslClientAuthenticationOptions, System.Net.Http.HttpRequestMessage, bool, System.IO.Stream, System.Threading.CancellationToken) in ConnectHelper.cs

Inner Exception 1:
HttpRequestException: The SSL connection could not be established, see inner exception.

Inner Exception 2:
AuthenticationException: Cannot determine the frame size or a corrupted frame was received.

SSL 통신으로 열어놓지 않은 WebSocket에 wss 프로토콜로 접근했기 때문입니다.

System.Net.WebSockets.ClientWebSocket ws = new System.Net.WebSockets.ClientWebSocket();
await ws.ConnectAsync(new Uri("wss://localhost:18000/"), CancellationToken.None);

HTTP와 HTTPS의 관계처럼, WS와 WSS는 Secure Socket 통신의 여부를 결정합니다.




이런 오류가 발생한다면?

System.Net.WebSockets.WebSocketException
  HResult=0x80004005
  Message=The server returned status code '200' when status code '101' was expected.
  Source=System.Net.WebSockets.Client
  StackTrace:
   at System.Net.WebSockets.WebSocketHandle.ValidateResponse(HttpResponseMessage response, String secValue) in /_/src/libraries/System.Net.WebSockets.Client/src/System/Net/WebSockets/WebSocketHandle.Managed.cs:line 454

접속하려는 WebSocket 주소가 올바른지 확인해 볼 필요가 있습니다. 즉, HTTP 웹 서비스가 반응하는 경우 저런 오류가 발생하게 됩니다.




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]

[연관 글]






[최초 등록일: ]
[최종 수정일: 4/5/2024]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




... 61  62  63  64  65  66  67  68  69  70  71  [72]  73  74  75  ...
NoWriterDateCnt.TitleFile(s)
12136정성태2/6/202017268Windows: 168. Windows + S(또는 Q)로 뜨는 작업 표시줄의 검색 바가 동작하지 않는 경우
12135정성태2/6/202022531개발 환경 구성: 468. Nuget 패키지의 로컬 보관 폴더를 옮기는 방법 [2]
12134정성태2/5/202020940.NET Framework: 884. eBEST XingAPI의 C# 래퍼 버전 - XingAPINet Nuget 패키지 [5]파일 다운로드1
12133정성태2/5/202018355디버깅 기술: 161. Windbg 환경에서 확인해 본 .NET 메서드 JIT 컴파일 전과 후 - 두 번째 이야기
12132정성태1/28/202021209.NET Framework: 883. C#으로 구현하는 Win32 API 후킹(예: Sleep 호출 가로채기) [1]파일 다운로드1
12131정성태1/27/202020194개발 환경 구성: 467. LocaleEmulator를 이용해 유니코드를 지원하지 않는(한글이 깨지는) 프로그램을 실행하는 방법 [1]
12130정성태1/26/202017477VS.NET IDE: 142. Visual Studio에서 windbg의 "Open Executable..."처럼 EXE를 직접 열어 디버깅을 시작하는 방법
12129정성태1/26/202023588.NET Framework: 882. C# - 키움 Open API+ 사용 시 Registry 등록 없이 KHOpenAPI.ocx 사용하는 방법 [3]
12128정성태1/26/202017941오류 유형: 591. The code execution cannot proceed because mfc100.dll was not found. Reinstalling the program may fix this problem.
12127정성태1/25/202017125.NET Framework: 881. C# DLL에서 제공하는 Win32 export 함수의 내부 동작 방식(VT Fix up Table)파일 다운로드1
12126정성태1/25/202018506.NET Framework: 880. C# - PE 파일로부터 IMAGE_COR20_HEADER 및 VTableFixups 테이블 분석파일 다운로드1
12125정성태1/24/202015993VS.NET IDE: 141. IDE0019 - Use pattern matching
12124정성태1/23/202017778VS.NET IDE: 140. IDE1006 - Naming rule violation: These words must begin with upper case characters: ...
12123정성태1/23/202019492웹: 39. Google Analytics - gtag 함수를 이용해 페이지 URL 수정 및 별도의 이벤트 생성 방법 [2]
12122정성태1/20/202015627.NET Framework: 879. C/C++의 UNREFERENCED_PARAMETER 매크로를 C#에서 우회하는 방법(IDE0060 - Remove unused parameter '...')파일 다운로드1
12121정성태1/20/202016322VS.NET IDE: 139. Visual Studio - Error List: "Could not find schema information for the ..."파일 다운로드1
12120정성태1/19/202018717.NET Framework: 878. C# DLL에서 Win32 C/C++처럼 dllexport 함수를 제공하는 방법 - 네 번째 이야기(IL 코드로 직접 구현)파일 다운로드1
12119정성태1/17/202018933디버깅 기술: 160. Windbg 확장 DLL 만들기 (3) - C#으로 만드는 방법
12118정성태1/17/202019954개발 환경 구성: 466. C# DLL에서 Win32 C/C++처럼 dllexport 함수를 제공하는 방법 - 세 번째 이야기 [1]
12117정성태1/15/202018758디버깅 기술: 159. C# - 디버깅 중인 프로세스를 강제로 다른 디버거에서 연결하는 방법파일 다운로드1
12116정성태1/15/202019434디버깅 기술: 158. Visual Studio로 디버깅 시 sos.dll 확장 명령어를 (비롯한 windbg의 다양한 기능을) 수행하는 방법
12115정성태1/14/202019682디버깅 기술: 157. C# - PEB.ProcessHeap을 이용해 디버깅 중인지 확인하는 방법파일 다운로드1
12114정성태1/13/202021489디버깅 기술: 156. C# - PDB 파일로부터 심벌(Symbol) 및 타입(Type) 정보 열거 [1]파일 다운로드3
12113정성태1/12/202021539오류 유형: 590. Visual C++ 빌드 오류 - fatal error LNK1104: cannot open file 'atls.lib' [1]
12112정성태1/12/202016746오류 유형: 589. PowerShell - 원격 Invoke-Command 실행 시 "WinRM cannot complete the operation" 오류 발생
12111정성태1/12/202020539디버깅 기술: 155. C# - KernelMemoryIO 드라이버를 이용해 실행 프로그램을 숨기는 방법(DKOM: Direct Kernel Object Modification) [16]파일 다운로드1
... 61  62  63  64  65  66  67  68  69  70  71  [72]  73  74  75  ...