1
서비스 참조로 net.tcp 추가 할 수 없습니다 : 여기내가 그렇게 같은 net.tcp WCF 서비스를 만든
const string tcpUri = "net.tcp://localhost:9038";
var netTcpHost = new WebServiceHost(typeof(DashboardService), new Uri(tcpUri));
netTcpHost.AddServiceEndpoint(typeof(IDashboardService), new NetTcpBinding(),
"/dashboard");
netTcpHost.Open();
Console.WriteLine("Hosted at {0}. Hit any key to shut down", tcpUri);
Console.ReadKey();
netTcpHost.Close();
내 IDashboardService
및 DashboardSerivce
정의이다 : 그러나
[ServiceContract]
public interface IDashboardService
{
[OperationContract]
PositionDashboard Loader();
}
[ServiceBehavior(InstanceContextMode = InstanceContextMode.PerCall)]
public class DashboardService : IDashboardService
{
public PositionDashboard Loader()
{
...
}
}
을 때 WCF 테스트 클라이언트로 서비스에 연결하려고하면 다음 오류가 발생합니다.
Error: Cannot obtain Metadata from net.tcp://localhost:9038/dashboard
The socket connection was aborted. This could be caused by an error processing your
message or a receive timeout being exceeded by the remote host, or an underlying
network resource issue. Local socket timeout was '00:04:59.9890000'. An existing
connection was forcibly closed by the remote host
프로그래밍 방식으로 모든 것을 생성합니다 (예 : app/web.config 없음). 프로그래밍 방식으로 어떻게해야합니까? – CallumVass
@BiffBaffBoff - 코드 예제를 추가했습니다. – Belogix
시도했을 때 오류가 발생했습니다. 계약 이름 'IMetadataExchange'을 서비스 Services.DashboardService가 구현 한 계약 목록에서 찾을 수 없습니다. 이 계약에 대한 지원을 가능하게하기 위해 serivceMetadataBehavior를 구성 파일이나 ServiceHost에 직접 추가하십시오. – CallumVass