I have got a Talend job that as a finish product prepares zip package, now i want to expose this job as a REST server with GET request, so each time clients calls service the package is made and available to download. I know that there is a thread with exact same name expose job as web service but accepted answer has links that are no longer valid.
Currently my job looks like this
And the idea standing behind this design is that i got one column in output flow in tRESTRequest named "userfile" of type byte array, calling GET request tJavaRow starts and wrap file into byte array, then i transfer it through tMap to tRestRespone body as byte array. What am I missing?