In a node-soap server, how do I change the HTTP headers of a node-soap server response?
In a client request, I can add extra HTTP headers like so
client.addHttpHeader('User-Agent', `CustomUserAgent`);
However, what I need is to change the HTTP headers of a response. How can I do that? A way to access the http.ServerResponse object would allow me to use setHeader and would probably work for me as well.