Administration Console Online Help

Previous Next Open TOC in new window
Content starts here

XML Registry: Contents: Parser Select Entries: Configuration

Configuration Options     Related Tasks     Related Topics

Use this page to view or update the configuration for a particular Parser Select entry. The values entered on this page override the implementation class specified for the default parser factories; this means that when WebLogic Server parses XML documents of the type specified by this page, it uses the parser factory specified by this page.

Parser Select entries specify which DOM or Sax parser factory implementation classes should be used by a specific XML document type, based on its public ID, system ID, or root element.

Configuration Options

Name Description
Public ID

Specifies the public ID of the XML document type for which this XML registry entry is being configured.

When WebLogic Server starts to parse an XML document that is identified with this public ID, it uses the SAX or DOM parser factory implementation class specified by this registry entry, rather than the built-in or default, when obtaining a SAX or DOM parser.

MBean Attribute:
XMLParserSelectRegistryEntryMBean.PublicId

System ID

Specifies the system ID of the XML document type for which this XML registry entry is being configured.

When WebLogic Server starts to parse an XML document that is identified with this system ID, it uses the SAX or DOM parser factory implementation class specified by this registry entry, rather than the built-in or default, when obtaining a SAX or DOM parser.

MBean Attribute:
XMLParserSelectRegistryEntryMBean.SystemId

Root Element Tag

Specifies the root element of the XML document type for which this XML registry entry is being configured.

When WebLogic Server starts to parse an XML document that is identified with this root element, it uses the SAX or DOM parser factory implementation class specified by this registry entry, rather than the built-in or default, when obtaining a SAX or DOM parser.

MBean Attribute:
XMLParserSelectRegistryEntryMBean.RootElementTag

Document Builder Factory

Specifies the fully qualified name of the class that implements the DocumentBuilderFactory API.

When WebLogic Server begins to parse an XML document identified by either the public ID, system ID, or root element specified in this entry, and the applications specifies it wants a DOM parser, then WebLogic Server uses this implementation class when using the javax.xml.parsers.DocumentBuilderFactory to obtain the DOM parser.

MBean Attribute:
XMLParserSelectRegistryEntryMBean.DocumentBuilderFactory

SAX Parser Factory

Specifies the fully qualified name of the class that implements the SAXParserFactory API.

When WebLogic Server begins to parse an XML document identified by either the public ID, system ID, or root element specified in this entry, and the applications specifies it wants a SAX parser, then WebLogic Server uses this implementation class when using the javax.xml.parsers.SAXParserFactory to obtain the SAX parser.

MBean Attribute:
XMLParserSelectRegistryEntryMBean.SAXParserFactory

Related Tasks

Related Topics


Back to Top