vote up 0 vote down star

I am making an ajax request from a jquery script to one of my ajax controllers in codeigniter. This process works fine when using data type json. However, when I want to send xml back from the server, the jquery documentation says that the server must specify a MIME type of text/xml. How do I do this with codeigniter. My ajax call looks like this:

   $.ajax({
    type: "POST",
    url: siteUrl + "index.php/ajax_controller/test",
    dataType: "xml",
    success: testSuccess
   });
flag

56% accept rate

1 Answer

vote up 1 vote down check

You can specify a content type header using the following code. You could put it at the top of your controller method in CI:

header("Content-Type: text/xml");

It must be before any output starts, so use it before you call your first $this->load->view().

link|flag
Perfect, thanks – Clayton Sep 4 at 2:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.