WebLogic Integration


Uses of Class
com.bea.document.DocumentException

Packages that use DocumentException
com.bea.connector Classes/interfaces that extend the capabilities of the J2EE Connector Architecture. 
com.bea.document Objects/interfaces for BEA Document and Schema support. 
com.bea.wlai.client Provides the WebLogic Application Integration client-side interfaces/classes. 
com.bea.wlai.common Provides the WebLogic Application Integration commonly used interfaces/classes. 
 

Uses of DocumentException in com.bea.connector
 

Constructors in com.bea.connector that throw DocumentException
DocumentRecord.DocumentRecord(java.lang.String xml)
          Construct Document Record from a XML String.
DocumentRecord.DocumentRecord(org.xml.sax.InputSource inputSource)
          Construct Document Record from an SAX InputSource.
 

Uses of DocumentException in com.bea.document
 

Subclasses of DocumentException in com.bea.document
 interface DocumentParseException
          Exception indicating a parse error while creating an IDocument.
 interface InvalidDocumentException
          Exception thrown when a document is found to be invalid (either by validation against a schema, or because of some general structure flaw.
 

Methods in com.bea.document that throw DocumentException
 boolean DocumentData.toBoolean()
          Cast this document data to a boolean.
 org.w3c.dom.NodeList DocumentData.toNodeSet()
          Cast this document data to a list that represents the nodes contained within it.
 org.w3c.dom.traversal.NodeIterator DocumentData.toNodeIterator()
          Cast this document data to a list that represents the nodes contained within it.
 double DocumentData.toNumber()
          Cast this data to a number (double)
 org.w3c.dom.DocumentFragment DocumentData.toRtree()
          Cast this document data to a document fragment
 java.lang.String DocumentData.toStr()
          Cast this document data to a string.
 boolean DocumentData.equals(DocumentData data)
          Tell if two objects are functionally equal.
 boolean DocumentData.greaterThan(DocumentData data)
          Tell if this object is greater than the other.
 boolean DocumentData.greaterThanOrEqual(DocumentData data)
          Tell if this object is greater than or equal to the other.
 boolean DocumentData.lessThan(DocumentData data)
          Tell if this object is less than the other.
 boolean DocumentData.lessThanOrEqual(DocumentData data)
          Tell if this object is less than or equal to the other.
static IDocument DocumentFactory.createDocument(java.lang.String xml)
          Create a document using the given XML text.
static IDocument DocumentFactory.createDocument(java.lang.String xml, boolean deferParse)
          Create a document using the given XML text, optionally deferring the parse of that XML until a later time (i.e.
static IDocument DocumentFactory.createDocument(java.io.Reader reader)
          Create a document by reading the XML text for the document from the given Reader.
static IDocument DocumentFactory.createDocument(java.io.File file)
          Create a document by reading XML text previously saved to a file.
static IDocument DocumentFactory.createDocument(java.io.File file, java.lang.String encoding)
          Create a document by reading XML text previously saved to a file.
static IDocument DocumentFactory.createDocument(org.xml.sax.InputSource inputSource)
          Create a document by reading the XML text for the document from the given InputSource.
static java.lang.String DocumentFactory.serializeElement(org.w3c.dom.Element elem)
          Serialize the given Element out as XML and return a String.
static void DocumentFactory.serializeElement(java.io.Writer writer, org.w3c.dom.Element elem)
          Serialize the given Element as XML out to the given Writer.
static void DocumentFactory.serializeElement(java.io.Writer writer, int indent, int indentSize, org.w3c.dom.Element elem)
          Serialize the given Element as XML out to the given Writer, using the given indent level and indentSize.
 void IDocument.forceParsed()
          Force this document into the parsed state by using a DOM parser with the document's internal content.
 void IDocument.setContextNode(java.lang.String path)
          Sets the context node for use in all queries to path.
 void IDocument.setContextNode(DocumentData data)
          Sets the context node for use in all queries to data.
 java.lang.String IDocument.getStringFromFirst(java.lang.String nodeName)
          Return a string representing the value of the first element found with the given name.
 int IDocument.getIntegerFromFirst(java.lang.String nodeName)
          Return an int representing the value of the first element found with the given name.
 boolean IDocument.getBooleanFromFirst(java.lang.String nodeName)
          Return a boolean representing the value of the first element found with the given name.
 double IDocument.getDoubleFromFirst(java.lang.String nodeName)
          Return a double representing the value of the first element found with the given name.
 java.lang.String IDocument.getStringFrom(java.lang.String nodeName)
          Return a string representing the value of the nodes found with the given xpath.
 int IDocument.getIntegerFrom(java.lang.String nodeName)
          Return an int representing the value of the given xpath.
 boolean IDocument.getBooleanFrom(java.lang.String nodeName)
          Return a boolean representing the given xpath.
 double IDocument.getDoubleFrom(java.lang.String nodeName)
          Return a double representing the value of the given xpath.
 IDocument[] IDocument.getSubDocuments(java.lang.String path)
          Get an array of sub-documents representing the nodes that are referred to by the path argument.
 DocumentData IDocument.getDocumentData(java.lang.String path)
          Return an object which encapsulates the data that corresponds to the given path (XPath syntax).
 void IDocument.setStringInFirst(java.lang.String nodeName, java.lang.String newValue)
          Set the first data element found with the given name to the string given by newValue.
 void IDocument.setIntegerInFirst(java.lang.String nodeName, int newValue)
          Set the first data element found with the given name to the string representation of the given newValue.
 void IDocument.setBooleanInFirst(java.lang.String nodeName, boolean newValue)
          Set the first data element found with the given name to the string representation of the given newValue.
 void IDocument.setDoubleInFirst(java.lang.String nodeName, double newValue)
          Set the first data element found with the given name to the string representation of the given newValue.
 void IDocument.setStringIn(java.lang.String nodeName, java.lang.String newValue)
          Set the node value of all data nodes found for the given xpath to the string representation of the given newValue.
 void IDocument.setIntegerIn(java.lang.String nodeName, int newValue)
          Set the node value of all data nodes found for the given xpath to the string representation of the given newValue.
 void IDocument.setBooleanIn(java.lang.String nodeName, boolean newValue)
          Set the node value of all data nodes found for the given xpath to the string representation of the given newValue.
 void IDocument.setDoubleIn(java.lang.String nodeName, double newValue)
          Set the node value of all data nodes found for the given xpath to the string representation of the given newValue.
 void IDocument.setDocumentData(java.lang.String path, DocumentData value)
          Set the data element referred to by path to be value.
 org.w3c.dom.Attr IDocument.addAttribute(java.lang.String parentPath, java.lang.String attrName)
          Add a new attribute to the parent data element referred to by parentPath.
 org.w3c.dom.Attr IDocument.addAttribute(java.lang.String parentPath, java.lang.String attrName, java.lang.String value)
          Add a new attribute to the parent data element referred to by parentPath.
 org.w3c.dom.Element IDocument.addElement(java.lang.String parentPath, java.lang.String elementName)
          Add a new element to the parent data element referred to by parentPath.
 org.w3c.dom.Element IDocument.addElement(java.lang.String parentPath, java.lang.String elementName, java.lang.String value)
          Add a new element to the parent data element referred to by parentPath.
 void IDocument.addNode(java.lang.String parentPath, org.w3c.dom.Node node)
          Add a new node to the parent data element referred to by parentPath.
 void IDocument.addDocumentData(java.lang.String parentPath, DocumentData value)
          Add the given value to the parent data element referred to by parentPath.
 void IDocument.removeDocumentData(java.lang.String path)
          Remove the data element referred to by path.
 java.lang.String IDocument.toXML()
          Get the XML represented by this document as a String.
 void IDocument.toXML(java.io.Writer writer)
          Get the XML represented by this document, and write it to the given Writer.
 void IDocument.toXML(java.io.Writer writer, int indentSize, java.lang.String encoding)
          Get the XML represented by this document, and write it to the given Writer, using the given indent size and character encoding.
 void IDocument.fromXML(java.lang.String xmlText)
          Given an XML string, import this representation into this document (thus replacing any previous data elements in this document).
 void IDocument.fromXML(java.io.File file)
          Retrieves an XML document previously saved to a file.
 void IDocument.fromXML(java.io.File file, java.lang.String encoding)
          Retrieves an XML document previously saved to a file.
 void IDocument.fromXML(java.io.Reader reader)
          Given an XML stream read from reader, import this representation into this document (thus replacing any previous data elements in this document).
 void IDocument.fromXML(org.xml.sax.InputSource inputSource)
          Use the given SAX InputSource to import XML into this document (thus replacing any previous data elements in this document).
 void IDocument.fromXML(org.xml.sax.ContentHandler contentHandler)
          Parse the (unparsed) internal content of this document using a SAX parser and the given ContentHandler.
 

Uses of DocumentException in com.bea.wlai.client
 

Methods in com.bea.wlai.client that throw DocumentException
 IEventDescriptor SchemaManager.getEventDescriptor(java.lang.String appViewName, java.lang.String eventTypeName)
          Get an event descriptor given the ApplicationView name and event type name.
 void EventContext.postEvent(java.lang.String eventType, IEvent event)
          Post an event with the given type and represented by the given event to this EventContext.
 EventTester.EventCreationResults EventTester.createEvent(EventTester.EventCreationInfo eci, long millisToWait)
           
 void DeployManager.deployConnectionFactory(IConnectionFactoryDescriptor cfd, boolean allowRebind, boolean persistent)
          Deploy the given connection factory deployment descriptor, given by the cfd argument, to the WLAI server.
 void DeployManager.deployApplicationView(IApplicationViewDescriptor avd, boolean allowRebind, boolean persistent)
          Deploy the given connection factory deployment descriptor, given by the avd argument, to the WLAI server.
 IConnectionFactoryDescriptor DeployManager.undeployConnectionFactory(QualifiedName name, boolean force, boolean persistent)
          Undeploy the connection factory with the given name from the WLAI server.
 IApplicationViewDescriptor DeployManager.undeployApplicationView(QualifiedName appViewName, boolean force, boolean persistent)
          Undeploy the application view with the given name from the WLAI server.
 IConnectionFactoryDescriptor DeployManager.getConnectionFactoryDeploymentDescriptor(QualifiedName name)
          Get the connection factory deployment descriptor for the given connection factory name.
 IApplicationViewDescriptor DeployManager.getApplicationViewDeploymentDescriptor(QualifiedName appViewName)
          Get the application view deployment descriptor for the given application view.
 IDocument ApplicationViewRemote.invokeService(QualifiedName appViewName, java.lang.String serviceName, IDocument request, javax.resource.cci.ConnectionSpec spec)
          Synchronously invoke the service with the given name, using the request document given.
 IDocument ApplicationViewRemote.invokeService(QualifiedName appViewName, java.lang.String serviceName, IDocument request, boolean autoCreateResponse, javax.resource.cci.ConnectionSpec spec)
          Synchronously invoke the service with the given name, using the request document given.
 void ApplicationViewRemote.invokeService(QualifiedName appViewName, java.lang.String serviceName, IDocument request, IDocument response, javax.resource.cci.ConnectionSpec spec)
          Synchronously invoke the service with the given name, using the request and response documents given.
 IDocument ApplicationView.invokeService(java.lang.String serviceName, IDocument request)
          Synchronously invoke the service with the given name, using the request document given.
 IDocument ApplicationView.invokeService(java.lang.String serviceName, IDocument request, boolean autoCreateResponse)
          Synchronously invoke the service with the given name, using the request document given.
 void ApplicationView.invokeService(java.lang.String serviceName, IDocument request, IDocument response)
          Synchronously invoke the service with the given name, using the request and response documents given.
 void ApplicationView.postEvent(IEvent event)
          Post the given event to this ApplicationView, thus notifying any listeners listening on this ApplicationView for events with the type of the given event.
 

Uses of DocumentException in com.bea.wlai.common
 

Methods in com.bea.wlai.common that throw DocumentException
 java.lang.String AbstractDescriptor.toXML()
          Get an XML representation of this descriptor.
 void AbstractDescriptor.toXML(java.io.Writer writer)
          Write an XML representation of this descriptor to the given Writer.
abstract  void AbstractDescriptor.toXML(IDocument doc)
          Output an XML representation of this descriptor into an IDocument instance.
 void AbstractDescriptor.fromXML(java.lang.String xml)
          Parse the given XML into the currect descriptor, replacing all contents of the current descriptor with the new XML data.
 void AbstractDescriptor.fromXML(java.io.Reader reader)
          Parse the XML from the given Reader into the currect descriptor, replacing all contents of the current descriptor with the new XML data.
abstract  void AbstractDescriptor.fromXML(IDocument doc)
          Extract the data for this descriptor from the given IDocument instance, replacing all contents of the current descriptor with the new data.
 java.lang.String ServiceDescriptor.toXML()
          Get an XML representation of this descriptor.
 void ServiceDescriptor.toXML(java.io.Writer writer)
          Write an XML representation of this descriptor to the given Writer.
 void ServiceDescriptor.toXML(IDocument doc)
          Output an XML representation of this descriptor into an IDocument instance.
 void ServiceDescriptor.fromXML(IDocument doc)
          Extract the data for this descriptor from the given IDocument instance, replacing all contents of the current descriptor with the new data.
 java.lang.String EventDescriptor.toXML()
          Get an XML representation of this descriptor.
 void EventDescriptor.toXML(java.io.Writer writer)
          Write an XML representation of this descriptor to the given Writer.
 void EventDescriptor.toXML(IDocument doc)
          Output an XML representation of this descriptor into an IDocument instance.
 void EventDescriptor.fromXML(IDocument doc)
          Extract the data for this descriptor from the given IDocument instance, replacing all contents of the current descriptor with the new data.
 void ConnectionFactoryDescriptor.toXML(IDocument doc)
          Output an XML representation of this descriptor into an IDocument instance.
 void ConnectionFactoryDescriptor.fromXML(IDocument doc)
          Extract the data for this descriptor from the given IDocument instance, replacing all contents of the current descriptor with the new data.
 java.lang.String Event.toXML()
          Get an XML string representing this event definition.
 void Event.fromXML(java.lang.String xml)
          Parse an XML string representing an event definition.
 java.lang.String EventDefinition.toXML()
          Get an XML string representing this event definition.
 void EventDefinition.fromXML(java.lang.String xml)
          Parse an XML string representing an event definition.
 void SchemaDescriptor.toXML(IDocument doc)
          Output an XML representation of this descriptor into an IDocument instance.
 void SchemaDescriptor.fromXML(IDocument doc)
          Extract the data for this descriptor from the given IDocument instance, replacing all contents of the current descriptor with the new data.
 java.lang.String IEventDefinition.toXML()
          Get an XML string representing this event definition.
 void IEventDefinition.fromXML(java.lang.String xml)
          Parse an XML string representing an event definition.
 java.lang.String IEvent.toXML()
           
 void IEvent.fromXML(java.lang.String xml)
           
 void ApplicationViewDescriptor.toXML(IDocument doc)
          Output an XML representation of this descriptor into an IDocument instance.
 void ApplicationViewDescriptor.fromXML(IDocument doc)
          Extract the data for this descriptor from the given IDocument instance, replacing all contents of the current descriptor with the new data.
 void DocumentDescriptor.toXML(IDocument doc)
          Output an XML representation of this descriptor into an IDocument instance.
 void DocumentDescriptor.fromXML(IDocument doc)
          Extract the data for this descriptor from the given IDocument instance, replacing all contents of the current descriptor with the new data.
 java.lang.String IDescriptor.toXML()
          Get an XML representation of this descriptor.
 void IDescriptor.toXML(java.io.Writer writer)
          Write an XML representation of this descriptor to the given Writer.
 void IDescriptor.toXML(IDocument doc)
          Output an XML representation of this descriptor into an IDocument instance.
 void IDescriptor.fromXML(java.lang.String xml)
          Parse the given XML into the currect descriptor, replacing all contents of the current descriptor with the new XML data.
 void IDescriptor.fromXML(java.io.Reader reader)
          Parse the XML from the given Reader into the currect descriptor, replacing all contents of the current descriptor with the new XML data.
 void IDescriptor.fromXML(IDocument doc)
          Extract the data for this descriptor from the given IDocument instance, replacing all contents of the current descriptor with the new data.
 


WebLogic Integration

WebLogic Integration (WLI)