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]

1  2  3  [4]  5  6  7  8  9  10  11  12  13  14  15  ...
NoWriterDateCnt.TitleFile(s)
5853pa3/16/20233158오피스 2016 업데이트 후 파일 출력 불가 [1]
5852guest3/16/20232850입력 foreach 검색/출력 foreach [3]
5851guest3/15/20233162foreach내 list변경 [10]
5850독서가3/14/20232845C#에서 동적dll 사용시 문의입니다. [4]파일 다운로드1
5849guest3/9/20232828C# wpf로 Web에서 구동되는 hts가능한가요? (노트북없고 스마트폰 없음) [4]
5848민성3/9/20232745도움 요청드립니다. [2]파일 다운로드1
5847guest3/7/20232876SQlike Like 구문 - 1시간째 인데 안되네요 [13]
5846Huuu...3/7/20232580웹 다운로드에 대한 고찰 [5]파일 다운로드1
5845guest3/7/20232609C# Split함수의 불친절함 [1]
5844까망이3/7/20232731c# 무료 디컴파일러는 어떤게 좋습니까? [1]
5843guest3/7/20232669판매 후 dll 등 에러 [5]
5842kr13/6/20232712publish 할 때 분석기 관련 dll 제외 [5]
5841guest3/3/20232910프로그램 판매 시 - Upgrade 버전 판매 [2]
5840joe3/2/20233000C# 클래스 라이브러리 수정 -> C++에서 참조시 함수 목록 갱신되지 않음. [4]파일 다운로드1
5839guest3/2/20233649윈도우 서비스 프로그램 - FORM 애플리케이션 감시서비스 [8]
5838랄랄라3/1/20232842event 사용 시 두 표현의 차이점이 있을까요? [1]
5837감사합니...2/28/20232993오라클 DB서버 접속관련 문의 드립니다.(Load Balancing, HA Events) [2]
5836박지범2/27/20232792static instance의 initialize 순서가 보장되나요? [6]
5835주민호2/25/20235547Windows Software Development Kit - 최신버전 1개 남기고 다 삭제하면 안되는지요? [10]파일 다운로드1
5834guest2/24/20232826Python IDE - 비주얼스튜디오 [3]
5833무지남2/23/20232552Async 메서드 그리고 나서 Bool 메서드 [5]
5832김지우2/21/20232830event와 delegate의 차이 , event를 써야하는 이유 [1]
5831이우람2/20/20233066ref 전역변수가 pinned가 될수 있나요? [2]
5830냉수마찰2/19/20233386C# GridView에 Column별 데이터 추가하는 방법에 대해 [1]
5829수박942/19/20233385키움 API를 윈폼과 WPF의 네임스페이스 없이 콘솔이나 WinUI3에서 사용할 수 있는 방법이 있나요? [2]파일 다운로드1
5828김재영2/19/20233141장기적으로는 this 구문을 안쓰는게 맞을까요? [2]
1  2  3  [4]  5  6  7  8  9  10  11  12  13  14  15  ...