How do I upload a file, process it and return a result file in a single request to a REST WCF service?
- by sharptooth
I need to implement the following scenario in a REST service implemented in WCF:
the user submits a binary file and a set of parameters
the server consumes the file, does some clever work and generates a binary output file
the user retrieves that binary result file
and all that is done in a single operation from the client perspective.
It's pretty easy in a non-REST service. How do I do that in a REST service? Where do I get started?