so i'm trying to send xml back from my controller..
render xml: ['hello world']
correctly gives me:
<?xml version="1.0" encoding="UTF-8"?>
<strings type="array">
<string>hello world</string>
</strings>
however
render xml: 'hello world'
gives xml headers but the body is just:
hello world
which is not xml format.
bug?
render xml: "<response>string content</response>"