Hi all:
How to download a file via web service ? And how the client application accept this? I write down the code as below in the client app, it throws an exception "Access Denied"
wsDownload.wsDownloadFile downFile = new wsDownload.wsDownloadFile();
byte[] file = downFile.DownloadFile(strFileName, "", "", "");
MemoryStream mStream = new MemoryStream(file);
any response is appreciated.