If you can, do a post request to obtain the XML. Post requests are not cache-able.
If you can not do a post request, add something unique to the query-info part the request
URI, like the current time:
old: http://exmaple.com/data.xml
new: http://exmaple.com/data.xml?878621387
^ random number
I first read your question wrong and was concerned about that you want to prevent that a response of yours is being cached. Maybe it's still of use, so I leave it here:
In popular apps there often exists functions that set a bunch of headers to prevent caching. This is an example from the wordpress codebase:
function nocache_headers() {
@ header('Expires: Wed, 11 Jan 1984 05:00:00 GMT');
@ header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
@ header('Cache-Control: no-cache, must-revalidate, max-age=0');
@ header('Pragma: no-cache');
}
It set the Expires header to a date back in the past. So while being delivered, the document already expired or in caching terms is stale. Those documents should not be delivered by caches.
Then the Last-Modified header is set to the current time.
Then the Cache-Control header is set to signal that caches should not cache the response, must revalidate and should keep copies for a maximum age of 0. This sounds a bit schizophrenic maybe (as if not cached, there can't be an age), but that's just to flood proxies and user-agents with data to make them stop.
Finally the Pragma header is set to no-cache to prevent caching as well for HTTP/1.0 compatible proxies and user-agents (HTTP/1.1 clients normally make use of Cache-Control).
All these headers are explained in detail in the Hypertext Transfer Protocol -- HTTP/1.1 RFC 2616 Fielding, et al. Section 14 Header Field Definitions if you're eager to checkout the options available.