The Platform default implementation, in most cases, happens to be a fallback class that is always available in the 'platform'. In these cases, the platform has been interpreted (sensibly, I must add) as the Java Runtime Environment installation. After all, only the platform provider can state what a default should be. In the case of an application server, the definition could be extended to include the environment provided by the application server, and not just the Java runtime.
For instance, JREs in Sun Java 5 and above, will use "com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl" as the fallback implementation for SAXParserFactory. This is primarily because JREs from Sun (atleast from Java 1.4 onwards) come with a complete JAXP implementation.
You can refer to the source code of the SAXParserFactory and FactoryFinder classes (in the javax.xml.parsers package) to take a peek as to how this is done. It would be interesting to know what Sun used to do in Java 1.3, but I'm not sure on whether the sources are available.
Since application servers have been mentioned in this context, it would be a good thing to remember that certain application servers (Weblogic for instance), set the SAXParserFactory to be used by all the applications at the level of the server. Applications could override it at the application level; Weblogic allows you to do this via the weblog-application.xml configuration file. It could be overridden at the server-level (multiple servers constitute a Weblogic domain), or at the domain level itself, with the lowest (most applicable) configuration taking precedence.
Getting the list of platform defaults (rather, an attempt to)
As you might have figured out by now, obtaining the default values for different platforms can be difficult, especially when you have to worry runtime environments (Sun, IBM, Oracle have their own runtimes; you also have Apache Harmony, GCJ, Kaffe etc. to add to the mix) and application servers as well. The platform defaults can also vary from one platform to another, more so for application servers rather than actual Java runtimes (application servers on IBM AIX will not look for the Sun Java platform fallback).