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)
5285강성욱1/27/20207643작업관리자에 표시되는 스레드 개수와 프로그램 내 스레드 개수 일치 [1]
5284이상준1/15/202013354출력창에 '스레드가 종료되었습니다' 문구 문의 [2]파일 다운로드1
5282봉봉이 1/13/202010086소켓 비동기 ReceiveTimeOut 구현 [9]파일 다운로드1
5281봉봉이 1/13/20208230소켓 비동기 ReceiveTimeOut 구현 [2]
5280sdd1/8/20206756데이터 저장, 배치파일 관련하여 질문드립니다. [4]
5279김창한12/27/20197760dsoframer ocx [3]
5278guest12/27/20196496CLR 스레드 풀 관련 질문 [1]
5277방문자12/26/20196323WindowsForm 질문드립니다. [3]
5276진우12/17/20198059c++/c# 에도 파이썬 가상환경 같은 기능 혹시 있는지 궁금합니다. [3]
5275송재필12/17/20197786아래 'c#8.0 프로그래밍 교제 예제 관련 문의 드립니다' 의 원인이 압축 파일의 문제인듯 합니다. [2]파일 다운로드1
5272정영훈12/13/20197923byte => string => byte 변환 문의드립니다. [5]파일 다운로드1
5270김세미12/3/20197705c#8.0 프로그래밍 교제 예제 관련 문의 드립니다. [4]
5269달려라라...12/2/20197813C# winform(framework) tabcontrol 에서 button 함수 관련 질문 [3]파일 다운로드1
5266엔벌잉11/26/20196765라즈베리파이 autostart관련 질문 [2]
5265해나11/25/20196841C# 6.0 책 내용 문의 [1]
5264김혜원11/18/20199324C# CodeSign에 대해 여쭤볼 것이 있습니다 [4]
5263정환맨11/17/20197443Task관련 질문입니다 [3]
5262닷린이11/14/20198847Dispatcher 와 synchronizationcontext의 관계가 궁금합니다. [6]
5260방문자11/13/20197772안녕하세요 도움받고 싶습니다 [1]
5259ming11/13/20196861string타입 파라메터로 넘길때 메모리 내부가 궁금합니다. [3]
5258C#초보11/13/20198659DCOM COM+ 등록 관련 문의드립니다. [7]
5257C#초보11/9/20197267파일 저장 방법에 대해 조언 부탁드립니다. [3]
5256세퉁11/8/20196596안녕하세요~ 질문은 아닙니다만.. [1]
5255C#초보11/6/20197117중첩 딕셔너리를 어떻게 만들 수 있을까요? [2]
5252김동수11/4/20196736Windows 10 로그인 ( Credential Provider ) 문의드립니다. [1]
5251kss11/1/20196844c#문법질문입니다. [1]
... 16  17  18  19  20  21  22  23  24  [25]  26  27  28  29  30  ...