로컬 네트워크에서 두 대의 컴퓨터간에 Echo 샘플을 실행하려고합니다. 이 샘플에서는 netTcpRelayBinding을 사용하며 동일한 컴퓨터에서 서비스와 클라이언트를 모두 실행하면 올바르게 작동합니다. 서비스를 처음 컴파일하고 다른 컴퓨터에 설치하면 dev 도구가 설치되지 않은 Windows 2003 Server가 설치됩니다. netTcpRelayBinding이 app.config에 무엇인지 몰랐기 때문에 실행되지 않습니다. 그래서 설정을 코드로만 옮기고 서비스가 시작되었습니다. 서비스 버스 탐색기로 확인했습니다. 그런 다음 (VS2010을 통해) 내 dev 컴퓨터와 연결을 시도했지만 작동하지 않습니다. 나는 내가 생각할 수있는 모든 설정의 조합을 시도하면서 서비스와 클라이언트 둘 다에서 물건을 바꾸려고 노력했지만 아무 것도하지 않았다. 대부분 클라이언트의 두 가지 오류 중 하나가 발생합니다.Azure AppFabric 서비스 버스 에코 샘플이 작동하지 않습니다.
"ContractDescription 'IEchoContract'작업이 0 개이고 계약에 하나 이상의 작업이 있어야합니다. '
또는
"메시지를 받아 들일 수없는 엔드 포인트 청취가 없었다".
이것은 서버 코드입니다. 내 변경 사항은 사용자 정의 주석 사이에 있습니다.
// create the service URI based on the service namespace
Uri address = ServiceBusEnvironment.CreateServiceUri("sb", serviceNamespace, "EchoService");
// create the credentials object for the endpoint
TransportClientEndpointBehavior sharedSecretServiceBusCredential = new TransportClientEndpointBehavior();
sharedSecretServiceBusCredential.CredentialType = TransportClientCredentialType.SharedSecret;
sharedSecretServiceBusCredential.Credentials.SharedSecret.IssuerName = issuerName;
sharedSecretServiceBusCredential.Credentials.SharedSecret.IssuerSecret = issuerSecret;
// create the service host reading the configuration
ServiceHost host = new ServiceHost(typeof(EchoService), address);
// custom
host.AddServiceEndpoint(
typeof(IEchoContract),
new NetTcpRelayBinding(),
"EchoService");
// custom end
// create the ServiceRegistrySettings behavior for the endpoint
IEndpointBehavior serviceRegistrySettings = new ServiceRegistrySettings(DiscoveryType.Public);
// add the Service Bus credentials to all endpoints specified in configuration
foreach (ServiceEndpoint endpoint in host.Description.Endpoints)
{
endpoint.Behaviors.Add(serviceRegistrySettings);
endpoint.Behaviors.Add(sharedSecretServiceBusCredential);
}
// open the service
host.Open();
이
클라이언트 코드입니다, 내 현재의 변화는 사용자의 의견 사이 :// create the service URI based on the service namespace
Uri serviceUri = ServiceBusEnvironment.CreateServiceUri("sb", serviceNamespace, "EchoService");
// create the credentials object for the endpoint
TransportClientEndpointBehavior sharedSecretServiceBusCredential = new TransportClientEndpointBehavior();
sharedSecretServiceBusCredential.CredentialType = TransportClientCredentialType.SharedSecret;
sharedSecretServiceBusCredential.Credentials.SharedSecret.IssuerName = issuerName;
sharedSecretServiceBusCredential.Credentials.SharedSecret.IssuerSecret = issuerSecret;
// create the channel factory loading the configuration
//ChannelFactory<IEchoChannel> channelFactory = new ChannelFactory<IEchoChannel>("RelayEndpoint", new EndpointAddress(serviceUri));
// custom
ServiceEndpoint endpoint = new ServiceEndpoint(new ContractDescription("IEchoContract", "Microsoft.ServiceBus.Samples"), new NetTcpRelayBinding(EndToEndSecurityMode.Transport, RelayClientAuthenticationType.None), new EndpointAddress(serviceUri));
ChannelFactory<IEchoChannel> channelFactory = new ChannelFactory<IEchoChannel>(endpoint);
// custom end
// apply the Service Bus credentials
channelFactory.Endpoint.Behaviors.Add(sharedSecretServiceBusCredential);
// create and open the client channel
IEchoChannel channel = channelFactory.CreateChannel();
channel.Open();
내의 app.config 파일은 설정으로 지워집니다. 다른 파일을 건드리지 않았습니다.