Examples of SAXDocumentBuilder


Examples of org.eclipse.persistence.platform.xml.SAXDocumentBuilder

    public Object unmarshal(XMLReader xmlReader, InputSource inputSource) {
      if(!xmlUnmarshaller.getMediaType().isApplicationXML()){
        throw XMLMarshalException.unsupportedMediaTypeForPlatform();
      }
        try {
            SAXDocumentBuilder saxDocumentBuilder = new SAXDocumentBuilder();
            xmlReader.setContentHandler(saxDocumentBuilder);
            xmlReader.parse(inputSource);
            return xmlToObject(new DOMRecord(saxDocumentBuilder.getDocument()));
        } catch(IOException e) {
            throw XMLMarshalException.unmarshalException(e);
        } catch(SAXException e) {
            throw XMLMarshalException.unmarshalException(e);
        } finally {
View Full Code Here

Examples of org.eclipse.persistence.platform.xml.SAXDocumentBuilder

    public Object unmarshal(XMLReader xmlReader, InputSource inputSource, Class clazz) {
      if(!xmlUnmarshaller.getMediaType().isApplicationXML()){
        throw XMLMarshalException.unsupportedMediaTypeForPlatform();
      }
        try {
            SAXDocumentBuilder saxDocumentBuilder = new SAXDocumentBuilder();
            xmlReader.setContentHandler(saxDocumentBuilder);
            xmlReader.parse(inputSource);
            return xmlToObject(new DOMRecord(saxDocumentBuilder.getDocument()), clazz);
        } catch(IOException e) {
            throw XMLMarshalException.unmarshalException(e);
        } catch(SAXException e) {
            throw XMLMarshalException.unmarshalException(e);
        } finally {
View Full Code Here

Examples of org.eclipse.persistence.platform.xml.SAXDocumentBuilder

                }             
            }         
         
            if (null == xmlDescriptor && primitiveWrapperClass == null){
                if(!this.keepAsElementPolicy.isKeepNoneAsElement()) {
                    this.documentBuilder = new SAXDocumentBuilder();
                    documentBuilder.startDocument();
                    //start any prefixes that have already been started
                    for(String prefix:this.unmarshalNamespaceResolver.getPrefixes()) {
                        documentBuilder.startPrefixMapping(prefix, this.unmarshalNamespaceResolver.getNamespaceURI(prefix));
                    }
View Full Code Here

Examples of org.eclipse.persistence.platform.xml.SAXDocumentBuilder

    public Object unmarshal(org.xml.sax.XMLReader xmlReader, InputSource inputSource) {
        try {
            Context xmlContext = xmlUnmarshaller.getContext();
            if (xmlContext.hasDocumentPreservation()) {
                SAXDocumentBuilder saxDocumentBuilder = new SAXDocumentBuilder();
                xmlReader.setContentHandler(saxDocumentBuilder);
                xmlReader.parse(inputSource);               
                return unmarshal(saxDocumentBuilder.getDocument().getDocumentElement());
            }
            XMLReader extendedXMLReader;
            if(xmlReader instanceof XMLReader) {
                extendedXMLReader = (XMLReader) xmlReader;
            } else {
View Full Code Here

Examples of org.eclipse.persistence.platform.xml.SAXDocumentBuilder

    public Object unmarshal(org.xml.sax.XMLReader xmlReader, InputSource inputSource, Class clazz) {
        try {
            Context xmlContext = xmlUnmarshaller.getContext();

            if (xmlContext.hasDocumentPreservation() || (Node.class.isAssignableFrom(clazz) && xmlUnmarshaller.isApplicationXML())) {
                SAXDocumentBuilder saxDocumentBuilder = new SAXDocumentBuilder();
                xmlReader.setContentHandler(saxDocumentBuilder);
                xmlReader.parse(inputSource);
                return unmarshal(saxDocumentBuilder.getDocument().getDocumentElement(), clazz);
            }
           
            UnmarshalRecord unmarshalRecord = null;
            Descriptor xmlDescriptor = null;
View Full Code Here

Examples of org.eclipse.persistence.platform.xml.SAXDocumentBuilder

    public Document parse(Source source) throws XMLPlatformException {
        try {
            TransformerFactory transformerFactory = TransformerFactory.newInstance();
            Transformer transformer = transformerFactory.newTransformer();
            SAXResult saxResult = new SAXResult();
            SAXDocumentBuilder builder = new SAXDocumentBuilder();
            saxResult.setHandler(builder);
            transformer.transform(source, saxResult);
            return builder.getDocument();
        } catch (TransformerException e) {
            throw XMLPlatformException.xmlPlatformParseException(e);
        }
    }
View Full Code Here

Examples of org.eclipse.persistence.platform.xml.SAXDocumentBuilder

    public Object unmarshal(XMLReader xmlReader, InputSource inputSource) {
      if(!xmlUnmarshaller.isApplicationXML()){
        throw XMLMarshalException.unsupportedMediaTypeForPlatform();
      }
        try {
            SAXDocumentBuilder saxDocumentBuilder = new SAXDocumentBuilder();
            xmlReader.setContentHandler(saxDocumentBuilder);
            xmlReader.parse(inputSource);
            return xmlToObject(new DOMRecord(saxDocumentBuilder.getDocument()));
        } catch(IOException e) {
            throw XMLMarshalException.unmarshalException(e);
        } catch(SAXException e) {
            throw XMLMarshalException.unmarshalException(e);
        } finally {
View Full Code Here

Examples of org.eclipse.persistence.platform.xml.SAXDocumentBuilder

    public Object unmarshal(XMLReader xmlReader, InputSource inputSource, Class clazz) {
      if(!xmlUnmarshaller.isApplicationXML()){
        throw XMLMarshalException.unsupportedMediaTypeForPlatform();
      }
        try {
            SAXDocumentBuilder saxDocumentBuilder = new SAXDocumentBuilder();
            xmlReader.setContentHandler(saxDocumentBuilder);
            xmlReader.parse(inputSource);
            return xmlToObject(new DOMRecord(saxDocumentBuilder.getDocument()), clazz);
        } catch(IOException e) {
            throw XMLMarshalException.unmarshalException(e);
        } catch(SAXException e) {
            throw XMLMarshalException.unmarshalException(e);
        } finally {
View Full Code Here

Examples of org.eclipse.persistence.platform.xml.SAXDocumentBuilder

    public Object unmarshal(XMLReader xmlReader, InputSource inputSource) {
      if(xmlUnmarshaller.getMediaType() != MediaType.APPLICATION_XML){
        throw XMLMarshalException.unsupportedMediaTypeForPlatform();
      }
        try {
            SAXDocumentBuilder saxDocumentBuilder = new SAXDocumentBuilder();
            xmlReader.setContentHandler(saxDocumentBuilder);
            xmlReader.parse(inputSource);
            return xmlToObject(new DOMRecord(saxDocumentBuilder.getDocument()));
        } catch(IOException e) {
            throw XMLMarshalException.unmarshalException(e);
        } catch(SAXException e) {
            throw XMLMarshalException.unmarshalException(e);
        } finally {
View Full Code Here

Examples of org.eclipse.persistence.platform.xml.SAXDocumentBuilder

    public Object unmarshal(XMLReader xmlReader, InputSource inputSource, Class clazz) {
      if(xmlUnmarshaller.getMediaType() != MediaType.APPLICATION_XML){
        throw XMLMarshalException.unsupportedMediaTypeForPlatform();
      }
        try {
            SAXDocumentBuilder saxDocumentBuilder = new SAXDocumentBuilder();
            xmlReader.setContentHandler(saxDocumentBuilder);
            xmlReader.parse(inputSource);
            return xmlToObject(new DOMRecord(saxDocumentBuilder.getDocument()), clazz);
        } catch(IOException e) {
            throw XMLMarshalException.unmarshalException(e);
        } catch(SAXException e) {
            throw XMLMarshalException.unmarshalException(e);
        } finally {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.