0
Webサービス経由でファイルをダウンロードする方法は?Webサービス経由でファイルをダウンロードする方法は?
私はこれを試しましたが、アプリケーションでこのエラーがスローされます。
httpヘッダーが送信された後、サーバーはヘッダーを追加できません。
WebClient webClient = new WebClient(); webClient.DownloadFile("example.com/myfile.txt", @"c:\myfile.txt");
を非同期でファイルをダウンロードするには::同期的にファイルをダウンロードし
public static void StartDownload(string path, string attachmentName)
{
try
{
string serverPath = HostingEnvironment.MapPath(path);
WebClient req = new WebClient();
HttpResponse response = HttpContext.Current.Response;
response.Clear();
response.ClearContent();
response.ClearHeaders();
response.Buffer = true;
response.AddHeader("Content-Type", "application/octet-stream");
response.AddHeader("Content-Disposition", "attachment;filename=\"" + attachmentName + "\"");
byte[] data = req.DownloadData(serverPath);
response.BinaryWrite(data);
//response.End();
HttpContext.Current.ApplicationInstance.CompleteRequest();
}
catch (Exception ex)
{
throw ex;
}
}
はお礼をソリューションが働きました。 –