I need to perform a custom xml format from a set of objects, and download it into the client. All the xml conversion is implemented in an string, but i couldn't find a way to make it downloadble

link|improve this question
feedback

1 Answer

You can change the content-type of a Visualforce page, so setting that to text/xml but that still wouldn't necessarily force the browser to display a Save dialog, as far as I'm aware that tends to be browser implementation dependant.

Based on some quick Duck-Duck-Going I've seen a few people suggest that if a browser doesn't know a file's format then it'll ask you do download and this can be forced using the content-type "application/octet-stream", so maybe this is worth a go:

<apex:Page contentType="application/octet-stream" ..etc.. >

Not sure what the impact would be on the downloaded file though!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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