0

コンソール アプリと完全に連携する Windows azure でサービスをセットアップしました

サービスコードはたくさんあるので省略しませんが、クライアントコードは次のとおりです。

static void Main(string[] args)
        {
            // Determine the system connectivity mode based on the command line
            // arguments: -http, -tcp or -auto  (defaults to auto)
            ServiceBusEnvironment.SystemConnectivity.Mode = GetConnectivityMode(args);
            string serviceNamespace = "******";
            string issuerName = "*****";
            string issuerSecret = "*******************************************";

            // 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.TokenProvider = TokenProvider.CreateSharedSecretTokenProvider(issuerName, issuerSecret);            

            // create the channel factory loading the configuration
            ChannelFactory<IEchoChannel> channelFactory = new ChannelFactory<IEchoChannel>("RelayEndpoint", new EndpointAddress(serviceUri));

            // apply the Service Bus credentials
            channelFactory.Endpoint.Behaviors.Add(sharedSecretServiceBusCredential);

            // create and open the client channel
            IEchoChannel channel = channelFactory.CreateChannel();
            channel.Open();


            Console.WriteLine("Enter text to echo (or [Enter] to exit):");
            string input = Console.ReadLine();
            while (input != String.Empty)
            {
                try
                {
                    Console.WriteLine("Server echoed: {0}", channel.Echo(input));
                }
                catch (Exception e)
                {
                    Console.WriteLine("Error: " + e.Message);
                }
                input = Console.ReadLine();
            }

            channel.Close();
            channelFactory.Close();
        }

        static ConnectivityMode GetConnectivityMode(string[] args)
        {
            foreach (string arg in args)
            {
                if (arg.Equals("/auto", StringComparison.InvariantCultureIgnoreCase) ||
                     arg.Equals("-auto", StringComparison.InvariantCultureIgnoreCase))
                {
                    return ConnectivityMode.AutoDetect;
                }
                else if (arg.Equals("/tcp", StringComparison.InvariantCultureIgnoreCase) ||
                     arg.Equals("-tcp", StringComparison.InvariantCultureIgnoreCase))
                {
                    return ConnectivityMode.Tcp;
                }
                else if (arg.Equals("/http", StringComparison.InvariantCultureIgnoreCase) ||
                     arg.Equals("-http", StringComparison.InvariantCultureIgnoreCase))
                {
                    return ConnectivityMode.Http;
                }
            }
            return ConnectivityMode.AutoDetect;
        }       
    }

このコードでは、すべてが正常に機能しています。サービスを実行してからクライアントを実行し、クライアントを介してメッセージを送信すると、サービス画面で確認できます...

私はこのコードを使用してみました:

private void webClient_UploadStringCompleted(object sender, UploadStringCompletedEventArgs e)
    {
        if (token == "")
        {
            token =
             e.Result.Split('&').Single(x => x.StartsWith("wrap_access_token=",
             StringComparison.OrdinalIgnoreCase)).Split('=')[1];
        }
        string decodedToken = HttpUtility.UrlDecode(token); 

    var uriBuilder =
    new UriBuilder("https://locations.servicebus.windows.net/EchoService");

    uriBuilder.Path += 
    string.Format("HelloWorld"); 

    var webClient = new WebClient();


    if (autho == "")
    {
        autho = string.Format("WRAP access_token=\"{0}\"", decodedToken);
    }
    webClient.Headers["Authorization"] = autho;
    webClient.DownloadStringCompleted += 
    (s, args) => ParseAndShowResult(args);
    webClient.DownloadStringAsync(uriBuilder.Uri);
}
   public void ParseAndShowResult(DownloadStringCompletedEventArgs args)
{
    string result = args.Result;

}

   private void PhoneApplicationPage_Loaded_1(object sender, RoutedEventArgs e)
   {
       var webClient = new WebClient();
       string acsUri = "https://locations-sb.accesscontrol.windows.net/WRAPv0.9/";
       string data = string.Format("wrap_name={0}&wrap_password={1}&wrap_scope={2}",
       HttpUtility.UrlEncode("owner"),
       HttpUtility.UrlEncode("qP/TCHlDzIUidlHC4Q3xNgQn84CLmDx/lYFbDimhj/o="),
       HttpUtility.UrlEncode("http://locations.servicebus.windows.net"));
       webClient.Headers["Content-Type"] = "application/x-www-form-urlencoded";
       webClient.UploadStringCompleted += webClient_UploadStringCompleted;
       webClient.UploadStringAsync(new Uri(acsUri), "POST", data); 
   }

しかし、それが行う唯一のことは、私が持っているサービスのリストを示すxmlを返すことです.私が必要とするのは、サービスが見るメッセージを送信することです.

ここで何か助けはありますか?

4

1 に答える 1