客户端代码
WebReference.WebService1 webserver = new WebReference.WebService1();
string path = txtPath.Text.Trim();//本地路径
byte[] bytes = GetBytesByPath(path);//获取文件byte[]
string uploadPath = comdirectory.Text;//上传服务器文件夹路径
webserver.UploadFile(bytes, uploadPath, FileName);
webserver 上的
public bool UploadFile(byte[] fs, string path, string fileName)
{
bool flag = false;
try
{
path = Server.MapPath(path);
if (!Directory.Exists(path))
{
Directory.CreateDirectory(path);
}
//定义并实例化一个内存流,以存放提交上来的字节数组。
MemoryStream m = new MemoryStream(fs);
//定义实际文件对象,保存上载的文件。
FileStream f = new FileStream(path + "\\" + fileName, FileMode.Create);
//把内内存里的数据写入物理文件
m.WriteTo(f);
m.Close();
f.Close();
f = null;
m = null;
flag = true;
}
catch (Exception ex)
{
flag = false;
}
return flag;
}
这里上传大点的文件(3M以上)就会报错 Not Found。和 最大请求长度超过了 如何
解决这个问题呢?