This seems like a simple question but I haven't been able to find an answer. I want to prepend the standard xml version, encoding line to my XML object before sending it to the server:
<?xml version="1.0" encoding="UTF-8"?> ... How do I do this? I've tried using prependChild on the root node, but it only inserts a blank line.

