Httpclient PostAsync返回404.Webserver以良好的顺序接收所有发布数据并完成

时间:2014-05-11 16:02:52

标签: c# windows-phone-8 windows-store-apps win-universal-app winrt-httpclient

这就是我所拥有的

using Windows.Web.Http;
using Windows.Web.Http.Headers;

public async static Task<bool> FormPost(List<KeyValuePair<string, string>> varvaluepair, string hosturl)
{
    try
    {
        Uri cURI;
        if (Uri.TryCreate(hosturl, UriKind.Absolute, out cURI) && (cURI.Scheme == "http" || cURI.Scheme == "https"))
        {
            var client = new HttpClient();
            client.DefaultRequestHeaders.UserAgent.ParseAdd("ie");
            client.DefaultRequestHeaders.UserAgent.ParseAdd("Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0)");

            var content = new HttpFormUrlEncodedContent(varvaluepair);
            content.Headers.ContentType = new HttpMediaTypeHeaderValue("application/x-www-form-urlencoded");

            var response = await client.PostAsync(cURI, content);
            if (response.IsSuccessStatusCode)
            {
                return true;
            }
            else
            {
                return false;
            }
        }
        else
        {
            return false;
        }
    }
    catch (Exception ex)
    {
        return false;

这是我从回复中得到的:

{StatusCode: 404, ReasonPhrase: 'Not Found', Version: 2, Content: Windows.Web.Http.HttpStreamContent, Headers:
{
  Connection: keep-alive
  Server: nginx admin
  Date: Sun, 11 May 2014 15:46:32 GMT
}{
  Content-Length: 335
  Content-Type: text/html; charset=iso-8859-1
}}  Windows.Web.Http.HttpResponseMessage

我的主机收到提交值,除了404的响应和funcion返回false而不是true之外,其他工作正常。

这是我的发送方式:

string tmpAddress = "http://www.somewhere.com";
var tmpData = new List<KeyValuePair<string, string>>
{
    new KeyValuePair<string, string>("Name", "Jibah xxxxxxxxxxxx"),
    new KeyValuePair<string, string>("Email", "jibah.kxxxxx@xxxx.com"),
    new KeyValuePair<string, string>("Feedback", "Test submission to see the response"),
    new KeyValuePair<string, string>("form_tools_form_id", "225")
};
bool tmpResult = await FormPost(tmpData, tmpAddress);

和Formtool网站的结果(我无法发布图片) the image capture

原谅我的英语。感谢。

1 个答案:

答案 0 :(得分:0)

我不确定这是展示我的发现的正确方法(有人请指正,纠正这个答案)

它不在C#代码中。 response不是PostAsync发送的内容,而是被调用的服务发送的内容。该服务适用于接收但返回不存在的重定向页面。这是Formtool问题。

Formtool中有一个设置,用于在Formtool提交和接收表单时返回重定向URL。 Formtool中设置的重定向URL确实是一个不存在的页面,因此是404。