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

<!ELEMENT XMLParserSelectRegistryEntry EMPTY >
<!ATTLIST XMLParserSelectRegistryEntry
   DocumentBuilderFactory     CDATA                    #IMPLIED
   Name                       CDATA                    #REQUIRED
   Notes                      CDATA                    #IMPLIED
   ParserClassName            CDATA                    #IMPLIED
   PublicId                   CDATA                    #IMPLIED
   RootElementTag             CDATA                    #IMPLIED
   SAXParserFactory           CDATA                    #IMPLIED
   SystemId                   CDATA                    #IMPLIED
   TransformerFactory         CDATA                    #IMPLIED
>

Parent Elements

The XMLParserSelectRegistryEntry element is a child of the XMLRegistry element.

Attributes

Table 94-1 XMLParserSelectRegistryEntryMBean Element Attributes

Attribute

Description

Range of Values and Default

Console Label

Document-Builder-Factory

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


Document Builder Factory

Name

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


Name

Notes

Optional information that you can include to describe this configuration.


Notes

Parser-Class-Name

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


Parser Class Name

Public-Id

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


Public Id

Root-Element-Tag

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


Root Element Tag

SAXParser-Factory

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


SAXParser Factory

System-Id

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


System Id

Transformer-Factory

The class name of the default TransformerFactory


Transformer Factory


 

 

Back to Top Previous Next