簡體   English   中英

HttpWebRequest僅在使用POST模式時獲取404頁面

[英]HttpWebRequest get 404 page only when using POST mode

首先:我知道這已被問過100多次了,但是大多數問題都是由於超時問題,錯誤的Url或者預先關閉流而引起的(並且相信我,我嘗試了所有的樣本而沒有一個問題)工作)。 所以,現在我的問題是:在我的Windows Phone應用程序中,我正在使用HttpWebRequest將一些數據發送到php Web服務。 然后該服務應該將數據保存在某些目錄中,但為了簡化它,目前它只能回答“你好”。 但是當我使用下面的代碼時,我總是得到404完整的apache 404 html文檔。 因此我想我可以排除超時的可能性。 似乎請求到達服務器,但由於某種原因,返回404。 但令我驚訝的是,如果我使用獲取請求,一切正常。 所以這是我的代碼:

HttpWebRequest webRequest = (HttpWebRequest)HttpWebRequest.CreateHttp(server + "getfeaturedpicture.php?randomparameter="+ Environment.TickCount);
webRequest.UserAgent = "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0";
webRequest.Method = "POST";
webRequest.ContentType = "text/plain; charset=utf-8";
StreamWriter writer = new StreamWriter(await Task.Factory.FromAsync<Stream>(webRequest.BeginGetRequestStream, webRequest.EndGetRequestStream, null));
writer.Write(Encoding.UTF8.GetBytes("filter=" + Uri.EscapeDataString(filterML)));
writer.Close();
webRequest.BeginGetResponse(new AsyncCallback((res) =>
{
    string strg = getResponseString(res);
    Stator.mainPage.Dispatcher.BeginInvoke(() => { MessageBox.Show(strg); });
}), webRequest);

雖然我不認為這是原因,但這里是getResponseString的來源:

public static string getResponseString(IAsyncResult asyncResult)
{
    HttpWebRequest webRequest = (HttpWebRequest)asyncResult.AsyncState;
    HttpWebResponse webResponse;
    try
    {
        webResponse = (HttpWebResponse)webRequest.EndGetResponse(asyncResult);
    }
    catch (WebException ex)
    {
        webResponse = ex.Response as HttpWebResponse;
    }
    MemoryStream tempStream = new MemoryStream();
    webResponse.GetResponseStream().CopyTo(tempStream);
    tempStream.Position = 0;
    webResponse.Close();
    return new StreamReader(tempStream).ReadToEnd();
}

這是經過測試的代碼在Post方法中運行得很好。 願這給你一個主意。

public  void testSend()
  {
      try
      {
          string url = "abc.com";
          string str = "test";
          HttpWebRequest req = (HttpWebRequest)WebRequest.Create(url);
          req.Method = "POST";
          req.ContentType = "text/plain; charset=utf-8";
          req.BeginGetRequestStream(SendRequest, req);
      }
      catch (WebException)
      {

      }
}

//Get Response and write body
 private void SendRequest(IAsyncResult asyncResult)
        {
          string str = "test";
          string Data = "data=" + str;
          HttpWebRequest req= (HttpWebRequest)asyncResult.AsyncState;
          byte[] postBytes = Encoding.UTF8.GetBytes(Data);
          req.ContentType = "application/x-www-form-urlencoded";
          req.ContentLength = postBytes.Length;
          Stream requestStream = req.GetRequestStream();
          requestStream.Write(postBytes, 0, postBytes.Length);
          requestStream.Close();
          request.BeginGetResponse(SendResponse, req);
        }

//Get Response string
 private void SendResponse(IAsyncResult asyncResult)
        {
            try
            {
                MemoryStream ms;

                HttpWebRequest request = (HttpWebRequest)asyncResult.AsyncState;
                HttpWebResponse response = (HttpWebResponse)request.EndGetResponse(asyncResult);
                HttpWebResponse httpResponse = (HttpWebResponse)response;
                string _responestring = string.Empty;
                using (Stream data = response.GetResponseStream())
                using (var reader = new StreamReader(data))
                {
                    _responestring = reader.ReadToEnd();
                 }
              }
       catch (WebException)
      {

      }
   }

我建議你在Windows Phone中使用RestSharp來處理你的POST請求。 我正在為一家初創公司制作應用程序,在使用與您類似的代碼時遇到了很多問題。 下面是使用RestSharp發布請求的示例。 您可以看到,它可以以更簡潔的形式完成,而不是使用3個函數。 此外,響應可以有效地處理。 你可以從Nuget獲得RestSharp

RestRequest request = new RestRequest("your url", Method.POST);
            request.AddParameter("key", value);
            RestClient restClient = new RestClient();
            restClient.ExecuteAsync(request, (response) =>
            {
                if (response.StatusCode == HttpStatusCode.OK)
                {
                    StoryBoard2.Begin();
                    string result = response.Content;
                    if (result.Equals("success"))
                        message.Text = "Review submitted successfully!";
                    else
                        message.Text = "Review could not be submitted.";
                    indicator.IsRunning = false;
                }
                else
                {
                    StoryBoard2.Begin();
                    message.Text = "Review could not be submitted.";
                }
            });

事實證明問題出在服務器端:它在朋友的服務器上嘗試過它並且工作正常。 我會在收到回復后立即聯系主辦方的支持並提供詳細信息。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM