com.sun.xml.internal.ws.api.message.AttachmentEx Java Examples

The following examples show how to use com.sun.xml.internal.ws.api.message.AttachmentEx. 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: SAAJFactory.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
static protected void addAttachmentsToSOAPMessage(SOAPMessage msg, Message message) {
    for(Attachment att : message.getAttachments()) {
        AttachmentPart part = msg.createAttachmentPart();
        part.setDataHandler(att.asDataHandler());

        // Be safe and avoid double angle-brackets.
        String cid = att.getContentId();
        if (cid != null) {
            if (cid.startsWith("<") && cid.endsWith(">"))
                part.setContentId(cid);
            else
                part.setContentId('<' + cid + '>');
        }

        // Add any MIME headers beside Content-ID, which is already
        // accounted for above, and Content-Type, which is provided
        // by the DataHandler above.
        if (att instanceof AttachmentEx) {
            AttachmentEx ax = (AttachmentEx) att;
            Iterator<AttachmentEx.MimeHeader> imh = ax.getMimeHeaders();
            while (imh.hasNext()) {
                AttachmentEx.MimeHeader ame = imh.next();
                if ((!"Content-ID".equals(ame.getName()))
                        && (!"Content-Type".equals(ame.getName())))
                    part.addMimeHeader(ame.getName(), ame.getValue());
            }
        }
        msg.addAttachmentPart(part);
    }
}
 
Example #2
Source File: MimeCodec.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
private void writeCustomMimeHeaders(Attachment att, OutputStream out) throws IOException {
    if (att instanceof AttachmentEx) {
        Iterator<AttachmentEx.MimeHeader> allMimeHeaders = ((AttachmentEx) att).getMimeHeaders();
        while (allMimeHeaders.hasNext()) {
            AttachmentEx.MimeHeader mh = allMimeHeaders.next();
            String name = mh.getName();

            if (!"Content-Type".equalsIgnoreCase(name) && !"Content-Id".equalsIgnoreCase(name)) {
                writeln(name +": " + mh.getValue(), out);
            }
        }
    }
}
 
Example #3
Source File: MimeMultipartParser.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Iterator<MimeHeader> getMimeHeaders() {
    final Iterator<? extends Header> ih = part.getAllHeaders()
            .iterator();
    return new Iterator<MimeHeader>() {
        @Override
        public boolean hasNext() {
            return ih.hasNext();
        }

        @Override
        public MimeHeader next() {
            final Header hdr = ih.next();
            return new AttachmentEx.MimeHeader() {
                @Override
                public String getValue() {
                    return hdr.getValue();
                }
                @Override
                public String getName() {
                    return hdr.getName();
                }
            };
        }

        @Override
        public void remove() {
            throw new UnsupportedOperationException();
        }
    };
}
 
Example #4
Source File: SAAJFactory.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
static protected void addAttachmentsToSOAPMessage(SOAPMessage msg, Message message) {
    for(Attachment att : message.getAttachments()) {
        AttachmentPart part = msg.createAttachmentPart();
        part.setDataHandler(att.asDataHandler());

        // Be safe and avoid double angle-brackets.
        String cid = att.getContentId();
        if (cid != null) {
            if (cid.startsWith("<") && cid.endsWith(">"))
                part.setContentId(cid);
            else
                part.setContentId('<' + cid + '>');
        }

        // Add any MIME headers beside Content-ID, which is already
        // accounted for above, and Content-Type, which is provided
        // by the DataHandler above.
        if (att instanceof AttachmentEx) {
            AttachmentEx ax = (AttachmentEx) att;
            Iterator<AttachmentEx.MimeHeader> imh = ax.getMimeHeaders();
            while (imh.hasNext()) {
                AttachmentEx.MimeHeader ame = imh.next();
                if ((!"Content-ID".equals(ame.getName()))
                        && (!"Content-Type".equals(ame.getName())))
                    part.addMimeHeader(ame.getName(), ame.getValue());
            }
        }
        msg.addAttachmentPart(part);
    }
}
 
Example #5
Source File: MimeCodec.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
private void writeCustomMimeHeaders(Attachment att, OutputStream out) throws IOException {
    if (att instanceof AttachmentEx) {
        Iterator<AttachmentEx.MimeHeader> allMimeHeaders = ((AttachmentEx) att).getMimeHeaders();
        while (allMimeHeaders.hasNext()) {
            AttachmentEx.MimeHeader mh = allMimeHeaders.next();
            String name = mh.getName();

            if (!"Content-Type".equalsIgnoreCase(name) && !"Content-Id".equalsIgnoreCase(name)) {
                writeln(name +": " + mh.getValue(), out);
            }
        }
    }
}
 
Example #6
Source File: MimeMultipartParser.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Iterator<MimeHeader> getMimeHeaders() {
    final Iterator<? extends Header> ih = part.getAllHeaders()
            .iterator();
    return new Iterator<MimeHeader>() {
        @Override
        public boolean hasNext() {
            return ih.hasNext();
        }

        @Override
        public MimeHeader next() {
            final Header hdr = ih.next();
            return new AttachmentEx.MimeHeader() {
                @Override
                public String getValue() {
                    return hdr.getValue();
                }
                @Override
                public String getName() {
                    return hdr.getName();
                }
            };
        }

        @Override
        public void remove() {
            throw new UnsupportedOperationException();
        }
    };
}
 
Example #7
Source File: SAAJFactory.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
static protected void addAttachmentsToSOAPMessage(SOAPMessage msg, Message message) {
    for(Attachment att : message.getAttachments()) {
        AttachmentPart part = msg.createAttachmentPart();
        part.setDataHandler(att.asDataHandler());

        // Be safe and avoid double angle-brackets.
        String cid = att.getContentId();
        if (cid != null) {
            if (cid.startsWith("<") && cid.endsWith(">"))
                part.setContentId(cid);
            else
                part.setContentId('<' + cid + '>');
        }

        // Add any MIME headers beside Content-ID, which is already
        // accounted for above, and Content-Type, which is provided
        // by the DataHandler above.
        if (att instanceof AttachmentEx) {
            AttachmentEx ax = (AttachmentEx) att;
            Iterator<AttachmentEx.MimeHeader> imh = ax.getMimeHeaders();
            while (imh.hasNext()) {
                AttachmentEx.MimeHeader ame = imh.next();
                if ((!"Content-ID".equals(ame.getName()))
                        && (!"Content-Type".equals(ame.getName())))
                    part.addMimeHeader(ame.getName(), ame.getValue());
            }
        }
        msg.addAttachmentPart(part);
    }
}
 
Example #8
Source File: MimeCodec.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
private void writeCustomMimeHeaders(Attachment att, OutputStream out) throws IOException {
    if (att instanceof AttachmentEx) {
        Iterator<AttachmentEx.MimeHeader> allMimeHeaders = ((AttachmentEx) att).getMimeHeaders();
        while (allMimeHeaders.hasNext()) {
            AttachmentEx.MimeHeader mh = allMimeHeaders.next();
            String name = mh.getName();

            if (!"Content-Type".equalsIgnoreCase(name) && !"Content-Id".equalsIgnoreCase(name)) {
                writeln(name +": " + mh.getValue(), out);
            }
        }
    }
}
 
Example #9
Source File: MimeMultipartParser.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Iterator<MimeHeader> getMimeHeaders() {
    final Iterator<? extends Header> ih = part.getAllHeaders()
            .iterator();
    return new Iterator<MimeHeader>() {
        @Override
        public boolean hasNext() {
            return ih.hasNext();
        }

        @Override
        public MimeHeader next() {
            final Header hdr = ih.next();
            return new AttachmentEx.MimeHeader() {
                @Override
                public String getValue() {
                    return hdr.getValue();
                }
                @Override
                public String getName() {
                    return hdr.getName();
                }
            };
        }

        @Override
        public void remove() {
            throw new UnsupportedOperationException();
        }
    };
}
 
Example #10
Source File: SAAJFactory.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
static protected void addAttachmentsToSOAPMessage(SOAPMessage msg, Message message) {
    for(Attachment att : message.getAttachments()) {
        AttachmentPart part = msg.createAttachmentPart();
        part.setDataHandler(att.asDataHandler());

        // Be safe and avoid double angle-brackets.
        String cid = att.getContentId();
        if (cid != null) {
            if (cid.startsWith("<") && cid.endsWith(">"))
                part.setContentId(cid);
            else
                part.setContentId('<' + cid + '>');
        }

        // Add any MIME headers beside Content-ID, which is already
        // accounted for above, and Content-Type, which is provided
        // by the DataHandler above.
        if (att instanceof AttachmentEx) {
            AttachmentEx ax = (AttachmentEx) att;
            Iterator<AttachmentEx.MimeHeader> imh = ax.getMimeHeaders();
            while (imh.hasNext()) {
                AttachmentEx.MimeHeader ame = imh.next();
                if ((!"Content-ID".equals(ame.getName()))
                        && (!"Content-Type".equals(ame.getName())))
                    part.addMimeHeader(ame.getName(), ame.getValue());
            }
        }
        msg.addAttachmentPart(part);
    }
}
 
Example #11
Source File: MimeCodec.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
private void writeCustomMimeHeaders(Attachment att, OutputStream out) throws IOException {
    if (att instanceof AttachmentEx) {
        Iterator<AttachmentEx.MimeHeader> allMimeHeaders = ((AttachmentEx) att).getMimeHeaders();
        while (allMimeHeaders.hasNext()) {
            AttachmentEx.MimeHeader mh = allMimeHeaders.next();
            String name = mh.getName();

            if (!"Content-Type".equalsIgnoreCase(name) && !"Content-Id".equalsIgnoreCase(name)) {
                writeln(name +": " + mh.getValue(), out);
            }
        }
    }
}
 
Example #12
Source File: MimeMultipartParser.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Iterator<MimeHeader> getMimeHeaders() {
    final Iterator<? extends Header> ih = part.getAllHeaders()
            .iterator();
    return new Iterator<MimeHeader>() {
        @Override
        public boolean hasNext() {
            return ih.hasNext();
        }

        @Override
        public MimeHeader next() {
            final Header hdr = ih.next();
            return new AttachmentEx.MimeHeader() {
                @Override
                public String getValue() {
                    return hdr.getValue();
                }
                @Override
                public String getName() {
                    return hdr.getName();
                }
            };
        }

        @Override
        public void remove() {
            throw new UnsupportedOperationException();
        }
    };
}
 
Example #13
Source File: SAAJFactory.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
static protected void addAttachmentsToSOAPMessage(SOAPMessage msg, Message message) {
    for(Attachment att : message.getAttachments()) {
        AttachmentPart part = msg.createAttachmentPart();
        part.setDataHandler(att.asDataHandler());

        // Be safe and avoid double angle-brackets.
        String cid = att.getContentId();
        if (cid != null) {
            if (cid.startsWith("<") && cid.endsWith(">"))
                part.setContentId(cid);
            else
                part.setContentId('<' + cid + '>');
        }

        // Add any MIME headers beside Content-ID, which is already
        // accounted for above, and Content-Type, which is provided
        // by the DataHandler above.
        if (att instanceof AttachmentEx) {
            AttachmentEx ax = (AttachmentEx) att;
            Iterator<AttachmentEx.MimeHeader> imh = ax.getMimeHeaders();
            while (imh.hasNext()) {
                AttachmentEx.MimeHeader ame = imh.next();
                if ((!"Content-ID".equals(ame.getName()))
                        && (!"Content-Type".equals(ame.getName())))
                    part.addMimeHeader(ame.getName(), ame.getValue());
            }
        }
        msg.addAttachmentPart(part);
    }
}
 
Example #14
Source File: MimeCodec.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
private void writeCustomMimeHeaders(Attachment att, OutputStream out) throws IOException {
    if (att instanceof AttachmentEx) {
        Iterator<AttachmentEx.MimeHeader> allMimeHeaders = ((AttachmentEx) att).getMimeHeaders();
        while (allMimeHeaders.hasNext()) {
            AttachmentEx.MimeHeader mh = allMimeHeaders.next();
            String name = mh.getName();

            if (!"Content-Type".equalsIgnoreCase(name) && !"Content-Id".equalsIgnoreCase(name)) {
                writeln(name +": " + mh.getValue(), out);
            }
        }
    }
}
 
Example #15
Source File: MimeMultipartParser.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Iterator<MimeHeader> getMimeHeaders() {
    final Iterator<? extends Header> ih = part.getAllHeaders()
            .iterator();
    return new Iterator<MimeHeader>() {
        @Override
        public boolean hasNext() {
            return ih.hasNext();
        }

        @Override
        public MimeHeader next() {
            final Header hdr = ih.next();
            return new AttachmentEx.MimeHeader() {
                @Override
                public String getValue() {
                    return hdr.getValue();
                }
                @Override
                public String getName() {
                    return hdr.getName();
                }
            };
        }

        @Override
        public void remove() {
            throw new UnsupportedOperationException();
        }
    };
}
 
Example #16
Source File: SAAJFactory.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
static protected void addAttachmentsToSOAPMessage(SOAPMessage msg, Message message) {
    for(Attachment att : message.getAttachments()) {
        AttachmentPart part = msg.createAttachmentPart();
        part.setDataHandler(att.asDataHandler());

        // Be safe and avoid double angle-brackets.
        String cid = att.getContentId();
        if (cid != null) {
            if (cid.startsWith("<") && cid.endsWith(">"))
                part.setContentId(cid);
            else
                part.setContentId('<' + cid + '>');
        }

        // Add any MIME headers beside Content-ID, which is already
        // accounted for above, and Content-Type, which is provided
        // by the DataHandler above.
        if (att instanceof AttachmentEx) {
            AttachmentEx ax = (AttachmentEx) att;
            Iterator<AttachmentEx.MimeHeader> imh = ax.getMimeHeaders();
            while (imh.hasNext()) {
                AttachmentEx.MimeHeader ame = imh.next();
                if ((!"Content-ID".equals(ame.getName()))
                        && (!"Content-Type".equals(ame.getName())))
                    part.addMimeHeader(ame.getName(), ame.getValue());
            }
        }
        msg.addAttachmentPart(part);
    }
}
 
Example #17
Source File: MimeCodec.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
private void writeCustomMimeHeaders(Attachment att, OutputStream out) throws IOException {
    if (att instanceof AttachmentEx) {
        Iterator<AttachmentEx.MimeHeader> allMimeHeaders = ((AttachmentEx) att).getMimeHeaders();
        while (allMimeHeaders.hasNext()) {
            AttachmentEx.MimeHeader mh = allMimeHeaders.next();
            String name = mh.getName();

            if (!"Content-Type".equalsIgnoreCase(name) && !"Content-Id".equalsIgnoreCase(name)) {
                writeln(name +": " + mh.getValue(), out);
            }
        }
    }
}
 
Example #18
Source File: MimeMultipartParser.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Iterator<MimeHeader> getMimeHeaders() {
    final Iterator<? extends Header> ih = part.getAllHeaders()
            .iterator();
    return new Iterator<MimeHeader>() {
        @Override
        public boolean hasNext() {
            return ih.hasNext();
        }

        @Override
        public MimeHeader next() {
            final Header hdr = ih.next();
            return new AttachmentEx.MimeHeader() {
                @Override
                public String getValue() {
                    return hdr.getValue();
                }
                @Override
                public String getName() {
                    return hdr.getName();
                }
            };
        }

        @Override
        public void remove() {
            throw new UnsupportedOperationException();
        }
    };
}
 
Example #19
Source File: SAAJFactory.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
static protected void addAttachmentsToSOAPMessage(SOAPMessage msg, Message message) {
    for(Attachment att : message.getAttachments()) {
        AttachmentPart part = msg.createAttachmentPart();
        part.setDataHandler(att.asDataHandler());

        // Be safe and avoid double angle-brackets.
        String cid = att.getContentId();
        if (cid != null) {
            if (cid.startsWith("<") && cid.endsWith(">"))
                part.setContentId(cid);
            else
                part.setContentId('<' + cid + '>');
        }

        // Add any MIME headers beside Content-ID, which is already
        // accounted for above, and Content-Type, which is provided
        // by the DataHandler above.
        if (att instanceof AttachmentEx) {
            AttachmentEx ax = (AttachmentEx) att;
            Iterator<AttachmentEx.MimeHeader> imh = ax.getMimeHeaders();
            while (imh.hasNext()) {
                AttachmentEx.MimeHeader ame = imh.next();
                if ((!"Content-ID".equals(ame.getName()))
                        && (!"Content-Type".equals(ame.getName())))
                    part.addMimeHeader(ame.getName(), ame.getValue());
            }
        }
        msg.addAttachmentPart(part);
    }
}
 
Example #20
Source File: MimeCodec.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
private void writeCustomMimeHeaders(Attachment att, OutputStream out) throws IOException {
    if (att instanceof AttachmentEx) {
        Iterator<AttachmentEx.MimeHeader> allMimeHeaders = ((AttachmentEx) att).getMimeHeaders();
        while (allMimeHeaders.hasNext()) {
            AttachmentEx.MimeHeader mh = allMimeHeaders.next();
            String name = mh.getName();

            if (!"Content-Type".equalsIgnoreCase(name) && !"Content-Id".equalsIgnoreCase(name)) {
                writeln(name +": " + mh.getValue(), out);
            }
        }
    }
}
 
Example #21
Source File: MimeMultipartParser.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Iterator<MimeHeader> getMimeHeaders() {
    final Iterator<? extends Header> ih = part.getAllHeaders()
            .iterator();
    return new Iterator<MimeHeader>() {
        @Override
        public boolean hasNext() {
            return ih.hasNext();
        }

        @Override
        public MimeHeader next() {
            final Header hdr = ih.next();
            return new AttachmentEx.MimeHeader() {
                @Override
                public String getValue() {
                    return hdr.getValue();
                }
                @Override
                public String getName() {
                    return hdr.getName();
                }
            };
        }

        @Override
        public void remove() {
            throw new UnsupportedOperationException();
        }
    };
}
 
Example #22
Source File: SAAJFactory.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
static protected void addAttachmentsToSOAPMessage(SOAPMessage msg, Message message) {
    for(Attachment att : message.getAttachments()) {
        AttachmentPart part = msg.createAttachmentPart();
        part.setDataHandler(att.asDataHandler());

        // Be safe and avoid double angle-brackets.
        String cid = att.getContentId();
        if (cid != null) {
            if (cid.startsWith("<") && cid.endsWith(">"))
                part.setContentId(cid);
            else
                part.setContentId('<' + cid + '>');
        }

        // Add any MIME headers beside Content-ID, which is already
        // accounted for above, and Content-Type, which is provided
        // by the DataHandler above.
        if (att instanceof AttachmentEx) {
            AttachmentEx ax = (AttachmentEx) att;
            Iterator<AttachmentEx.MimeHeader> imh = ax.getMimeHeaders();
            while (imh.hasNext()) {
                AttachmentEx.MimeHeader ame = imh.next();
                if ((!"Content-ID".equals(ame.getName()))
                        && (!"Content-Type".equals(ame.getName())))
                    part.addMimeHeader(ame.getName(), ame.getValue());
            }
        }
        msg.addAttachmentPart(part);
    }
}
 
Example #23
Source File: MimeCodec.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
private void writeCustomMimeHeaders(Attachment att, OutputStream out) throws IOException {
    if (att instanceof AttachmentEx) {
        Iterator<AttachmentEx.MimeHeader> allMimeHeaders = ((AttachmentEx) att).getMimeHeaders();
        while (allMimeHeaders.hasNext()) {
            AttachmentEx.MimeHeader mh = allMimeHeaders.next();
            String name = mh.getName();

            if (!"Content-Type".equalsIgnoreCase(name) && !"Content-Id".equalsIgnoreCase(name)) {
                writeln(name +": " + mh.getValue(), out);
            }
        }
    }
}
 
Example #24
Source File: MimeMultipartParser.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Iterator<MimeHeader> getMimeHeaders() {
    final Iterator<? extends Header> ih = part.getAllHeaders()
            .iterator();
    return new Iterator<MimeHeader>() {
        @Override
        public boolean hasNext() {
            return ih.hasNext();
        }

        @Override
        public MimeHeader next() {
            final Header hdr = ih.next();
            return new AttachmentEx.MimeHeader() {
                @Override
                public String getValue() {
                    return hdr.getValue();
                }
                @Override
                public String getName() {
                    return hdr.getName();
                }
            };
        }

        @Override
        public void remove() {
            throw new UnsupportedOperationException();
        }
    };
}