Microsoft MVP성태의 닷넷 이야기
글쓴 사람
Sungwoo Park (musicbox3 at nate.com)
홈페이지
첨부 파일
 

예외 발생: 'System.Runtime.InteropServices.COMException'(mscorlib.ni.dll)
WinRT 정보: Only one usage of each socket address (protocol/network address/port) is normally permitted.

예외 발생: 'System.Runtime.InteropServices.COMException'(mscorlib.ni.dll)
WinRT 정보: An existing connection was forcibly closed by the remote host.

현재 ThreadPool을 사용해서 echo_server()를 실행 신호에 따른 GPIO를 제어하고 있습니다.

ThreadPoolTimer로 echo_client()가 1초마다 한번씩 특정 디바이스에 신호를 보내고 있는데요

작동은 되고 있습니다. 주기적으로 1초마다 신호를 보내고 있고 echo_server에서도 받는 신호에 따라서 특정 GPIO를 제어는 하고 있습니다.
근데 예외사항 관련 호출 문제 메세지가 뜨고 있습니다. 현재 에러가 뜨고 있는 부분은 체크해 보았습니다.


####으로 표시해놓은 두 곳
여기와 await socketListener.BindServiceNameAsync("15530");

여기에 await socket.ConnectAsync(serverHost, serverPort);

System.DirectoryServices.DirectoryServicesComException이 발생합니다.

각 소켓 서버 프로토콜 주소 포트는 하나만 쓸 수 있다 라는 이야기인데 일단 서버와 클라이언트 포트는 바꿔보았지만 포트를 바꾸는게 문제가 아닌지 해결은 되지 않았습니다.

쓰레드 사용을 잘못하고 있기 때문인가요? 익셉션을 어떻게 처리해야 할까요?

그리고 또 한가지 1초마다 수신을 하도록 만들어 놨는데 10초마다 한번 정도는 초가 어긋나는데요 이 경우는 그냥 시스템의 문제인가요?

public sealed partial class MainPage : Page
    {
        public MainPage()
        {
            this.InitializeComponent();
            InitGPIO();
            IAsyncAction threadPoolWorkItem = Windows.System.Threading.ThreadPool.RunAsync((source) =>
            {
                //Perform the thread pool work item activity.
                while (true)
                {
                    //When WorkItem.Cancel is called, work items that have not started are canceled.
                    //if a work item is already running, it will run to completion uniess it supports cancellation.
                    //To support cancellatin, the work item should check IAsyncAction.Status for cancellation status
                    //and exit cleanly if it has been canceled.
                    if (source.Status == AsyncStatus.Canceled)
                    {
                        break;
                    }

                    echo_server();

                }
            }, WorkItemPriority.Normal);
            //echo_server();
            //echo_client();
            //DispatcherTimerSetup();

            TimeSpan period = TimeSpan.FromSeconds(1);

            ThreadPoolTimer PeriodicTimer = ThreadPoolTimer.CreatePeriodicTimer(async (source) =>
            {
                await

                                //TODO: Work
                                
                                //Update the UI thread by using the UI core dispatcher.

                                Dispatcher.RunAsync(CoreDispatcherPriority.High,
                                    () =>
                                    {
                                        echo_client();

                                    //UI components can be accessed within this scope.


                                });

            }, period);
        }
        
       
        private GpioPin pin = null; //LED가 연결된 핀을 전역으로 제어하기 위해 메서드 밖에서 선언합니다.

        //우리가 사용할 GPIO를 초기화하는 메서드입니다.
        private void InitGPIO()

        {
            // 시스템의 기본 Gpio 컨트롤러를 가져옵니다.

            var gpio = GpioController.GetDefault();
            if (gpio == null) // 에러 처리 - null이면 GPIO를 사용할 수 없는 장치입니다.
            {
                pin = null;
                this.textBlock.Text = "There is no GPIO controller on this device.";
                return;
            }
            pin = gpio.OpenPin(18); //LED가 연결된 GPIO 18번 핀을 오픈합니다.

            //pin 객체는 InitGPIO() 메서드 바로 위에 전역으로 선언해 놨습니다.

            if (pin == null) //에러처리 - null이면 해당 핀 번호를 사용할 수 없습니다.
            {
                this.textBlock.Text = "There were problems initializing the GPIO pin.";
                return;
            }
            //LED 불을 끕니다.
            pin.Write(GpioPinValue.Low);
            //LED가 연결된 핀을 출력 모드로 설정합니다.
            pin.SetDriveMode(GpioPinDriveMode.Output);

            //텍스트 박스에 GPIO 사용이 완료되었다고 표기합니다.

            this.textBlock.Text = "GPIO pin initialized correctly.";
        }
       
        private async void echo_server()
        {
            
            try
            {
                //TCP 접속을 대기 시작하는 StreamSocketlistener를 만든다.
                Windows.Networking.Sockets.StreamSocketListener socketListener = new Windows.Networking.Sockets.StreamSocketListener();
                //연결이 수신 될 때 호출하는 이벤트 핸들러를 연결
                socketListener.ConnectionReceived += SocketListener_ConnectionReceived;

                // String a = socketListener.BindEndpointAsync(HostName localhost, String local);
                //지정된 포트에 들어오는 TCP 접속을 대기 시작. 당신은 현재 사용하는 모든 포트를 지정할 수 있다.
                

               ####여기 에러입니다. await socketListener.BindServiceNameAsync("15530");

            }
            catch (Exception e)
            {
                //Handle exception.

            }

        }
        private async void SocketListener_ConnectionReceived(Windows.Networking.Sockets.StreamSocketListener sender,
    Windows.Networking.Sockets.StreamSocketListenerConnectionReceivedEventArgs args)
        {
            //원격 클라이언트에서 읽어오기
            string a = args.Socket.Information.RemoteAddress.DisplayName.ToString();
            Stream inStream = args.Socket.InputStream.AsStreamForRead();
            StreamReader reader = new StreamReader(inStream);
            string request = await reader.ReadLineAsync();
            this.Dispatcher.RunAsync(Windows.UI.Core.CoreDispatcherPriority.Normal, () =>
            {
                textBox1.Text = a + " " + DateTime.Now.ToString("HH:mm:ss") + "\n";

                textBlock_Copy.Text = request;

                if (request.Equals("b"))
                {
                    textBlock2_Copy.Text = "켜짐";
                }
                else
                {
                    textBlock2_Copy.Text = "꺼짐";
                }
                //MessageDialog msgdlg = new MessageDialog("Choose a color", "How To Async #1");
                //msgdlg.Commands.Add(new UICommand("Red", null, Colors.Red));
            }).AsTask().Wait();
            if (request.Equals("b"))
            {
                pin.Write(GpioPinValue.High);
            }
            else
            {
                pin.Write(GpioPinValue.Low);
            }

            //Send the line back to the remote client.
            Stream outStream = args.Socket.OutputStream.AsStreamForWrite();
            StreamWriter writer = new StreamWriter(outStream);
            await writer.WriteLineAsync(request);
            await writer.FlushAsync();
        }

        private async void echo_client()
        {
            try
            {
                //Create the StreamSocket and establish a connection to the echo server.
                Windows.Networking.Sockets.StreamSocket socket = new Windows.Networking.Sockets.StreamSocket();
                
                //The server hostname that we will be establishing a connection to. We will be running the server and client locally,
                //so we will use localhost as the hostname.
                Windows.Networking.HostName serverHost = new Windows.Networking.HostName("192.168.10.142");

                //Every protocol typically has a standard port number. For example HTTP is typically 80, FTP is 20 and 21, etc.
                //For the echo server/client application we will use a random port 1337.
                string serverPort = "16530";
                
                ####여기 에러 입니다. await socket.ConnectAsync(serverHost, serverPort);

                //Write data to the echo server.
                Stream streamOut = socket.OutputStream.AsStreamForWrite();
                StreamWriter writer = new StreamWriter(streamOut);
                string request = DateTime.Now.ToString("HH:mm:ss");
                await writer.WriteLineAsync(request);
                await writer.FlushAsync();

                //Read data from the echo server.
                Stream streamIn = socket.InputStream.AsStreamForRead();
                StreamReader reader = new StreamReader(streamIn);
                string response = await reader.ReadLineAsync();
            }
            catch (Exception e)
            {
                //Handle exception here.
            }
        }
        private void button_Click(object sender, RoutedEventArgs e)
        {
            echo_client();
        }
     }








[최초 등록일: ]
[최종 수정일: 12/24/2015]


비밀번호

댓글 작성자
 



2015-12-25 07시15분
우선 소켓에 대한 사용 개념이 잘 서 있지 않은 것 같습니다. 간단하게 우선 윈폼이나 콘솔 응용 프로그램 형식으로 자신이 하려는 GPIO 로직을 다른 걸로 대체해서 테스트를 해보세요. 제 생각에는 박성우님이 지금 프로젝트를 진행하기 보다는 좀 더 공부가 필요한 것 같습니다.
정성태
2015-12-27 11시16분
[sungwoo park] 예 사실 소켓에 대한 개념이 아직 인게 사실입니다. 소켓부터 공부하도록 하겠습니다. 답변 감사합니다.
[guest]

... 16  17  [18]  19  20  21  22  23  24  25  26  27  28  29  30  ...
NoWriterDateCnt.TitleFile(s)
5480한예지 donator4/5/20217360GetHashCode 질문있습니다! [2]
5479한예지 donator4/4/20216423Equals를 닷넷에서 어떻게 구현했는지 보고 싶을 떄는 어떻게 해야 될까요? [2]
5478갑자기C#3/23/20218884C# Winform에서 TextBox없이 입력 받을 수 있나요? [7]
5477달팽이3/18/20215890c# 도형을 그린후 편집하는 방법이 궁금합니다. [2]파일 다운로드1
5475dimo...3/2/20216918POH가 .NET 5에 추가된 것으로 알고 있습니다. POH가 유용한 경우는 어떤 경우가 있을까요? [1]
5474Syong2/26/20216457사용자 지정 컨트롤 생성시 Invalidate, Update, Refresh의 차이점 [2]
5473한예지 donator2/25/20216310디자인 타임이 뭔지 궁금합니다!! [5]
5472dimo...2/24/20217078등록하지 않고 ocx를 사용하는 `키움`관련 포스팅을 따라가다 질문드립니다. [9]
5471남산2/21/20215727MarshalDirectiveException 에 대한 질문입니다. [1]
5470한예지 donator2/7/20215652yield 질문있습니다!! [2]
5469유호성2/6/20215201Parallel + Task.Run 동시 실행 환경에서 간헐적으로 Task.Run()에서 null이 리턴됩니다. [3]파일 다운로드1
5467hero...2/4/20215571실행 환경에 따른 Thread.Sleep 딜레이 차이 질문 [8]
5466pr1/29/20215465c# winform load시 작업표시줄에 뜨지 않는 현상을 겪으신적이 있으신가요? [4]파일 다운로드1
5465영귤1/28/20215844두 번째 await 부터는 스레드 개수만 늘어나는 것이 아닌가요 [1]
5464민우1/26/20216128C# 빌드시 코드 치환되는걸 확인하는 방법 문의 [2]
5463한예지 donator1/24/20216842Parameters.AddWithValue 와 Parameters.Add 의 차이점이 궁금합니다. [2]
5462C#초보1/22/20217235사용자 정의 메시지 전달이 가능한가요? [2]
5461한예지 donator1/22/20216600AsEnumerable() 메서드 질문 있습니다! [2]
5459한예지 donator1/21/20215945typeof와 GetType의 차이점 질문있습니다. [2]
5458진우1/20/20216801C# DataTable 에 SQL 쿼리문을 실행하는 방법 문의 (LINQ 사용하지 않고) [6]
5456성민1/17/202172349.0 출간 계획이 있으신가요? [2]
5455한예지 donator1/16/20216278교재 194페이지 콜백메서드 질문 있습니다! [5]
5454한예지 donator1/15/20215901교재 208쪽 질문....있습니다... [3]
5453안녕하세요1/15/20217340C# dll 파일을 C++에서 사용 시 memory leak 문제 [2]파일 다운로드1
5452예지1/15/20216478var를 사용할 수 없는 이유가 궁금합니다! [3]
5451예지1/14/20215296for문의 초기식에 대해 질문드립니다. [3]
... 16  17  [18]  19  20  21  22  23  24  25  26  27  28  29  30  ...