问题描述: 在使用Acumatica的反向代理后,调用GetFile.ashx接口可能会出现问题。
解决方法:
示例代码:
string fileUrl = "https://acumatica.example.com/GetFile.ashx?fileID=12345";
HttpClient httpClient = new HttpClient();
HttpResponseMessage response = await httpClient.GetAsync(fileUrl);
if (response.IsSuccessStatusCode)
{
Stream fileStream = await response.Content.ReadAsStreamAsync();
// 处理文件流
}
请根据实际情况调整代码中的URL和其他参数。