Here is my code:
path = wsdlPath;
SAXParserFactory saxfac = SAXParserFactory.newInstance();
saxfac.setNamespaceAware(true);
saxfac.setXIncludeAware(true);
saxfac.setValidating(false);
SAXParser saxParser = saxfac.newSAXParser();
saxParser.parse(wsdlPath, this);
After Setting
setNamespaceAware=true, I can't get the
xmlns:XXX attributes in parameter
attributes of method
public void startElement(String uri, String ...