View returned file from Webservice method
- by gafda
I already have a method in my webservice that returns a byte[] containing only the bytes of the file downloading. The invocation is something like:
http://www.mysite.com/myWebservice.asmx
with:
string fileId = "123";
bytes[] fileContent = myWebservice.Download(fileId);
What I wanted to do is be able to invoke this method or other (to be made)…