One advantage of CAdES is that it generally causes less interoperability problems, mostly because the XML-DSig standard allows a lot of options, XSLT, XPointer Framework and the various forms of XML canonicalization just to name a few. CAdES would be less demanding if you only needed to deal with strictly DER-encoded signatures (the picture changes though once you need to deal with BER encodings).
Another advantage of CAdES over XAdES is a scenario where you are required to produce "attached" signatures on large data chunks, i.e. you want the result to be one single chunk of data that contains both the original data and the signature. The equivalent of an attached CAdES signature (i.e. the original input data is stored in the EncapContentInfo element of the CMS structure) is an Enveloping Signature. If you are required to produce such a kind of signature there is a high probability that you will run into problems when dealing with large input data if your XAdES implementation is DOM-based (those I know of are) - your machine will eventually run out of memory.
Performance would be another argument where CAdES is to be favoured. Whereas the message digest computation of CAdES is typically done directly on the raw bytes of the input data, XML signatures that are computed on XML documents involve a loth of overhead such as evaluation of XPath expressions, XSLT transforms, Base64 en-/decoding and Canonicalization... and in theory even more than once should there be several Tranform elements.
If you are building an archiving system for long-term validation of signatures where a lot of signatures need to be stored, CAdES would also be the preferred format due to its compactness in comparison to the textual XAdES format.