1

我有一个通过 Windows azure 中继的客户端/服务器应用程序。这在服务器和客户端都使用控制台应用程序时效果很好。

现在我想使用 Windows Phone 作为客户端,但由于某种原因,我无法调用服务总线。我无法添加 Web 引用,当在浏览器中定位 url 时,我收到以下消息:

<s:Fault xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><faultcode xmlns:a="http://schemas.microsoft.com/ws/2005/05/addressing/none">a:ActionNotSupported</faultcode><faultstring xml:lang="nl-NL">The message with Action 'GET' cannot be processed at the receiver, due to a ContractFilter mismatch at the EndpointDispatcher. This may be because of either a contract mismatch (mismatched Actions between sender and receiver) or a binding/security mismatch between the sender and the receiver.  Check that sender and receiver have the same contract and the same binding (including security requirements, e.g. Message, Transport, None).</faultstring></s:Fault>

我在服务器 app.config 中输入了以下代码:

// sb:// binding
            Uri sbUri = ServiceBusEnvironment.CreateServiceUri("sb", serviceNamespace, "blabla");
            var sbBinding = new NetTcpRelayBinding(EndToEndSecurityMode.Transport, RelayClientAuthenticationType.None);
            serviceHost.AddServiceEndpoint(typeof(IMyContract), sbBinding, sbUri);

            // https:// binding (for Windows Phone etc.)
            Uri httpsUri = ServiceBusEnvironment.CreateServiceUri("https", serviceNamespace, "https/" + "blabla");
            var httpsBinding = new BasicHttpRelayBinding(EndToEndBasicHttpSecurityMode.Transport, RelayClientAuthenticationType.None);
            serviceHost.AddServiceEndpoint(typeof(IMyContract), httpsBinding, httpsUri);

在打开主机之前,我将端点设置为公开的发现模式。

我还可以或需要做些什么才能使这项工作与 Windows Phone 一起使用?

4

2 回答 2

2

我认为你很接近。据我所知,您无法将网络引用添加到您的手机项目中。虽然通过该路径可以做到这一点,但我不建议努力通过中继公开元数据端点,因为您不会在运行时使用它。相反,将合同引用到您的 Windows Phone 项目中,并使用 BasicHttpBinding 和服务端的 BasicHttpRelatBinding 端点的目标地址创建 ChannelFactory。

据我所知,您已经完成了所有其他设置,包括关闭侦听器上的 ACS,以便您可以在手机上使用常规的 BasicHttpBinding。

编辑:

由于这可能并不完全清楚,这里有一个服务:

[ServiceBehavior(InstanceContextMode = InstanceContextMode.Single)]
class Program : IEcho
{
    static void Main(string[] args)
    {
        var sh = new ServiceHost(new Program(), 
                    new Uri("http://clemensv.servicebus.windows.net/echo"));
        sh.Description.Behaviors.Add(
             new ServiceMetadataBehavior { 
                   HttpGetEnabled = true, 
                   HttpGetUrl = new Uri("http://localhost:8088/echowsdl")});
        var se = sh.AddServiceEndpoint(typeof(IEcho), 
             new BasicHttpRelayBinding(EndToEndBasicHttpSecurityMode.None, 
                                       RelayClientAuthenticationType.None), String.Empty);
        var endpointBehavior = new TransportClientEndpointBehavior(
               TokenProvider.CreateSharedSecretTokenProvider("owner", "...key ..."));
        se.Behaviors.Add(endpointBehavior);
        sh.Open();
        Console.WriteLine("Service is up");
        Console.ReadLine();
        sh.Close();
    }

    public string Echo(string msg)
    {
        return msg;
    }
}

合同 IEcho 是微不足道的,没有显示。您会注意到,我有一个 ServiceMetadataBehavior 挂在“侧面”,通过 localhost 公开,如果您点击该 URI,它将为您提供 WSDL。您可以将该地址与 Visual Studio 中的“添加 Web 引用”客户端一起使用,以在 Windows Phone 上创建代理;该代理将在手机上使用 BasicHttpBinding。我只是这样做了,它在一个简单的电话应用程序中按预期工作(引用重命名为 MySvc)

    private void button1_Click(object sender, RoutedEventArgs e)
    {
        var client = new MySvc.EchoClient();
        client.EchoCompleted += OnClientOnEchoCompleted;
        client.EchoAsync("foo");
    }

    void OnClientOnEchoCompleted(object sender, EchoCompletedEventArgs c)
    {
        this.textBox1.Text = c.Result;
    }
于 2012-05-12T18:57:14.123 回答
0

Windows Phone 不支持 sb 协议。所以我们不能使用NetTcpRelayBinding。如果我们想在 Windows Phone 中使用 Service Bus,我们有两个选择:使用 BasicHttpRelayBinding 或 WebHttpRelayBinding。无论哪种情况,我们都需要通过将 RelayClientAuthenticationType 设置为 None 来禁用默认的 ACS 身份验证:http: //msdn.microsoft.com/en-us/library/windowsazure/microsoft.servicebus.relayclientauthenticationtype.aspx。然后在 Windows Phone 上,我们可以使用内置的 BasicHttpBinding 来访问 SOAP 服务,使用 HttpWebRequest 来访问 REST 服务。

最好的祝福,

明旭。

于 2012-05-14T07:52:09.310 回答