new java.io.FileOutputStream("tmp"),"us-ascii");
XMLStreamWriter writer2 = output.createXMLStreamWriter(myWriter);
writer2.writeStartDocument();
writer2.setPrefix("c","http://c");
writer2.setDefaultNamespace("http://d");
writer2.writeStartElement("http://c","a");
writer2.writeAttribute("b","blah");
writer2.writeEmptyElement("http://c","d");
writer2.writeEmptyElement("http://d","e");
writer2.writeEmptyElement("http://e","f");
writer2.writeEmptyElement("http://f","g");