0

私は HttpClient を使用して、 post を使用して C# コンソール アプリケーションを介してデータをサーバーに送信しています。HttpClient PostAsync は、文字列コンテンツ、バイナリ コンテンツ、ストリーム コンテンツ、ディクショナリ オブジェクトを介した http コンテンツなど、さまざまな形式で送信しようとしたデータを投稿できませんが、投稿は null であり、サーバーはリクエストの無効な例外を返しています。以下は私のコードです。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Net.Http;
using System.Windows;
using System.Windows.Input;
using System.IO;
using System.Web;


namespace ConsoleApplication1
{
    class Program
    {
        string str = ""; int j = 0;
        static void Main(string[] args)
        {
            Program df = new Program();

            df.Started();

        }


         public async void Started()
         {
             string contentLength="0";
             try
             {
                 contentLength = await AccessTheWebAsync();
             }
             catch (Exception e)
             {

             }


             Console.WriteLine(contentLength);
         }

        async Task<string> AccessTheWebAsync()
        {  
            HttpClient client = new HttpClient();

            string token =  "qwerty1234";
            string test = "1";
            string postrequest = "<?xml version='1.0' encoding='UTF-8'?>" +
                              "<request> " +
                              "<rec>asdf1234</rec> " +
                              " <lid>9876</lid> " +
                              "</request> ";


            Dictionary<string, string> dict = new Dictionary<string, string>();
            dict.Add("token", token);
            dict.Add("test", test);
            dict.Add("request", postrequest);

            HttpContent content = new FormUrlEncodedContent(dict);

            Uri url = new Uri("http://example.com/"); 

            Task<HttpResponseMessage> getStringTask = client.PostAsync(url, content);    

            HttpResponseMessage httpmesssage = await getStringTask;
            Stream respons = await httpmesssage.Content.ReadAsStreamAsync();
            StreamReader sr = new StreamReader(respons);
            string response =  sr.ReadToEnd();
            return response;

        }



        }

}

前もって感謝します

4

1 に答える 1

0

Task.Waitコンソール アプリケーションでは、 、 などを使用して、操作が完了するまで待機する必要がありますConsole.ReadKey。また、避けてくださいasync void

static void Main(string[] args)
{
    Program df = new Program();
    df.StartedAsync().Wait();
}

public async Task StartedAsync()
于 2013-06-05T11:12:05.320 に答える