Microsoft MVP성태의 닷넷 이야기
WCF net.tcp 관련해서 질문 드립니다. [링크 복사], [링크+제목 복사]
조회: 14837
글쓴 사람
김응규 (elther at nate.com)
홈페이지
첨부 파일
 


 안녕하세요.

 WCF net.tcp를 이용해서 간단하게 프로젝트를 진행해보려고 하는데

 설정 단계에서 막혀버려서 답답합니다.


 서비스와 클라이언트가 한 컴퓨터 안에서 돌아갈때는 문제 없이 잘 돌아가는데

 서비스를 서버에 올리고 외부에서 붙으려고 하면

 ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
 소켓 연결이 중단되었습니다. 메시지 처리 오류 또는 원격 호스트에 의한 수신 시간 제한 초과, 또는 기본 네트워크 리소스 문제 때문일 수 있습니다. 로컬 소켓 시간 제한은 '00:00:09.9945955'입니다.

 
 이런 메세지가 나옵니다.

 어제는 10060 에러가 발생해서 호스팅 업체를 통해 포트를 열었는데, 그 후 잘될줄 알았으나.. 10060 에러는 사라지고 소켓 연결 에러가 나오네요..


 server config
 ----------------------------
 <?xml version="1.0" encoding="utf-8"?>
<!--
  For more information on how to configure your ASP.NET application, please visit
  http://go.microsoft.com/fwlink/?LinkId=169433
  -->
<configuration>
  <system.web>
    <compilation debug="true" targetFramework="4.5" />
    <httpRuntime targetFramework="4.5" />
  </system.web>
  <system.serviceModel>
    <services>
      <service name="HelloWorldService.HelloWorldWCFService">
        <endpoint address="http://내 도메인/helloworld.svc" binding="basicHttpBinding"
          bindingConfiguration="" contract="HelloWorldService.IHelloWorld" />
        <endpoint address="net.tcp://내 도메인/HelloWorld.svc" behaviorConfiguration="endpointBehavior"
          binding="netTcpBinding" bindingConfiguration="tcpBinding" name="hellonettcpbinding"
          contract="HelloWorldService.IHelloWorld">
          <identity>
            <dns value="localhost" />
          </identity>
        </endpoint>
        <endpoint address="mex" behaviorConfiguration="endpointBehavior" binding="mexTcpBinding"
          bindingConfiguration="" name="mextcpbinding" contract="IMetadataExchange" />
        <host>
          <baseAddresses>
            <add baseAddress="net.tcp://내 도메인/HelloWorld.svc" />
          </baseAddresses>
        </host>
      </service>
    </services>
    <behaviors>
      <serviceBehaviors>
        <behavior name="">
          <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" />
          <serviceDebug includeExceptionDetailInFaults="false" />
        </behavior>
      </serviceBehaviors>
      <endpointBehaviors>
        <behavior name="endpointBehavior">
          <dataContractSerializer maxItemsInObjectGraph="2147483647"/>
        </behavior>
      </endpointBehaviors>
    </behaviors>
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true"
      multipleSiteBindingsEnabled="true" />
    <bindings>
      <netTcpBinding>
        <binding name="tcpBinding" receiveTimeout="00:01:30" >
          <security mode="None"/>
          <reliableSession enabled="true" inactivityTimeout="00:00:10" ordered="true" />
        </binding>
      </netTcpBinding>
    </bindings>
  </system.serviceModel>
  <system.diagnostics>
    <trace autoflush="true" />
    <sources>
      <source name="System.ServiceModel"
              switchValue="Information, ActivityTracing"
              propagateActivity="true">
        <listeners>
          <add name="sdt"
              type="System.Diagnostics.XmlWriterTraceListener"
              initializeData="SdrConfigExample.e2e" />
        </listeners>
      </source>
    </sources>
  </system.diagnostics>
</configuration>


 
 client config
 -----------------------
 <?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <startup>
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
    </startup>
    <system.serviceModel>
        
        <behaviors>
            <endpointBehaviors>
              <behavior name="endpointBehavior">
                <dataContractSerializer maxItemsInObjectGraph="2147483647"/>
              </behavior>
            </endpointBehaviors>
        </behaviors>
        <bindings>
            <basicHttpBinding>
                <binding name="BasicHttpBinding_IHelloWorld" />
            </basicHttpBinding>
            <netTcpBinding>
              <binding name="NetTcpBinding_IHelloWorld">
                <security mode="None"/>
                <reliableSession enabled="true" inactivityTimeout="00:00:10" ordered="true" />
              </binding>
            </netTcpBinding>
        </bindings>
        <client>
            <endpoint address="http://내 도메인/HelloWorld.svc" binding="basicHttpBinding"
                bindingConfiguration="BasicHttpBinding_IHelloWorld" contract="ServiceReference1.IHelloWorld"
                name="BasicHttpBinding_IHelloWorld" />
            <endpoint address="net.tcp://내 도메인/HelloWorld.svc" binding="netTcpBinding"
                bindingConfiguration="NetTcpBinding_IHelloWorld" contract="ServiceReference1.IHelloWorld"
                name="NetTcpBinding_IHelloWorld">
                <identity>
                    <servicePrincipalName value="host/WIN2012-STD" />
                </identity>
            </endpoint>
        </client>
    </system.serviceModel>

  <system.diagnostics>
    <trace autoflush="true" />
    <sources>
      <source name="System.ServiceModel"
              switchValue="Information, ActivityTracing"
              propagateActivity="true">
        <listeners>
          <add name="sdt"
              type="System.Diagnostics.XmlWriterTraceListener"
              initializeData="SdrConfigExample.e2e" />
        </listeners>
      </source>
    </sources>
  </system.diagnostics>
</configuration>




 후움.. 원인이 무엇일까요 ㅠㅠ.. 거의 다 온것 같은데..
 








[최초 등록일: ]
[최종 수정일: 4/22/2015]


비밀번호

댓글 작성자
 



2015-04-22 02시32분
사이트에 올라와있는 WCF 관련글들을 쭉 읽어보니 결국 인증 문제인것 같은데, 인증서로 인증부분을 처리해야 하나요?
김응규
2015-04-22 04시42분
security mode="None"으로 설정했기 때문에 인증 문제는 아닙니다. 인증서도 필요없을 것 같고요. 글쎄요... 그냥 봐서는 별다르게 문제가 없어 보이는데요. 단지, 에러 메시지에 보인 00:00:09.9945955 숫자가 걸리는데, 혹시 연결이 안되는 건가요? 아니면 연결은 되었는데 조금 있다가 끊기는 건가요?
정성태

1  [2]  3  4  5  6  7  8  9  10  11  12  13  14  15  ...
NoWriterDateCnt.TitleFile(s)
5910guest4/24/20233442Async 메서드와 try~catch [1]
5909guest4/22/20233860Visual Studio 구매 시(1인 개발자) [4]
5908guest4/22/20233676텅빈 원그리기 [5]
5907민성4/21/20233322안녕하세요 서버 백업 문제에 대해서 [2]
5906guest4/21/20233454Dispatcher 서비스 구현 질문 [1]
5905guest4/20/20233777tabControl의 tabPage가 여러 개일 때 순서를 바꾸기가 까다롭네요 [5]
5904guest4/18/20233711[신규자료첨부] DLL 'SQLite.Interop.dll'을 찾을 수 없습니다 [4]파일 다운로드1
5903guest4/18/20233152fileSystemWatcher 이벤트 관련 질문입니다 [2]
5902guest4/17/20233792c#으로 USB 관련 질문 [2]
5901guest4/17/20233346내솔루션 판매 시 1.0.0.0 폴더와 Sqlite 배포 [5]
5900guest4/17/20234531DLL 'SQLite.Interop.dll'을 찾을 수 없습니다 [2]파일 다운로드1
5899guest4/17/20233459Dictionary와 Linq [4]
5898차가워4/17/20233316CNTK 교육 문의 [1]
5897guest4/17/20233239Socket스레드와 UI thread [4]
5896HAN4/16/20233224c언어 return 에 대해 궁금한게 있어요. [1]파일 다운로드1
5895guest4/15/20232980Drag and Drop - 모든 컨트롤 [2]
5894송부장4/14/20234389[질문] Visual Studio 2022에서 '도구 상자 항목 선택'의 'COM 구성 요소' 탭에서 ActiveX 목록이 보이지 않습니다. [3]파일 다운로드2
5893감사합니...4/14/20232976오라클 OLEDB방식 접속 후 SELECT 'TEST' TEST_VALUE FROM DUAL의 값이 이상합니다. [1]
5892한무4/14/20233163C# 으로 백그라운드에서 워드를 실행하여 매크로 실행이 가능 할까요? [2]
5891리세4/14/20233062안녕하세요.C# 서버프로그램에서의 Mysql 쿼리문제(다중쿼리 실행)에 대해 문의드립니다. [2]
5890guest4/14/20233693C# 프리랜서로 돈 벌려면 성태님 책 마스터하면 되나요? [6]
5889전예찬4/14/20232896C# 파일 복사 관련 질문 드립니다. [3]
5888정경구4/12/20233183C# 첫 환경 세팅과 관련해서 [4]
5887HAN4/12/20232810안녕하세요 파이썬도 공유 가능 할까요? [1]
5886guest4/11/20233200필요한 어셈블리만 다운로드 및 재로딩하는 방법에 관하여 [2]
5885guest4/11/20233035c#으로 드림위버같은 거 만들어볼려는데요 [6]
1  [2]  3  4  5  6  7  8  9  10  11  12  13  14  15  ...