bea.com | products | dev2dev | support | askBEA
 Download Docs   Site Map   Glossary 
Search

WebLogic Server Configuration Reference

 Previous Next Contents Index View as PDF  

XMLParserSelectRegistryEntry

 


Description

This is an entry in the XML registry. An XML registry entry is configuration information associated with a particular XML document type. Entries accessed through this interface are used to specify a Sax parser and/or document builder of the provided document type. The document type is identified by one or more of the following: 1) a public ID (e.g, "-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN" 2) a system ID (e.g, "http://java.sun.com/j2ee/dtds/ejb-jar_2_0.dtd") 3) a document root tag name (e.g., "ejb-jar") This configuration information is used by the WebLogic JAXP implementation to choose the appropriate parser factories (SAX and DOM).

 


Syntax

<XMLParserSelectRegistryEntry
DocumentBuilderFactory="String"
Name="String"
Notes="String"
ParserClassName="String"
PublicId="String"
RootElementTag="String"
SAXParserFactory="String"
SystemId="String"
TransformerFactory="String"
/>

 


Parent Elements

 


Attributes

Table 81-1 XMLParserSelectRegistryEntry attributes

Attribute

Description

Range of Values and Default

DocumentBuilderFactory

Return the class name of the DocumentBuilderFactory that is associated with the registry entry.

Admin Console field label: Document Builder Factory

Required: no

Name

The name of this configuration. WebLogic Server uses an MBean to implement and persist the configuration.

Admin Console field label: Name

Required: no

Notes

Optional information that you can include to describe this configuration.

Admin Console field label: Notes

Required: no

ParserClassName

Deprecated. Return class name of any custom XML parser that is associated with the registry entry.

Admin Console field label: Parser Class Name

Required: no

PublicId

Get the public id of the document type represented by this registry entry.

Admin Console field label: Public Id

Required: no

RootElementTag

Get the tag name of the document root element of the document type represented by this registry entry.

Admin Console field label: Root Element Tag

Required: no

SAXParserFactory

Return the class name of the SAXParserFactory that is associated with the registry entry.

Admin Console field label: SAXParser Factory

Required: no

SystemId

Get the system id of the document type represented by this registry entry.

Admin Console field label: System Id

Required: no

TransformerFactory

Return the class name of the default TransformerFactory

Required: no

 

Back to Top Previous Next