调用Web服务“400 Bad Request”错误

时间:2013-09-10 20:05:37

标签: c# httpwebrequest http-status-code-400

我正在尝试在我的C#ASP.Net MVC3应用程序中调用web服务。 这是源代码:

public string getCourseSchedule()
{
    string url = "http://192.168.1.198:15014/ShoppingCart2/CourseSchedule";
    string data = "Months&StatesMX&Zip=&Miles=&ProgramCodes=&EventCode=&PaginationStart=1&PaginationLimit=3";
    byte[] bytes          = Encoding.UTF8.GetBytes(data);
    var myReq             = (HttpWebRequest)WebRequest.Create(url);
    myReq.Method          = "POST";
    myReq.ContentLength   = data.Length;
    myReq.ContentType = "application/x-www-form-urlencoded; charset=UTF-8";
    string responseString = "";

    using (Stream requestStream = myReq.GetRequestStream())
    {
        requestStream.Write(bytes, 0, bytes.Length);
    }

    using (HttpWebResponse response = (HttpWebResponse)myReq.GetResponse())
    {
        HttpStatusCode statusCode = response.StatusCode;
        if (statusCode == HttpStatusCode.OK)
        {
            responseString = new StreamReader(response.GetResponseStream()).ReadToEnd();
        }
    }
    return responseString;
}

代码返回“400 Bad Request”错误。这就是我在javascript中这样做的方式,并且有效。

Mexico_Schedule: {"Months": null,
                  "States": [{"State: "MX"}],
                  "Zip": "",
                  "Miles": "",
                  "ProgramCodes": null,
                  "EventCode": null
                  "PaginationStart": 1,
                  "PaginationLimit": 3
};

$.ajax({
    async:       true,
    cache:       false,
    type:        'POST',
    contentType: 'application/x-www-form-urlencoded; charset=UTF-8',
    url:         "http://192.168.1.198:15014/ShoppingCart2/CourseSchedule",
    data:        JSON.stringify(Mexico_Schedule),
    dataType:    'json',
    success: function (data) {
        console.log('Fired when the request is successful');
        // Do something with results
    }
});

我需要做些什么修改才能让C#版本正常工作?

3 个答案:

答案 0 :(得分:2)

只需将您的data(使用Json.Net)格式化为:

var obj = new
{
    States = new[] { new{ State = "MX" } },
    Zip = "",
    Miles = "",
    PaginationStart = 1,
    PaginationLimit = 3
};

string data = JsonConvert.SerializeObject(obj);

答案 1 :(得分:1)

我宁愿尝试使用WebClientJSON serializer来简化您的代码:

public string getCourseSchedule()
{
    using (var client = new WebClient())
    {
        client.Headers[HttpRequestHeader.ContentType] = "apoplication/json";
        var url = "http://192.168.1.198:15014/ShoppingCart2/CourseSchedule";
        var json = new JavaScriptSerializer().Serialize(new
        {
            States = new[] { new { State = "MX" } },
            Zip = "",
            Miles = "",
            PaginationStart = 1,
            PaginationLimit = 3
        });
        byte[] data = Encoding.UTF8.GetBytes(json);
        byte[] result = client.UploadData(url, data);
        return Encoding.UTF8.GetString(result);
    }
}

或者,如果您不想使用内置的.NET JavaScriptSerializer类,则可以使用第三方类,例如JSON.NET:

string json = JsonConvert.SerializeObject(new
{
    States = new[] { new { State = "MX" } },
    Zip = "",
    Miles = "",
    PaginationStart = 1,
    PaginationLimit = 3
});

答案 2 :(得分:0)

您指定的内容类型错误。您正在发布x-www-form-urlencoded数据,但将content-type设置为“application / json”使您的数据与您的内容类型匹配,反之亦然。