Jaycee
Posts: 26
Nickname: jaycee
Registered: Apr, 2003
|
|
Re: Java DOM - parse synchronous mode
|
Posted: May 26, 2003 2:19 PM
|
|
> How do i set up a documentBuilderFactory for sync > parsing? > Is there a property that i can set and what is it called?
This isn't the answer, but may help narrow your search.
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
System.out.println("concrete factory="+dbf.getClass().getName());
This should spit out the concrete factory. Search for attributes specific to that factory, and set with:
dbf.setAttribute("some sync parsing flag name", "true");
|
|