我对 WCF 服务相当陌生,希望能得到一些帮助。我正在尝试将 WCF 作为服务运行,并让另一台机器上的 ASP.net 客户端能够通过连接到 WCF 服务将文件上传到它。
我正在使用简单的上传设置(从此处)对其进行测试,如果我只是将 WCF 服务引用为“dll”,它可以正常工作,但是如果我尝试将其作为 WCF 服务运行,则会出现“UploadFile”错误" 方法,声明它不受支持。
方法名称上带有红色 X 的确切消息:WCF 测试客户端不支持此操作,因为它使用类型 FileUploadMessage。
我首先在 Visual Studio 2012 中创建 WCF 服务应用程序,并在我的界面 (IUploadService.cs) 中有以下内容:
[ServiceContract]
public interface IUploadService
{
[OperationContract(IsOneWay = true)]
void UploadFile(FileUploadMessage request);
}
[MessageContract]
public class FileUploadMessage
{
[MessageBodyMember(Order = 1)]
public Stream FileByteStream;
}
它的实现方式如下(UploadService.svc.cs):
public void UploadFile(FileUploadMessage request)
{
Stream fileStream = null;
Stream outputStream = null;
try
{
fileStream = request.FileByteStream;
string rootPath = ConfigurationManager.AppSettings["RootPath"].ToString();
DirectoryInfo dirInfo = new DirectoryInfo(rootPath);
if (!dirInfo.Exists)
{
dirInfo.Create();
}
// Create the file in the filesystem - change the extension if you wish,
// or use a passed in value from metadata ideally
string newFileName = Path.Combine(rootPath, Guid.NewGuid() + ".jpg");
outputStream = new FileInfo(newFileName).OpenWrite();
const int bufferSize = 1024;
byte[] buffer = new byte[bufferSize];
int bytesRead = fileStream.Read(buffer, 0, bufferSize);
while (bytesRead > 0)
{
outputStream.Write(buffer, 0, bufferSize);
bytesRead = fileStream.Read(buffer, 0, bufferSize);
}
}
catch (IOException ex)
{
throw new FaultException<IOException>(ex, new FaultReason(ex.Message));
}
finally
{
if (fileStream != null)
{
fileStream.Close();
}
if (outputStream != null)
{
outputStream.Close();
}
}
} // end UploadFile
从外观上看它应该可以工作,但从我通过查看几个stackoverflow和其他论坛问题的理解来看,WCF 似乎不支持 Stream,即使我们可以拥有类型流的绑定。我对此感到困惑,我做错了什么。
谢谢您的帮助。