Coders, Think: HttpService used for REST service calls. On a POST method I would like to supply a user/password set of parameters in the following XML format.
<?xml version='1.0' encoding='UTF-8'?> <login xmlns="http://mydomain.com/project" xmlns:foo="http://mydomain.com/parms" > <user>foo</user> <password>bar</password> </login> Unfortunately the REST services are not subject to change, hence the need to follow their format. My research tells me that I'm asking too much of the httpService 'request'. Only the simpliest xml generation or form encoding is available. Any suggestions or ideas? thanks in advance.

