I'm using Post Man in windows to post the file in application/form-data into web url like below.,
http://{host}:{port}/file
File in form-data is..,
file "C:/Temp/file.txt"
In postMan it's worked .
But i wants to write code for perform this in C# console application.
I am new to this.So please anyone give any approach to write code to process file as part of url in Post Method{application/form-data} in C#. how-to-fill-forms-and-submit-with-webclient-in-c-sharp
I have checked link attached .
It only have code to pass the "application/x-www-form-urlencoded" only.
But i need code for "application/form-data".
Note: I have tried that below code in that link it shows 415 Unsupported media Type error only.
var encoding=new ASCIIEncoding();
var postData="C:/test.csv";
byte[] data = encoding.GetBytes(postData);
var myRequest =
(HttpWebRequest)WebRequest.Create("http://localhost/MyIdentity/Default.aspx");
myRequest.Method = "POST";
myRequest.ContentType="application/form-data";
myRequest.ContentLength = data.Length;
var newStream=myRequest.GetRequestStream();
newStream.Write(data,0,data.Length);
newStream.Close();
var response = myRequest.GetResponse();
var responseStream = response.GetResponseStream();
var responseReader = new StreamReader(responseStream);
var result = responseReader.ReadToEnd();
responseReader.Close();
response.Close();
This code only works fine for "multipart/form-data"