想问一个问题;
EntityResolver接口的方法resolveEntity(String publicId ,String systemId)
其中systemId读取的是xml文件中的哪个部分
假设是如下xml文件
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://schemas.xmlsoap.org/wsdl/ http://schemas.xmlsoap.org/wsdl/ "> 
程序读取证明,读取的是:
xsi:schemaLocation="http://schemas.xmlsoap.org/wsdl/ http://schemas.xmlsoap.org/wsdl/ ">
中的后面半个http://schemas.xmlsoap.org/wsdl/,想知道哪里有规范,说明这个这个resolveEntity方法的SystemId是如何读取的?注:使用的是org.xml.sax.XMLReader 
xmlreader =org.apache.xerces.jaxp.SAXParserFactoryImpl()).
newSAXParser().getXMLReader();