Which parser is used in Struts to parse the Structconfig.xml
file.

Answers were Sorted based on User's Feedback



Which parser is used in Struts to parse the Structconfig.xml file...

Answer / dasari ravinder

it's SAX parser we use, to parse the Struct-Config.xml file.

Is This Answer Correct ?    14 Yes 0 No

Which parser is used in Struts to parse the Structconfig.xml file...

Answer / shivram

digester

Is This Answer Correct ?    9 Yes 0 No

Which parser is used in Struts to parse the Structconfig.xml file...

Answer / mari

Digester is used to parse struts-config.xml

http://www.onjava.com/pub/a/onjava/2002/10/23/digester.html

Is This Answer Correct ?    9 Yes 0 No

Which parser is used in Struts to parse the Structconfig.xml file...

Answer / achutanand

SAX Parser is used to parse the xml file because basically
it is for the ActionServlet to read the xml file rather
than writing something into the struts-config xml file
just the action servlet has to read the file and construts
the module config object for the one time and load it
so as SAX Parser is basically for reading and doing some
search operation Struts uses this aproach intelligently.

Is This Answer Correct ?    8 Yes 0 No

Which parser is used in Struts to parse the Structconfig.xml file...

Answer / sudhakar

The Digester class parser the XML document. The Digester
framework comes with 10 prepackaged "rules," which cover
most of the required tasks when unmarshalling XML (such as
creating a bean or setting a bean property), but each user
is free to define and implement his or her own rules, as
necessary.

Is This Answer Correct ?    5 Yes 0 No

Which parser is used in Struts to parse the Structconfig.xml file...

Answer / sandeep barange

Hi, Everybody,

Actually in jakarta struts there are two parsers.
one is DOM parser and another is SAX.

1) DOM, read the whole document at a time and creats tree
like structure.

2) SAX also creates tree like structure but with event, and
Digerster is a framework which simplifies the SAX parsing
by providing Higher level Interface to SAX events.

3)DOM is easier to implement, slower and more resource-
intensive than SAX.

4) Digerter is Originally designed to parse the struts-
config.xml, later recognized that this is more useful and
moved to "jakarta commons" project.

hense Digester is the framework which is desigened to parse
the struts-config.xml file, which inturn uses SAX parser.

Is This Answer Correct ?    6 Yes 1 No

Which parser is used in Struts to parse the Structconfig.xml file...

Answer / ankit

I am in confusion give me right answer. But i think it's
SAX parser

Is This Answer Correct ?    5 Yes 1 No

Which parser is used in Struts to parse the Structconfig.xml file...

Answer / johnson ashish joseph

See what happens is that Struts uses the Digester to map the xml data in the struts-config.xml to java objects.
Now internally digester needs a Sax parser and it could do with either a xerces/crimson parser as both are sax parsers

Is This Answer Correct ?    3 Yes 0 No

Which parser is used in Struts to parse the Structconfig.xml file...

Answer / gcd

just give the right answer ????????????

Is This Answer Correct ?    2 Yes 0 No

Which parser is used in Struts to parse the Structconfig.xml file...

Answer / srinivas

please give exact answer.

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More Struts Interview Questions

What is struts in j2ee?

0 Answers  


Describe validate() and reset() methods.

0 Answers  


What is Struts Flow?

17 Answers   CTS, rsystems,


What is the role of action class?

0 Answers  


Are struts still used?

0 Answers  






List some bundled validators?

0 Answers  


What is Request Dispatcher and What is reuest Processor??

2 Answers  


For a single Struts application, can we have multiple struts-config.xml files?

0 Answers  


Give an example where struts tiles may be used?

0 Answers  


what are componeents presents in Strutsconfig.xml?

2 Answers   HCL,


Hai all.What is the use of <logic:iterate>tag in struts application.

3 Answers   CA, TCS,


Where can I get help with struts?

0 Answers  


Categories