Java Code Examples for com.sun.xml.internal.messaging.saaj.util.FastInfosetReflection#isFastInfosetSource()

The following examples show how to use com.sun.xml.internal.messaging.saaj.util.FastInfosetReflection#isFastInfosetSource() . 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: SOAPPartImpl.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Source getContent() throws SOAPException {
    if (source != null) {
        InputStream bis = null;
        if (source instanceof JAXMStreamSource) {
            StreamSource streamSource = (StreamSource)source;
            bis = streamSource.getInputStream();
        } else if (FastInfosetReflection.isFastInfosetSource(source)) {
            // FastInfosetSource inherits from SAXSource
            SAXSource saxSource = (SAXSource)source;
            bis = saxSource.getInputSource().getByteStream();
        }

        if (bis != null) {
            try {
                bis.reset();
            } catch (IOException e) {
                /* This exception will never be thrown.
                 *
                 * The setContent method will modify the source
                 * if StreamSource to JAXMStreamSource, that uses
                 * a ByteInputStream, and for a FastInfosetSource will
                 * replace the InputStream with a ByteInputStream.
                 */
            }
        }
        return source;
    }

    return ((Envelope) getEnvelope()).getContent();
}
 
Example 2
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();
}