WCF 서비스를 사용하려고합니다. 나는 서비스 참조를 추가, 지금은 그것을 호출하려고 해요 :<system.serviceModel> 섹션이 app.config에없는 이유는 무엇입니까?
이Could not find default endpoint element that references contract 'BusStopServiceBinding.BusStopPortType' in the ServiceModel client configuration section. This might be because no configuration file was found for your application, or because no endpoint element matching this contract could be found in the client element.
내 app.config
파일은 다음과 같습니다 :
<?xml version="1.0"?>
<configuration>
<configSections>
</configSections>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup>
</configuration>
나는이 오류를 받고 있어요,
BusStopServiceBinding.BusStopPortTypeClient client = new BusStopServiceBinding.BusStopPortTypeClient();
을하지만
아니요 serviceModel
섹션을 볼 수 있습니다. 수동으로 추가해야합니까? 그렇다면 무엇을 넣어야합니까?
좋은 자료입니다. 그것을 통해 가십시오 (http://msdn.microsoft.com/en-us/library/ms731354.aspx) –