正在进行以下操作:1)客户端使用API调用从我们的服务器请求ZIP文件。2)他在API请求中提供了一个aspx程序的回调url。3)我们创建ZIP文件,使用php CURL脚本将ZIP文件上传到他的aspx程序。
问题是,当文件上传到他的服务器时,ZIP文件格式改变(到SFX ZIP存档)。如果使用一个简单的php脚本将相同的文件上传到我们的服务器,则格式保持不变。我们不确定问题是我们使用CURL上传文件的方式,还是客户端在其服务器上保存ZIP文件的方式。
CURL代码如下:
$download_file = "/tmp/test.zip";
$callBackUrl = "http://www.remoteurl/theclients_uploadcode.aspx";
$ch = curl_init();
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, array('file' => "@$download_file"));
curl_setopt($ch, CURLOPT_URL, $callBackUrl);
curl_exec($ch);
curl_close($ch);
客户端提供了保存数据的aspx代码:
private void SavePost()
{
HttpPostedData = ReadFully(this.Page.Request.InputStream);
Timestamp = DateTime.Now.ToString("MMddyyyy-hhmmss");
Timestamp = Timestamp.Replace("-", "").Replace(" ", "").Replace(":", "");
if (FileName.ToString() == string.Empty)
{
FileName = Timestamp;
}
if (FileName.Contains(".zip") == false)
{
FileName = FileName + ".zip";
}
tempFilePath = (tempFilePath + FileName);
Response.Write((tempFilePath + (" HttpPostedData:" + HttpPostedData)));
}
public static byte[] ReadFully(Stream input)
{
byte[] buffer = new byte[16 * 1024];
using (MemoryStream ms = new MemoryStream())
{
int read;
while ((read = input.Read(buffer, 0, buffer.Length)) > 0)
{
ms.Write(buffer, 0, read);
}
return ms.ToArray();
}
}
你保存SavePost
不保存任何东西?你试着从这个页面读取请求。输入流,参见FileUpload到FileStream如何转换。
btw参见如何在c# ASP中从HTML文件类型中读取输入流。. NET而不使用ASP。. NET服务器端控件。这表明你也可以使用(c#):
HttpPostedFile file = Request.Files["file"];
if (file != null && file.ContentLength )
{
string fname = Path.GetFileName(file.FileName);
file.SaveAs(Server.MapPath(Path.Combine("~/App_Data/", fname)));
}