Java Code Examples for com.sun.xml.internal.messaging.saaj.util.ByteOutputStream#newInputStream()

The following examples show how to use com.sun.xml.internal.messaging.saaj.util.ByteOutputStream#newInputStream() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: BMMimeMultipart.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
public void writeTo(OutputStream os)
        throws IOException, MessagingException {

    // inputStream was not null
    if (in != null) {
        contentType.setParameter("boundary", this.boundary);
    }

    String bnd = "--" + contentType.getParameter("boundary");
    for (int i = 0; i < parts.size(); i++) {
        OutputUtil.writeln(bnd, os); // put out boundary
        ((MimeBodyPart)parts.get(i)).writeTo(os);
        OutputUtil.writeln(os); // put out empty line
    }

    if (in != null) {
        OutputUtil.writeln(bnd, os); // put out boundary
        if ((os instanceof ByteOutputStream) && lazyAttachments) {
            ((ByteOutputStream)os).write(in);
        } else {
            ByteOutputStream baos = new ByteOutputStream(in.available());
            baos.write(in);
            baos.writeTo(os);
            // reset the inputstream so that we can support a
            //getAttachment later
            in = baos.newInputStream();
        }

        // this will endup writing the end boundary
    } else {
    // put out last boundary
        OutputUtil.writeAsAscii(bnd, os);
        OutputUtil.writeAsAscii("--", os);
    }
}
 
Example 2
Source File: BMMimeMultipart.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
public void writeTo(OutputStream os)
        throws IOException, MessagingException {

    // inputStream was not null
    if (in != null) {
        contentType.setParameter("boundary", this.boundary);
    }

    String bnd = "--" + contentType.getParameter("boundary");
    for (int i = 0; i < parts.size(); i++) {
        OutputUtil.writeln(bnd, os); // put out boundary
        ((MimeBodyPart)parts.get(i)).writeTo(os);
        OutputUtil.writeln(os); // put out empty line
    }

    if (in != null) {
        OutputUtil.writeln(bnd, os); // put out boundary
        if ((os instanceof ByteOutputStream) && lazyAttachments) {
            ((ByteOutputStream)os).write(in);
        } else {
            ByteOutputStream baos = new ByteOutputStream(in.available());
            baos.write(in);
            baos.writeTo(os);
            // reset the inputstream so that we can support a
            //getAttachment later
            in = baos.newInputStream();
        }

        // this will endup writing the end boundary
    } else {
    // put out last boundary
        OutputUtil.writeAsAscii(bnd, os);
        OutputUtil.writeAsAscii("--", os);
    }
}
 
Example 3
Source File: BMMimeMultipart.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
public void writeTo(OutputStream os)
        throws IOException, MessagingException {

    // inputStream was not null
    if (in != null) {
        contentType.setParameter("boundary", this.boundary);
    }

    String bnd = "--" + contentType.getParameter("boundary");
    for (int i = 0; i < parts.size(); i++) {
        OutputUtil.writeln(bnd, os); // put out boundary
        ((MimeBodyPart)parts.get(i)).writeTo(os);
        OutputUtil.writeln(os); // put out empty line
    }

    if (in != null) {
        OutputUtil.writeln(bnd, os); // put out boundary
        if ((os instanceof ByteOutputStream) && lazyAttachments) {
            ((ByteOutputStream)os).write(in);
        } else {
            ByteOutputStream baos = new ByteOutputStream(in.available());
            baos.write(in);
            baos.writeTo(os);
            // reset the inputstream so that we can support a
            //getAttachment later
            in = baos.newInputStream();
        }

        // this will endup writing the end boundary
    } else {
    // put out last boundary
        OutputUtil.writeAsAscii(bnd, os);
        OutputUtil.writeAsAscii("--", os);
    }
}
 
Example 4
Source File: BMMimeMultipart.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
public void writeTo(OutputStream os)
        throws IOException, MessagingException {

    // inputStream was not null
    if (in != null) {
        contentType.setParameter("boundary", this.boundary);
    }

    String bnd = "--" + contentType.getParameter("boundary");
    for (int i = 0; i < parts.size(); i++) {
        OutputUtil.writeln(bnd, os); // put out boundary
        ((MimeBodyPart)parts.get(i)).writeTo(os);
        OutputUtil.writeln(os); // put out empty line
    }

    if (in != null) {
        OutputUtil.writeln(bnd, os); // put out boundary
        if ((os instanceof ByteOutputStream) && lazyAttachments) {
            ((ByteOutputStream)os).write(in);
        } else {
            ByteOutputStream baos = new ByteOutputStream(in.available());
            baos.write(in);
            baos.writeTo(os);
            // reset the inputstream so that we can support a
            //getAttachment later
            in = baos.newInputStream();
        }

        // this will endup writing the end boundary
    } else {
    // put out last boundary
        OutputUtil.writeAsAscii(bnd, os);
        OutputUtil.writeAsAscii("--", os);
    }
}
 
Example 5
Source File: BMMimeMultipart.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
public void writeTo(OutputStream os)
        throws IOException, MessagingException {

    // inputStream was not null
    if (in != null) {
        contentType.setParameter("boundary", this.boundary);
    }

    String bnd = "--" + contentType.getParameter("boundary");
    for (int i = 0; i < parts.size(); i++) {
        OutputUtil.writeln(bnd, os); // put out boundary
        ((MimeBodyPart)parts.get(i)).writeTo(os);
        OutputUtil.writeln(os); // put out empty line
    }

    if (in != null) {
        OutputUtil.writeln(bnd, os); // put out boundary
        if ((os instanceof ByteOutputStream) && lazyAttachments) {
            ((ByteOutputStream)os).write(in);
        } else {
            ByteOutputStream baos = new ByteOutputStream(in.available());
            baos.write(in);
            baos.writeTo(os);
            // reset the inputstream so that we can support a
            //getAttachment later
            in = baos.newInputStream();
        }

        // this will endup writing the end boundary
    } else {
    // put out last boundary
        OutputUtil.writeAsAscii(bnd, os);
        OutputUtil.writeAsAscii("--", os);
    }
}
 
Example 6
Source File: BMMimeMultipart.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
public void writeTo(OutputStream os)
        throws IOException, MessagingException {

    // inputStream was not null
    if (in != null) {
        contentType.setParameter("boundary", this.boundary);
    }

    String bnd = "--" + contentType.getParameter("boundary");
    for (int i = 0; i < parts.size(); i++) {
        OutputUtil.writeln(bnd, os); // put out boundary
        ((MimeBodyPart)parts.get(i)).writeTo(os);
        OutputUtil.writeln(os); // put out empty line
    }

    if (in != null) {
        OutputUtil.writeln(bnd, os); // put out boundary
        if ((os instanceof ByteOutputStream) && lazyAttachments) {
            ((ByteOutputStream)os).write(in);
        } else {
            ByteOutputStream baos = new ByteOutputStream(in.available());
            baos.write(in);
            baos.writeTo(os);
            // reset the inputstream so that we can support a
            //getAttachment later
            in = baos.newInputStream();
        }

        // this will endup writing the end boundary
    } else {
    // put out last boundary
        OutputUtil.writeAsAscii(bnd, os);
        OutputUtil.writeAsAscii("--", os);
    }
}
 
Example 7
Source File: BMMimeMultipart.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
public void writeTo(OutputStream os)
        throws IOException, MessagingException {

    // inputStream was not null
    if (in != null) {
        contentType.setParameter("boundary", this.boundary);
    }

    String bnd = "--" + contentType.getParameter("boundary");
    for (int i = 0; i < parts.size(); i++) {
        OutputUtil.writeln(bnd, os); // put out boundary
        ((MimeBodyPart)parts.get(i)).writeTo(os);
        OutputUtil.writeln(os); // put out empty line
    }

    if (in != null) {
        OutputUtil.writeln(bnd, os); // put out boundary
        if ((os instanceof ByteOutputStream) && lazyAttachments) {
            ((ByteOutputStream)os).write(in);
        } else {
            ByteOutputStream baos = new ByteOutputStream(in.available());
            baos.write(in);
            baos.writeTo(os);
            // reset the inputstream so that we can support a
            //getAttachment later
            in = baos.newInputStream();
        }

        // this will endup writing the end boundary
    } else {
    // put out last boundary
        OutputUtil.writeAsAscii(bnd, os);
        OutputUtil.writeAsAscii("--", os);
    }
}
 
Example 8
Source File: SOAPPartImpl.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
public InputStream getContentAsStream() throws IOException {
    if (source != null) {
        InputStream is = null;

        // Allow message to be transcode if so requested
        if (source instanceof StreamSource && !isFastInfoset()) {
            is = ((StreamSource) source).getInputStream();
        }
        else if (FastInfosetReflection.isFastInfosetSource(source) &&
            isFastInfoset())
        {
            try {
                // InputStream is = source.getInputStream()
                is = FastInfosetReflection.FastInfosetSource_getInputStream(source);
            }
            catch (Exception e) {
                throw new IOException(e.toString());
            }
        }

        if (is != null) {
            if (lazyContentLength) {
                return is;
            }
            if (!(is instanceof ByteInputStream)) {
                log.severe("SAAJ0546.soap.stream.incorrect.type");
                throw new IOException("Internal error: stream not of the right type");
            }
            return (ByteInputStream) is;
        }
        // need to do something here for reader...
        // for now we'll see if we can fallback...
    }

    ByteOutputStream b = new ByteOutputStream();

    Envelope env = null;

    try {
        env = (Envelope) getEnvelope();
        env.output(b, isFastInfoset());
    }
    catch (SOAPException soapException) {
        log.severe("SAAJ0547.soap.cannot.externalize");
        throw new SOAPIOException(
        "SOAP exception while trying to externalize: ",
        soapException);
    }

    return b.newInputStream();
}