3

我有一个托管在 ServiceHost 对象中的 WCF 服务。ServiceHost 是在 Azure 辅助角色的 OnStart 方法上创建的。这是代码:

        ServiceBusEnvironment.SystemConnectivity.Mode = ConnectivityMode.Http;

        Uri baseAddress = ServiceBusEnvironment.CreateServiceUri("http", "my_sb", "SimpleService");

        host = new ServiceHost(typeof(SimpleService1.Service1), baseAddress);

        BasicHttpRelayBinding binding = new BasicHttpRelayBinding(EndToEndBasicHttpSecurityMode.None, RelayClientAuthenticationType.None);
        binding.OpenTimeout = new TimeSpan(1, 1, 0);
        binding.ReceiveTimeout = new TimeSpan(1, 10, 0);
        binding.SendTimeout = new TimeSpan(1, 10, 0);
        binding.MaxReceivedMessageSize = 73400320;
        XmlDictionaryReaderQuotas readerQuotas = new XmlDictionaryReaderQuotas();
        readerQuotas.MaxArrayLength = 73400320;
        binding.ReaderQuotas = readerQuotas;

        TransportClientEndpointBehavior sharedSecretServiceBusCredential = new TransportClientEndpointBehavior();
        sharedSecretServiceBusCredential.CredentialType = TransportClientCredentialType.SharedSecret;

        sharedSecretServiceBusCredential.Credentials.SharedSecret.IssuerName = "owner";
        sharedSecretServiceBusCredential.Credentials.SharedSecret.IssuerSecret = "blablablabla==";


        ContractDescription contractDescription = ContractDescription.GetContract(typeof(SimpleService1.IService1), typeof(SimpleService1.Service1));
        ServiceEndpoint serviceEndPoint = new ServiceEndpoint(contractDescription);
        serviceEndPoint.Address = new EndpointAddress(baseAddress);
        serviceEndPoint.Binding = binding;

        IEndpointBehavior serviceRegistrySettings = new ServiceRegistrySettings(DiscoveryType.Public);

        serviceEndPoint.Behaviors.Add(serviceRegistrySettings);
        serviceEndPoint.Behaviors.Add(sharedSecretServiceBusCredential);


        host.Description.Endpoints.Add(serviceEndPoint);

        try
        {

            host.Open();

        }

        catch (Exception ex)
        {

            Trace.WriteLine(ex.Message, "Error");

            throw;

        }

        Trace.WriteLine("SimpleService1 running...");

客户端的绑定配置是:

        <basicHttpBinding>
          <binding name="FileTransferBinding" closeTimeout="00:10:00" openTimeout="00:10:00" receiveTimeout="00:10:00" sendTimeout="00:10:00" maxReceivedMessageSize="73400320">
            <readerQuotas maxArrayLength="73400320"/>
            <security mode="None"/>
          </binding>
        </basicHttpBinding>

<endpoint address="http://my_sb.servicebus.windows.net/simpleservice" binding="basicHttpBinding" bindingConfiguration="FileTransferBinding" contract="Service1reference.IService1" name="FileTransferBinding" behaviorConfiguration="sbBehavior"/>

问题是,如果对服务的一次调用时间超过 1 分钟,客户端会收到此异常:

The content type application/xml; charset=utf-8 of the response message does not match the content type of the binding (text/xml; charset=utf-8). If using a custom encoder, be sure that the IsContentTypeSupported method is implemented properly

如果我将绑定更改为 netTcpRelayBinding 一切正常。

4

1 回答 1

3

这是因为如果连接空闲超过一分钟,Windows Azure 负载平衡器会断开您的连接。

您最好的选择是使用 WCF 回调。这将执行从服务器到客户端的调用,让它知道长时间运行的操作已经完成。有关如何执行此操作的更多信息,请查看此博客 [ WCF 回调

于 2011-09-21T07:37:18.313 回答