일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- TDD
- Winform
- Json.NET
- c#
- 버스 API
- eventargs
- 객체지향
- sqlite3
- MDB Connect
- delegate
- NUnit
- 경기도 버스정보시스템
- MVC
- solid
- DrawRectangle
- WPF
- MDB Select
- 경기도 버스
- GDI+
- C# MDB
- C# MDB Handle
- eventhandler
- 디자인 패턴
- C# 파일 암/복호화
- Excel Cell Format
- DrawEllipse
- 공공 데이터 포털
- JSON
- Cell Border Style
- 시
Archives
- Today
- Total
White Whale Studio
[WPF] WCF ServiceModel 클라이언트 구성 섹션에서 'IService1' 계약을 참조하는 기본 끝점 요소가 없습니다. 본문
IT Engineering/.Net (WPF)
[WPF] WCF ServiceModel 클라이언트 구성 섹션에서 'IService1' 계약을 참조하는 기본 끝점 요소가 없습니다.
glorymind 2014. 12. 30. 10:09반응형
WCF 작업 시에
WCF ServiceModel 클라이언트 구성 섹션에서 'IService1' 계약을 참조하는 기본 끝점 요소가 없습니다.
와 같은 에러 메시지가 발생하는 경우가 있다.
나와 같은 경우에는 다른 프로젝트를 참조하여 사용하는 방식을 사용하는데
메인이 되는 프로젝트에서 해당 WCF 서비스를 참조하는 함수를 사용하고자 하면
위와 같은 메시지가 계속 발생했다.
해결방법으로는 참조하는 프로젝트에 포함된 app.config의 코드를 복사해서
메인이 되는 프로젝트의 app.config 코드에 복사하면 된다.
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="SMSWebServiceSoap" />
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:/smswebservice.asmx"
binding="basicHttpBinding" bindingConfiguration="SMSWebServiceSoap"
contract="SMSWebServiceRef.SMSWebServiceSoap" name="SMSWebServiceSoap" />
</client>
</system.serviceModel>
</configuration>
굵은 글씨로 표현된 부분이 붙여넣은 부분이다.
메인 프로젝트에 app.config 파일이 없는 경우에는 파일 자체를 그냥 복사해서 넣어도 될듯.
반응형
'IT Engineering > .Net (WPF)' 카테고리의 다른 글
Distinct 구현 (0) | 2015.04.02 |
---|---|
[WPF] ScrollView Mouse Click & Move 마우스 클릭으로 Child 움직이기 (0) | 2015.01.21 |
[ClickOnce 배포 오류] (1) | 2014.08.11 |
csExWB WebBrowser Control DLL Error (0) | 2014.07.07 |
[WPF] ClickOnce 배포시 Strong name signature not valid for this assembly stdole.dll. 에러 (0) | 2014.06.10 |
Comments