I want to send a redirect or ask WhoAmI. I can see how to code up a SOAP command, and I gather you dont return it as a result. So what do you do with it?
Sorry for my confusion - simply went the wrong way with this. I thought it was going to be a SOAP thing because the command was XML.
The WHOAMI is a Notify command, completely unrelated.
The redirect request in the documentation suggests that you return an XML string (see APL Web Services User Guide, Administration, Web Site Management, Redirecting Requests).
However this did not work for me. What did work was having a result consiting of two values, the first being a status-code and the second being a location.
r„301 'http://www.google.com/index.html'
My APL function returned the above and the page was redirected to Google. Kewl.