1SAX.setDocumentLocator()
2SAX.startDocument()
3SAX.startElement(html)
4SAX.ignorableWhitespace(
5, 1)
6SAX.startElement(head)
7SAX.ignorableWhitespace(
8  , 3)
9SAX.startElement(title)
10SAX.characters(This service is temporary down, 30)
11SAX.endElement(title)
12SAX.ignorableWhitespace(
13, 1)
14SAX.endElement(head)
15SAX.ignorableWhitespace(
16
17, 2)
18SAX.startElement(body, bgcolor='#FFFFFF')
19SAX.characters(
20, 1)
21SAX.startElement(h1, align='center')
22SAX.characters(Sorry, this service is tempora, 37)
23SAX.endElement(h1)
24SAX.characters(
25We are doing our best to get , 48)
26SAX.startElement(p)
27SAX.characters(The W3C system administrators, 29)
28SAX.endElement(p)
29SAX.characters(
30, 1)
31SAX.endElement(body)
32SAX.ignorableWhitespace(
33, 1)
34SAX.endElement(html)
35SAX.ignorableWhitespace(
36, 1)
37SAX.endDocument()
38