6

我创建了一个接受两件事的服务:

1) 称为“类型”的主体参数。

2)要上传的csv文件。

我正在像这样在服务器端阅读这两件事:

 //Read body params
 string type = HttpContext.Current.Request.Form["type"];

 //read uploaded csv file
 Stream csvStream = HttpContext.Current.Request.Files[0].InputStream;

我该如何测试这个,我正在使用Fiddler来测试这个,但我一次只能发送一个东西(类型或文件),因为这两个东西的内容类型不同,我如何使用内容类型multipart/form-dataapplication/x-www-form-urlencoded同时。

即使我使用此代码

    public static void PostDataCSV()
    {
        //open the sample csv file
        byte[] fileToSend = File.ReadAllBytes(@"C:\SampleData.csv"); 

        string url = "http://localhost/upload.xml";
        HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
        request.Method = "POST";
        request.ContentType = "multipart/form-data";
        request.ContentLength = fileToSend.Length;


        using (Stream requestStream = request.GetRequestStream())
        {
            // Send the file as body request. 
            requestStream.Write(fileToSend, 0, fileToSend.Length);
            requestStream.Close();
        }

        HttpWebResponse response = (HttpWebResponse)request.GetResponse();

        //read the response
        string result;
        using (StreamReader reader = new StreamReader(response.GetResponseStream()))
        {
            result = reader.ReadToEnd();
        }

        Console.WriteLine(result);
    }

这也不会向服务器发送任何文件。

4

2 回答 2

3

您上面的代码不会创建正确的多部分主体。

您不能简单地将文件写入流中,每个部分都需要一个带有每个部分标题的前导边界标记等。

请参阅使用 HTTPWebrequest (multipart/form-data) 上传文件

于 2013-02-26T18:33:27.850 回答
0

有关您的多个 contentTypes 问题的一些信息:http: //www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.7.2

multipart/form-data 是通过 http 协议发送多种数据类型的唯一方法。

于 2013-02-26T10:49:57.863 回答