w.writeStartDocument();
w.writeStartElement("alice");
w.writeDefaultNamespace("http://some-namespace");
w.writeNamespace("charlie", "http://some-other-namespace");
assertEquals("http://some-other-namespace", w.getNamespaceContext().getNamespaceURI("charlie"));
assertEquals("charlie", w.getNamespaceContext().getPrefix("http://some-other-namespace"));
w.writeCharacters("bob");