A few readers of my previous post on File Transfer with WCF
have asked to share the implementation of the UploadFile and DownloadFile methods.
While I can't share the complete implemention of the service for obvious Intellectual Property reasons,
I will outline the basic steps involved in implementing the service.
Please refer to my previous post for
the details on the DataContracts and OperationContracts involved here.
NOTE: I have extracted these portions from the actual code.
I cannot verify this to work as-is, but it should give you a head-start to
complete your own service. You should also add your own error checking, and any pre or
post-download and/or pre or post-upload processing as required by the business.
Your first encounter with GIT as a version control tool may be quite intimidating, especially if all you had been using so far was something simpler like Sub...
Today I was debugging some interaction between one of our products and Twitter 1.1 API protected by OAuth 1.0a . As it happens, I was using Fiddler to have a...
Antonio Vidal has translated this post into Spanish: you can find it
here.
Dependency injection is a very simple concept: if you have an object that interac...
Building Reduce and Map from the Ground Up with F#
Today I've found myself reading again the excellent paper
Why Functional Programming
Matters, where ...
Leave a Comment