Examples of DOMErrorImpl


Examples of org.apache.xerces.dom.DOMErrorImpl

        try {       
            parse(xmlInputSource);
        } catch (Exception e) {
            if (fErrorHandler != null) {
                DOMErrorImpl error = new DOMErrorImpl();
                error.fException = e;
                error.fMessage = e.getMessage();
                error.fSeverity = error.SEVERITY_FATAL_ERROR;
                fErrorHandler.getErrorHandler().handleError(error);
View Full Code Here

Examples of org.apache.xerces.dom.DOMErrorImpl

    *                      parsing the document.
    */

   public void warning(String domain, String key,
      XMLParseException exception) throws XNIException {
  DOMError error = new DOMErrorImpl(DOMError.SEVERITY_WARNING, exception);
  fDomErrorHandler.handleError(error);
   } // warning(String,String,XMLParseException)
View Full Code Here

Examples of org.apache.xerces.dom.DOMErrorImpl

    * @throws XNIException Thrown to signal that the parser should stop
    *                      parsing the document.
    */
   public void error(String domain, String key,
      XMLParseException exception) throws XNIException {
  DOMError error = new DOMErrorImpl(DOMError.SEVERITY_ERROR, exception);
  fDomErrorHandler.handleError(error);                       
   } // error(String,String,XMLParseException)
View Full Code Here

Examples of org.apache.xerces.dom.DOMErrorImpl

    * @throws XNIException Thrown to signal that the parser should stop
    *                      parsing the document.
    */
   public void fatalError(String domain, String key,
      XMLParseException exception) throws XNIException {
  DOMError error = new DOMErrorImpl(DOMError.SEVERITY_FATAL_ERROR, exception);
  fDomErrorHandler.handleError(error);                            
   } // fatalError(String,String,XMLParseException)
View Full Code Here

Examples of org.apache.xerces.dom.DOMErrorImpl

            parse (source);
            fBusy = false;
        } catch (Exception e){
            fBusy = false;
            if (fErrorHandler != null) {
                DOMErrorImpl error = new DOMErrorImpl ();
                error.fException = e;
                error.fMessage = e.getMessage ();
                error.fSeverity = DOMError.SEVERITY_FATAL_ERROR;
                fErrorHandler.getErrorHandler ().handleError (error);
            }
View Full Code Here

Examples of org.apache.xerces.dom.DOMErrorImpl

            parse (xmlInputSource);
            fBusy = false;
        } catch (Exception e) {
            fBusy = false;
            if (fErrorHandler != null) {
                DOMErrorImpl error = new DOMErrorImpl ();
                error.fException = e;
                error.fMessage = e.getMessage ();
                error.fSeverity = DOMError.SEVERITY_FATAL_ERROR;
                fErrorHandler.getErrorHandler ().handleError (error);
            }
View Full Code Here

Examples of org.apache.xerces.dom.DOMErrorImpl

            String uri =  destination.getSystemId();
            if (writer == null) {
                if (outputStream == null) {
                    if (uri == null) {
                        if (ser.fDOMErrorHandler != null) {
                            DOMErrorImpl error = new DOMErrorImpl();
                            error.fType = "no-output-specified";
                            error.fMessage = "no-output-specified";
                            error.fSeverity = DOMError.SEVERITY_FATAL_ERROR;
                            ser.fDOMErrorHandler.handleError(error);
                        }
                        throw new LSException(LSException.SERIALIZE_ERR, "no-output-specified");
                    }
                    else {
                        // URI was specified. Handle relative URIs.
                        String expanded = XMLEntityManager.expandSystemId(uri, null, true);
                        URL url = new URL(expanded != null ? expanded : uri);
                        OutputStream out = null;
                        String protocol = url.getProtocol();
                        String host = url.getHost();
                        // Use FileOutputStream if this URI is for a local file.
                        if (protocol.equals("file")
                            && (host == null || host.length() == 0 || host.equals("localhost"))) {
                            // REVISIT: We have to decode %nn sequences. For
                            // now files containing spaces and other characters
                            // which were escaped in the URI will fail. -- mrglavas
                            out = new FileOutputStream(new File(url.getPath()));
                        }
                        // Try to write to some other kind of URI. Some protocols
                        // won't support this, though HTTP should work.
                        else {
                            URLConnection urlCon = url.openConnection();
                            urlCon.setDoInput(false);
                            urlCon.setDoOutput(true);
                            urlCon.setUseCaches(false); // Enable tunneling.
                            if (urlCon instanceof HttpURLConnection) {
                                // The DOM L3 LS CR says if we are writing to an HTTP URI
                                // it is to be done with an HTTP PUT.
                                HttpURLConnection httpCon = (HttpURLConnection) urlCon;
                                httpCon.setRequestMethod("PUT");
                            }
                            out = urlCon.getOutputStream();
                        }
                        ser.setOutputByteStream(out);
                    }
                }
                else {
                    // byte stream was specified
                    ser.setOutputByteStream(outputStream);
                }
            }
            else {
                // character stream is specified
                ser.setOutputCharStream(writer);
            }

            if (node.getNodeType() == Node.DOCUMENT_NODE)
                ser.serialize((Document) node);
            else if (node.getNodeType() == Node.DOCUMENT_FRAGMENT_NODE)
                ser.serialize((DocumentFragment) node);
            else if (node.getNodeType() == Node.ELEMENT_NODE)
                ser.serialize((Element) node);
            else
                return false;
        } catch( UnsupportedEncodingException ue) {
            if (ser.fDOMErrorHandler != null) {
                DOMErrorImpl error = new DOMErrorImpl();
                error.fException = ue;
        error.fType = "unsupported-encoding";
                error.fMessage = ue.getMessage();
        error.fSeverity = DOMError.SEVERITY_FATAL_ERROR;
                ser.fDOMErrorHandler.handleError(error);
      }
      return false;
        } catch (RuntimeException e) {
            if (e == DOMNormalizer.abort){
                // stopped at user request
                return false;
            }
            throw new LSException(LSException.SERIALIZE_ERR, e.toString());           
        } catch (Exception e) {
            if (ser.fDOMErrorHandler != null) {
                DOMErrorImpl error = new DOMErrorImpl();
                error.fException = e;
                error.fMessage = e.getMessage();
                error.fSeverity = DOMError.SEVERITY_ERROR;
                ser.fDOMErrorHandler.handleError(error);
View Full Code Here

Examples of org.apache.xerces.dom.DOMErrorImpl

                return false;
            }
            throw new LSException(LSException.SERIALIZE_ERR, e.toString());           
        } catch (Exception e) {
            if (ser.fDOMErrorHandler != null) {
                DOMErrorImpl error = new DOMErrorImpl();
                error.fException = e;
                error.fMessage = e.getMessage();
                error.fSeverity = DOMError.SEVERITY_ERROR;
                ser.fDOMErrorHandler.handleError(error);
            }
View Full Code Here

Examples of org.apache.xerces.dom.DOMErrorImpl

            }
            else if (nodeType == Node.PROCESSING_INSTRUCTION_NODE) {
               
                baseURI = ((EntityReferenceImpl)fCurrentNode).getBaseURI ();
                if (baseURI !=null && fErrorHandler != null) {
                    DOMErrorImpl error = new DOMErrorImpl ();
                    error.fType = "infoset-baseURI";
                    error.fRelatedData = baseURI;
                    error.fSeverity = DOMError.SEVERITY_WARNING;
                    fErrorHandler.getErrorHandler ().handleError (error);
                }
View Full Code Here

Examples of org.apache.xerces.dom.DOMErrorImpl

                // try baseURI of the entity declaration
                baseURI = fDeferredDocumentImpl.getDeferredEntityBaseURI (fDeferredEntityDecl);
            }
           
            if (baseURI != null && fErrorHandler != null) {
                DOMErrorImpl error = new DOMErrorImpl ();
                error.fType = "infoset-baseURI";
                error.fRelatedData = baseURI;
                error.fSeverity = DOMError.SEVERITY_WARNING;
                fErrorHandler.getErrorHandler ().handleError (error);
            }
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.