안녕하세요.
WPF 로 만들어진 사내앱이 특정 프로그램(feelaware의 Secure VDI) 실행시(중국쪽 연결 앱입니다)
접속이 안되는 현상이 있습니다. (pc 재부팅시 정상 접속, 특정 프로그램 실행시에만 접속 불가 현상)
특이점으로는 fiddler 실행시 정상 접속된다는 것입니다. proxy 문제일까요?
방화벽 등 확인할 수 있는 사항은 모두 검토해보았습니다.
StackOverflow 등 여러 사이트를 구글링 해보았지만 뾰족한 수를 찾지 못해 글 올려봅니다.
추가로 확인해볼 사항이 있는지 댓글 주시면 확인토록 해보겠습니다.
- 에러 내용
e.Exception=메시지를 수락할 수 있는 http://ip:port/서비스.svc에서 수신 대기 중인 끝점이 없습니다. 이것은 흔히 잘못된 주소나 SOAP 동작으로 인해 발생합니다. 자세한 내용은 InnerException(있을 경우)을 참조하십시오.
e.Exception.InnerException=기본 연결이 닫혔습니다. 원격 서버에 연결할 수 없습니다.
- App.config 구성 내용
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IDataService" closeTimeout="01:00:00" openTimeout="01:00:00" receiveTimeout="01:00:00" sendTimeout="01:00:00" allowCookies="false" bypassProxyOnLocal="false" maxBufferPoolSize="524288" maxReceivedMessageSize="2147483647" useDefaultWebProxy="false" />
<binding name="BasicHttpBinding_IHelperService" closeTimeout="01:00:00" openTimeout="01:00:00" receiveTimeout="01:00:00" sendTimeout="01:00:00" allowCookies="false" bypassProxyOnLocal="false" maxBufferPoolSize="524288" maxReceivedMessageSize="2147483647" useDefaultWebProxy="false" />
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://ip:port/DataService.svc" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IDataService" contract="DataService.IDataService" name="IDataService" />
<endpoint address="http://ip:port/HelperService.svc" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IHelperService" contract="HelperService.IHelperService" name="IHelperService" />
</client>
감사합니다.
[최초 등록일: ]
[최종 수정일: 7/26/2022]