RE: [xml-dev] SAX Locator vs {start,end}Entity

From
Michael Kay <>
To
'Richard Tobin' <>,
Date
2003-02-20T16:45:41
ID
<000101c2d8ff$817231c0$6401a8c0@pcukmka>
Thread
RE: [xml-dev] SAX Locator vs {start,end}Entity
> 
> >Why do you need to monitor the startEntity and endEntity 
> events to get 
> >the base URI?
> 
> Because I want to take account of xml:base.  The base URI of 
> an element is either:
> 
>  - the value specified by its xml:base attribute, if it has one, or
> 
>  - the base URI of its parent, if there wasn't an intervening entity
>    boundary, or
> 
>  - the retrieval URI of the containing entity.
> 

But why can't you achieve that by looking at the systemId() of the
Locator when startElement is called?

Michael Kay