Java Code Examples for com.sun.xml.internal.messaging.saaj.util.FastInfosetReflection#FastInfosetSource_getInputStream
The following examples show how to use
com.sun.xml.internal.messaging.saaj.util.FastInfosetReflection#FastInfosetSource_getInputStream .
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: FastInfosetDataContentHandler.java From TencentKona-8 with GNU General Public License v2.0 | 6 votes |
/** * construct an object from a byte stream * (similar semantically to previous method, we are deciding * which one to support) */ public void writeTo(Object obj, String mimeType, OutputStream os) throws IOException { if (!mimeType.equals("application/fastinfoset")) { throw new IOException("Invalid content type \"" + mimeType + "\" for FastInfosetDCH"); } try { InputStream is = FastInfosetReflection.FastInfosetSource_getInputStream( (Source) obj); int n; byte[] buffer = new byte[4096]; while ((n = is.read(buffer)) != -1) { os.write(buffer, 0, n); } } catch (Exception ex) { throw new IOException( "Error copying FI source to output stream " + ex.getMessage()); } }
Example 2
Source File: FastInfosetDataContentHandler.java From jdk8u60 with GNU General Public License v2.0 | 6 votes |
/** * construct an object from a byte stream * (similar semantically to previous method, we are deciding * which one to support) */ public void writeTo(Object obj, String mimeType, OutputStream os) throws IOException { if (!mimeType.equals("application/fastinfoset")) { throw new IOException("Invalid content type \"" + mimeType + "\" for FastInfosetDCH"); } try { InputStream is = FastInfosetReflection.FastInfosetSource_getInputStream( (Source) obj); int n; byte[] buffer = new byte[4096]; while ((n = is.read(buffer)) != -1) { os.write(buffer, 0, n); } } catch (Exception ex) { throw new IOException( "Error copying FI source to output stream " + ex.getMessage()); } }
Example 3
Source File: FastInfosetDataContentHandler.java From openjdk-jdk8u with GNU General Public License v2.0 | 6 votes |
/** * construct an object from a byte stream * (similar semantically to previous method, we are deciding * which one to support) */ public void writeTo(Object obj, String mimeType, OutputStream os) throws IOException { if (!mimeType.equals("application/fastinfoset")) { throw new IOException("Invalid content type \"" + mimeType + "\" for FastInfosetDCH"); } try { InputStream is = FastInfosetReflection.FastInfosetSource_getInputStream( (Source) obj); int n; byte[] buffer = new byte[4096]; while ((n = is.read(buffer)) != -1) { os.write(buffer, 0, n); } } catch (Exception ex) { throw new IOException( "Error copying FI source to output stream " + ex.getMessage()); } }
Example 4
Source File: FastInfosetDataContentHandler.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 6 votes |
/** * construct an object from a byte stream * (similar semantically to previous method, we are deciding * which one to support) */ public void writeTo(Object obj, String mimeType, OutputStream os) throws IOException { if (!mimeType.equals("application/fastinfoset")) { throw new IOException("Invalid content type \"" + mimeType + "\" for FastInfosetDCH"); } try { InputStream is = FastInfosetReflection.FastInfosetSource_getInputStream( (Source) obj); int n; byte[] buffer = new byte[4096]; while ((n = is.read(buffer)) != -1) { os.write(buffer, 0, n); } } catch (Exception ex) { throw new IOException( "Error copying FI source to output stream " + ex.getMessage()); } }
Example 5
Source File: FastInfosetDataContentHandler.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
/** * Construct an object from a byte stream * (similar semantically to previous method, we are deciding * which one to support) */ @Override public void writeTo(Object obj, String mimeType, OutputStream os) throws IOException { if (!mimeType.equals("application/fastinfoset")) { throw new IOException("Invalid content type \"" + mimeType + "\" for FastInfosetDCH"); } try { InputStream is = FastInfosetReflection.FastInfosetSource_getInputStream( (Source) obj); int n; byte[] buffer = new byte[4096]; while ((n = is.read(buffer)) != -1) { os.write(buffer, 0, n); } } catch (Exception ex) { throw new IOException( "Error copying FI source to output stream " + ex.getMessage()); } }
Example 6
Source File: FastInfosetDataContentHandler.java From hottub with GNU General Public License v2.0 | 6 votes |
/** * construct an object from a byte stream * (similar semantically to previous method, we are deciding * which one to support) */ public void writeTo(Object obj, String mimeType, OutputStream os) throws IOException { if (!mimeType.equals("application/fastinfoset")) { throw new IOException("Invalid content type \"" + mimeType + "\" for FastInfosetDCH"); } try { InputStream is = FastInfosetReflection.FastInfosetSource_getInputStream( (Source) obj); int n; byte[] buffer = new byte[4096]; while ((n = is.read(buffer)) != -1) { os.write(buffer, 0, n); } } catch (Exception ex) { throw new IOException( "Error copying FI source to output stream " + ex.getMessage()); } }
Example 7
Source File: FastInfosetDataContentHandler.java From openjdk-8-source with GNU General Public License v2.0 | 6 votes |
/** * construct an object from a byte stream * (similar semantically to previous method, we are deciding * which one to support) */ public void writeTo(Object obj, String mimeType, OutputStream os) throws IOException { if (!mimeType.equals("application/fastinfoset")) { throw new IOException("Invalid content type \"" + mimeType + "\" for FastInfosetDCH"); } try { InputStream is = FastInfosetReflection.FastInfosetSource_getInputStream( (Source) obj); int n; byte[] buffer = new byte[4096]; while ((n = is.read(buffer)) != -1) { os.write(buffer, 0, n); } } catch (Exception ex) { throw new IOException( "Error copying FI source to output stream " + ex.getMessage()); } }
Example 8
Source File: FastInfosetDataContentHandler.java From openjdk-8 with GNU General Public License v2.0 | 6 votes |
/** * construct an object from a byte stream * (similar semantically to previous method, we are deciding * which one to support) */ public void writeTo(Object obj, String mimeType, OutputStream os) throws IOException { if (!mimeType.equals("application/fastinfoset")) { throw new IOException("Invalid content type \"" + mimeType + "\" for FastInfosetDCH"); } try { InputStream is = FastInfosetReflection.FastInfosetSource_getInputStream( (Source) obj); int n; byte[] buffer = new byte[4096]; while ((n = is.read(buffer)) != -1) { os.write(buffer, 0, n); } } catch (Exception ex) { throw new IOException( "Error copying FI source to output stream " + ex.getMessage()); } }
Example 9
Source File: SOAPPartImpl.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
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(); }