Uses of Class
uk.org.ogsadai.common.xml.XMLParseException

Packages that use XMLParseException
uk.org.ogsadai.activity.sql Activities that provide SQL access to a relational data resource. 
uk.org.ogsadai.activity.xmldb Contains activity implementations for performing various operations on XML databases. 
uk.org.ogsadai.client.toolkit Provides utility classes for client-side interaction with OGSA-DAI services. 
uk.org.ogsadai.common This package provides a set of common classes and interfaces supporting all the other OGSA-DAI components. 
uk.org.ogsadai.common.xml This package provides a set of common classes for XML manipulation. 
 

Uses of XMLParseException in uk.org.ogsadai.activity.sql
 

Methods in uk.org.ogsadai.activity.sql that throw XMLParseException
private  java.lang.String RemoveDuplicatesWebRowSetActivity.removeDup(java.lang.String inputRowSet)
          Remove duplicate rows of a WebRowSet.
private  java.lang.String SQLBagActivity.mergeResults(java.lang.String[] rowsets)
          Merge N WebRowSets.
 

Uses of XMLParseException in uk.org.ogsadai.activity.xmldb
 

Methods in uk.org.ogsadai.activity.xmldb that throw XMLParseException
static void XMLDBUtilities.addResource(org.xmldb.api.base.Collection collection, java.lang.String resourceName, java.lang.String resourcePath)
          Adds a named resource to the specified parent collection.
 

Uses of XMLParseException in uk.org.ogsadai.client.toolkit
 

Constructors in uk.org.ogsadai.client.toolkit that throw XMLParseException
DocumentRequest(java.lang.String performDoc)
          Constructs a request that consists of the given perform document.
DocumentRequest(java.io.File performDocFile)
          Constructs a request that consists of the given perform document.
 

Uses of XMLParseException in uk.org.ogsadai.common
 

Methods in uk.org.ogsadai.common that throw XMLParseException
static org.w3c.dom.Document NetUtilities.readToDocument(java.lang.String url, boolean validate)
          Returns a string containing the data read from a specified URL.
 

Uses of XMLParseException in uk.org.ogsadai.common.xml
 

Subclasses of XMLParseException in uk.org.ogsadai.common.xml
 class XMLDocumentException
          An exception thrown when parsing an XML document including information on the point in the document causing the error.
 

Methods in uk.org.ogsadai.common.xml that throw XMLParseException
static void XMLSchemaUtilities.validate(org.w3c.dom.Document document, org.w3c.dom.Document schema)
          Validates an XML document against a specified XML Schema.
static org.w3c.dom.Document XMLUtilities.xmlFileToDOM(java.lang.String fileName)
          Parses an XML file into a DOM Document and validates it against its XML Schema.
static org.w3c.dom.Document XMLUtilities.xmlFileToDOM(java.lang.String fileName, boolean validate)
          Parses an XML file into a DOM Document.
static org.w3c.dom.Document XMLUtilities.xmlStringToDOM(java.lang.String str)
          Converts XML from a String into a DOM Document and validates it against its XML Schema.
static org.w3c.dom.Document XMLUtilities.xmlStringToDOM(java.lang.String str, boolean validate)
          Converts XML from a String into a DOM Document.
static org.w3c.dom.Document XMLUtilities.xmlStreamToDOM(java.io.InputStream stream)
          Converts XML from a java.io.InputStream into a DOM Document and validates it against its XML Schema.
static org.w3c.dom.Document XMLUtilities.xmlStreamToDOM(java.io.InputStream stream, boolean validate)
          Converts XML from a java.io.InputStream into a DOM Document.
static org.w3c.dom.Document XMLUtilities.xmlReaderToDOM(java.io.Reader reader, boolean validate)
          Converts XML from a java.io.Reader into a DOM Document
static void XMLUtilities.xmlDOMToFile(org.w3c.dom.Document doc, java.lang.String fileName)
          Puts a DOM Document into a file.
static void XMLUtilities.xmlDOMToStream(org.w3c.dom.Node node, java.io.OutputStream stream)
          Serializes a DOM object to a java.io.OutputStream.
static void XMLUtilities.xmlDOMToStream(org.w3c.dom.Node node, java.io.Writer writer)
          Serializes a DOM object to a java.io.Writer.
private static void XMLUtilities.xmlDOMToStream(org.w3c.dom.Node node, java.io.OutputStream stream, java.io.Writer writer)
          Serializes a DOM object to a java.io.OutputStream or a java.io.Writer.
static java.lang.String XMLUtilities.parseElementValue(org.w3c.dom.Element element, boolean nonEmpty)
          Parses the specified element and returns its value.
static java.lang.String XMLUtilities.parseChildElementValue(org.w3c.dom.Element parent, java.lang.String namespaceURI, java.lang.String childName, boolean required, boolean nonEmpty)
          Parses the value of a child element of the specified parent.
static java.lang.String XMLUtilities.parseAttribute(org.w3c.dom.Element element, java.lang.String attributeName, boolean nonEmpty)
          Parses the value of an attribute of an element.
static java.lang.String XMLUtilities.parseChildElementAttribute(org.w3c.dom.Element parent, java.lang.String namespaceURI, java.lang.String childName, java.lang.String attributeName, boolean required, boolean nonEmpty)
          Parses the value of an attribute of a child element.
static java.lang.String XMLUtilities.getChildText(org.w3c.dom.Element parent, java.lang.String namespaceURI, java.lang.String childName)
          Gets the concatenated text children, trimmed of surrounding whitespace, of the named child element of the specified parent.
static java.lang.String XMLUtilities.getChildText(org.w3c.dom.Node parent)
          Extract the XML sub-tree beneath the given node and return as an XML string.
static java.lang.String XMLUtilities.elementToString(org.w3c.dom.Element element)
          Converts an Element to its String representation.