The Artima Developer Community
Sponsored Link

Java Answers Forum
Java DOM - parse synchronous mode

1 reply on 1 page. Most recent reply: May 26, 2003 2:19 PM by Jaycee

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 1 reply on 1 page
saoirse

Posts: 1
Nickname: sirsh
Registered: May, 2003

Java DOM - parse synchronous mode Posted: May 26, 2003 10:52 AM
Reply to this message Reply
Advertisement
How do i set up a documentBuilderFactory for sync parsing?
Is there a property that i can set and what is it called?


Jaycee

Posts: 26
Nickname: jaycee
Registered: Apr, 2003

Re: Java DOM - parse synchronous mode Posted: May 26, 2003 2:19 PM
Reply to this message Reply
> 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");

Flat View: This topic has 1 reply on 1 page
Topic: JDBC in applets Previous Topic   Next Topic Topic: File path question

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use